aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-10-22 15:06:13 -0500
committerTed Gould <ted@canonical.com>2009-10-22 15:06:13 -0500
commit20d116ae0d74559cd5f30fe4f1bff08ed6378176 (patch)
tree0f462df1fa68bf689036afb5b413064a7bfb8a3a
parent664bc74b6f0b3eb6ca30539628e2350ed3a2e20c (diff)
parent72815e195b42b8c4ed94f09af4b86a0d94393e5e (diff)
downloadayatana-indicator-application-20d116ae0d74559cd5f30fe4f1bff08ed6378176.tar.gz
ayatana-indicator-application-20d116ae0d74559cd5f30fe4f1bff08ed6378176.tar.bz2
ayatana-indicator-application-20d116ae0d74559cd5f30fe4f1bff08ed6378176.zip
Branch building up the interface for the library.
-rw-r--r--.bzrignore6
-rw-r--r--Makefile.am.enum45
-rw-r--r--Makefile.am.marshal45
-rw-r--r--configure.ac5
-rw-r--r--src/Makefile.am51
-rw-r--r--src/libcustomindicator/custom-indicator-enum-types.c.in33
-rw-r--r--src/libcustomindicator/custom-indicator-enum-types.h.in33
-rw-r--r--src/libcustomindicator/custom-indicator.c57
-rw-r--r--src/libcustomindicator/custom-indicator.h90
9 files changed, 362 insertions, 3 deletions
diff --git a/.bzrignore b/.bzrignore
index 5d5b9c7..8470e82 100644
--- a/.bzrignore
+++ b/.bzrignore
@@ -9,3 +9,9 @@ src/notification-item-client.h
src/notification-item-server.h
src/notification-watcher-client.h
src/notification-watcher-server.h
+src/libcustomindicator.la
+src/libcustomindicator_la-custom-indicator.lo
+src/libcustomindicator/custom-indicator-enum-types.h
+src/libcustomindicator/custom-indicator-enum-types.c
+src/stamp-enum-types
+src/libcustomindicator_la-custom-indicator-enum-types.lo
diff --git a/Makefile.am.enum b/Makefile.am.enum
new file mode 100644
index 0000000..0503de0
--- /dev/null
+++ b/Makefile.am.enum
@@ -0,0 +1,45 @@
+# Rules for generating enumeration types using glib-mkenums
+#
+# Define:
+# glib_enum_h = header template file
+# glib_enum_c = source template file
+# glib_enum_headers = list of headers to parse
+#
+# before including Makefile.am.enums. You will also need to have
+# the following targets already defined:
+#
+# CLEANFILES
+# DISTCLEANFILES
+# BUILT_SOURCES
+# EXTRA_DIST
+#
+# Author: Emmanuele Bassi <ebassi@linux.intel.com>
+
+enum_tmpl_h=$(glib_enum_h:.h=.h.in)
+enum_tmpl_c=$(glib_enum_c:.c=.c.in)
+
+CLEANFILES += stamp-enum-types
+DISTCLEANFILES += $(glib_enum_h) $(glib_enum_c)
+BUILT_SOURCES += $(glib_enum_h) $(glib_enum_c)
+EXTRA_DIST += $(enum_tmpl_h) $(enum_tmpl_c)
+
+stamp-enum-types: $(glib_enum_headers)
+ $(QUIET_GEN)mkdir -p `dirname $(builddir)/$(glib_enum_h)`
+ $(QUIET_GEN)$(GLIB_MKENUMS) \
+ --template $(srcdir)/$(enum_tmpl_h) \
+ $(glib_enum_headers) > xgen-eh \
+ && (cmp -s xgen-eh $(builddir)/$(glib_enum_h) || cp -f xgen-eh $(builddir)/$(glib_enum_h)) \
+ && rm -f xgen-eh \
+ && echo timestamp > $(@F)
+
+$(glib_enum_h): stamp-enum-types
+ @true
+
+$(glib_enum_c): $(glib_enum_h)
+ $(QUIET_GEN)mkdir -p `dirname $(builddir)/$(glib_enum_c)`
+ $(QUIET_GEN)$(GLIB_MKENUMS) \
+ --template $(srcdir)/$(enum_tmpl_c) \
+ $(glib_enum_headers) > xgen-ec \
+ && cp -f xgen-ec $(builddir)/$(glib_enum_c) \
+ && rm -f xgen-ec
+
diff --git a/Makefile.am.marshal b/Makefile.am.marshal
new file mode 100644
index 0000000..8b30d4f
--- /dev/null
+++ b/Makefile.am.marshal
@@ -0,0 +1,45 @@
+# Rules for generating marshal files using glib-genmarshal
+#
+# Define:
+# glib_marshal_list = marshal list file
+# glib_marshal_prefix = prefix for marshal functions
+#
+# before including Makefile.am.marshal. You will also need to have
+# the following targets already defined:
+#
+# CLEANFILES
+# DISTCLEANFILES
+# BUILT_SOURCES
+# EXTRA_DIST
+#
+# Author: Emmanuele Bassi <ebassi@linux.intel.com>
+
+marshal_h = $(glib_marshal_list:.list=.h)
+marshal_c = $(glib_marshal_list:.list=.c)
+
+CLEANFILES += stamp-marshal
+DISTCLEANFILES += $(marshal_h) $(marshal_c)
+BUILT_SOURCES += $(marshal_h) $(marshal_c)
+EXTRA_DIST += $(glib_marshal_list)
+
+stamp-marshal: $(glib_marshal_list)
+ $(QUIET_GEN)$(GLIB_GENMARSHAL) \
+ --prefix=$(glib_marshal_prefix) \
+ --header \
+ $(glib_marshal_list) > xgen-mh \
+ && (cmp -s xgen-mh $(marshal_h) || cp -f xgen-mh $(marshal_h)) \
+ && rm -f xgen-mh \
+ && echo timestamp > $(@F)
+
+$(marshal_h): stamp-marshal
+ @true
+
+$(marshal_c): $(marshal_h)
+ $(QUIET_GEN)(echo "#include \"$(marshal_h)\"" ; \
+ $(GLIB_GENMARSHAL) \
+ --prefix=$(glib_marshal_prefix) \
+ --body \
+ $(glib_marshal_list)) > xgen-mc \
+ && cp xgen-mc $(marshal_c) \
+ && rm -f xgen-mc
+
diff --git a/configure.ac b/configure.ac
index 48b11c6..ae39426 100644
--- a/configure.ac
+++ b/configure.ac
@@ -20,6 +20,11 @@ AC_CONFIG_MACRO_DIR([m4])
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
+AC_PATH_PROG([GLIB_MKENUMS], [glib-mkenums])
+AC_PATH_PROG([GLIB_GENMARSHAL], [glib-genmarshal])
+
+PKG_PROG_PKG_CONFIG
+
###########################
# Dependencies
###########################
diff --git a/src/Makefile.am b/src/Makefile.am
index 2139b62..ff5b26e 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,3 +1,9 @@
+CLEANFILES =
+DISTCLEANFILES =
+BUILT_SOURCES =
+EXTRA_DIST =
+
+include $(top_srcdir)/Makefile.am.enum
##################################
# Indicator
@@ -33,6 +39,45 @@ indicator_custom_service_LDADD = \
$(INDICATOR_LIBS)
##################################
+# Library
+##################################
+
+glib_enum_h = libcustomindicator/custom-indicator-enum-types.h
+glib_enum_c = libcustomindicator/custom-indicator-enum-types.c
+glib_enum_headers = $(libcustomindicator_headers)
+
+lib_LTLIBRARIES = \
+ libcustomindicator.la
+
+libcustomindicatorincludedir=$(includedir)/libcustomindicator-0.1/libcustomindicator
+
+libcustomindicator_headers = \
+ $(srcdir)/libcustomindicator/custom-indicator.h
+
+libcustomindicatorinclude_HEADERS = \
+ $(libcustomindicator_headers) \
+ $(glib_enum_h)
+
+libcustomindicator_la_SOURCES = \
+ $(libcustomindicator_headers) \
+ $(glib_enum_c) \
+ notification-watcher-client.h \
+ notification-item-server.h \
+ libcustomindicator/custom-indicator.c
+
+libcustomindicator_la_LDFLAGS = \
+ -version-info 0:0:0 \
+ -no-undefined \
+ -export-symbols-regex "^[^_d].*"
+
+libcustomindicator_la_CFLAGS = \
+ $(INDICATOR_CFLAGS) \
+ -Wall -Werror
+
+libcustomindicator_la_LIBADD = \
+ $(INDICATOR_LIBS)
+
+##################################
# DBus Specs
##################################
@@ -54,10 +99,10 @@ DBUS_SPECS = \
--output=$@ \
$<
-BUILT_SOURCES = \
+BUILT_SOURCES += \
$(DBUS_SPECS:.xml=-client.h) \
$(DBUS_SPECS:.xml=-server.h)
-CLEANFILES = $(BUILT_SOURCES)
+CLEANFILES += $(BUILT_SOURCES)
-EXTRA_DIST = $(DBUS_SPECS)
+EXTRA_DIST += $(DBUS_SPECS)
diff --git a/src/libcustomindicator/custom-indicator-enum-types.c.in b/src/libcustomindicator/custom-indicator-enum-types.c.in
new file mode 100644
index 0000000..51512f6
--- /dev/null
+++ b/src/libcustomindicator/custom-indicator-enum-types.c.in
@@ -0,0 +1,33 @@
+/*** BEGIN file-header ***/
+#include "libcustomindicator/custom-indicator-enum-types.h"
+
+/*** END file-header ***/
+
+/*** BEGIN file-production ***/
+#include "@filename@"
+/*** END file-production ***/
+
+/*** BEGIN value-header ***/
+GType
+@enum_name@_get_type (void)
+{
+ static GType etype = 0;
+ if (G_UNLIKELY(etype == 0)) {
+ static const G@Type@Value values[] = {
+/*** END value-header ***/
+
+/*** BEGIN value-production ***/
+ { @VALUENAME@, "@VALUENAME@", "@valuenick@" },
+/*** END value-production ***/
+
+/*** BEGIN value-tail ***/
+ { 0, NULL, NULL}
+ };
+
+ etype = g_@type@_register_static (g_intern_static_string("@EnumName@"), values);
+ }
+
+ return etype;
+}
+
+/*** END value-tail ***/
diff --git a/src/libcustomindicator/custom-indicator-enum-types.h.in b/src/libcustomindicator/custom-indicator-enum-types.h.in
new file mode 100644
index 0000000..e037be7
--- /dev/null
+++ b/src/libcustomindicator/custom-indicator-enum-types.h.in
@@ -0,0 +1,33 @@
+/*** BEGIN file-header ***/
+#ifndef __CUSTOM_INDICATOR_ENUM_TYPES_H__
+#define __CUSTOM_INDICATOR_ENUM_TYPES_H__
+
+#include <glib-object.h>
+
+G_BEGIN_DECLS
+
+/*** END file-header ***/
+
+/*** BEGIN file-tail ***/
+
+G_END_DECLS
+
+#endif /* __CUSTOM_INDICATOR_ENUM_TYPES_H__ */
+/*** END file-tail ***/
+
+/*** BEGIN file-production ***/
+/* Enumerations from file: "@filename@" */
+/*** END file-production ***/
+
+/*** BEGIN value-header ***/
+/**
+ @enum_name@_get_type:
+
+ Builds a glib type for the @EnumName@ enumeration.
+
+ Return value: A registered type for the enum
+*/
+GType @enum_name@_get_type (void) G_GNUC_CONST;
+#define CUSTOM_INDICATOR_TYPE_@ENUMSHORT@ (@enum_name@_get_type())
+
+/*** END value-header ***/
diff --git a/src/libcustomindicator/custom-indicator.c b/src/libcustomindicator/custom-indicator.c
new file mode 100644
index 0000000..e0fecbb
--- /dev/null
+++ b/src/libcustomindicator/custom-indicator.c
@@ -0,0 +1,57 @@
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include "custom-indicator.h"
+
+typedef struct _CustomIndicatorPrivate CustomIndicatorPrivate;
+struct _CustomIndicatorPrivate {
+ int placeholder;
+};
+
+#define CUSTOM_INDICATOR_GET_PRIVATE(o) \
+(G_TYPE_INSTANCE_GET_PRIVATE ((o), CUSTOM_INDICATOR_TYPE, CustomIndicatorPrivate))
+
+static void custom_indicator_class_init (CustomIndicatorClass *klass);
+static void custom_indicator_init (CustomIndicator *self);
+static void custom_indicator_dispose (GObject *object);
+static void custom_indicator_finalize (GObject *object);
+
+G_DEFINE_TYPE (CustomIndicator, custom_indicator, G_TYPE_OBJECT);
+
+static void
+custom_indicator_class_init (CustomIndicatorClass *klass)
+{
+ GObjectClass *object_class = G_OBJECT_CLASS (klass);
+
+ g_type_class_add_private (klass, sizeof (CustomIndicatorPrivate));
+
+ object_class->dispose = custom_indicator_dispose;
+ object_class->finalize = custom_indicator_finalize;
+
+ return;
+}
+
+static void
+custom_indicator_init (CustomIndicator *self)
+{
+
+ return;
+}
+
+static void
+custom_indicator_dispose (GObject *object)
+{
+
+ G_OBJECT_CLASS (custom_indicator_parent_class)->dispose (object);
+ return;
+}
+
+static void
+custom_indicator_finalize (GObject *object)
+{
+
+ G_OBJECT_CLASS (custom_indicator_parent_class)->finalize (object);
+ return;
+}
+
diff --git a/src/libcustomindicator/custom-indicator.h b/src/libcustomindicator/custom-indicator.h
new file mode 100644
index 0000000..0ac8808
--- /dev/null
+++ b/src/libcustomindicator/custom-indicator.h
@@ -0,0 +1,90 @@
+#ifndef __CUSTOM_INDICATOR_H__
+#define __CUSTOM_INDICATOR_H__
+
+#include <glib.h>
+#include <glib-object.h>
+
+G_BEGIN_DECLS
+
+#define CUSTOM_INDICATOR_TYPE (custom_indicator_get_type ())
+#define CUSTOM_INDICATOR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), CUSTOM_INDICATOR_TYPE, CustomIndicator))
+#define CUSTOM_INDICATOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), CUSTOM_INDICATOR_TYPE, CustomIndicatorClass))
+#define IS_CUSTOM_INDICATOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CUSTOM_INDICATOR_TYPE))
+#define IS_CUSTOM_INDICATOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CUSTOM_INDICATOR_TYPE))
+#define CUSTOM_INDICATOR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), CUSTOM_INDICATOR_TYPE, CustomIndicatorClass))
+
+/**
+ CustomIndicatorCategory:
+ @CUSTOM_INDICATOR_CATEGORY_APPLICATION_STATUS: The indicator is used to display the status of the application.
+ @CUSTOM_INDICATOR_CATEGORY_COMMUNICATIONS: The application is used for communication with other people.
+ @CUSTOM_INDICATOR_CATEGORY_SYSTEM_SERVICES: A system indicator relating to something in the user's system.
+ @CUSTOM_INDICATOR_CATEGORY_HARDWARE: An indicator relating to the user's hardware.
+ @CUSTOM_INDICATOR_CATEGORY_OTHER: Something not defined in this enum, please don't use unless you really need it.
+
+ The category provides grouping for the indicators so that
+ users can find indicators that are similar together.
+*/
+typedef enum { /*< prefix=CUSTOM_INDICATOR_CATEGORY >*/
+ CUSTOM_INDICATOR_CATEGORY_APPLICATION_STATUS,
+ CUSTOM_INDICATOR_CATEGORY_COMMUNICATIONS,
+ CUSTOM_INDICATOR_CATEGORY_SYSTEM_SERVICES,
+ CUSTOM_INDICATOR_CATEGORY_HARDWARE,
+ CUSTOM_INDICATOR_CATEGORY_OTHER
+} CustomIndicatorCategory;
+
+/**
+ CustomIndicatorStatus:
+ @CUSTOM_INDICATOR_STATUS_OFF: The indicator should not be shown to the user.
+ @CUSTOM_INDICATOR_STATUS_ON: The indicator should be shown in it's default state.
+ @CUSTOM_INDICATOR_STATUS_ATTENTION: The indicator should show it's attention icon.
+
+ These are the states that the indicator can be on in
+ the user's panel. The indicator by default starts
+ in the state @CUSTOM_INDICATOR_STATUS_OFF and can be
+ shown by setting it to @CUSTOM_INDICATOR_STATUS_ON.
+*/
+typedef enum { /*< prefix=CUSTOM_INDICATOR_STATUS >*/
+ CUSTOM_INDICATOR_STATUS_OFF,
+ CUSTOM_INDICATOR_STATUS_ON,
+ CUSTOM_INDICATOR_STATUS_ATTENTION
+} CustomIndicatorStatus;
+
+typedef struct _CustomIndicator CustomIndicator;
+typedef struct _CustomIndicatorClass CustomIndicatorClass;
+
+struct _CustomIndicatorClass {
+ GObjectClass parent_class;
+};
+
+struct _CustomIndicator {
+ GObject parent;
+};
+
+/* GObject Stuff */
+GType custom_indicator_get_type (void);
+
+/* Set properties */
+void custom_indicator_set_id (CustomIndicator * ci,
+ const gchar * id);
+void custom_indicator_set_category (CustomIndicator * ci,
+ CustomIndicatorCategory category);
+void custom_indicator_set_status (CustomIndicator * ci,
+ CustomIndicatorStatus status);
+void custom_indicator_set_icon (CustomIndicator * ci,
+ const gchar * icon_name);
+void custom_indicator_set_attention_icon (CustomIndicator * ci,
+ const gchar * icon_name);
+void custom_indicator_set_menu (CustomIndicator * ci,
+ void * menu);
+
+/* Get properties */
+const gchar * custom_indicator_get_id (CustomIndicator * ci);
+CustomIndicatorCategory custom_indicator_get_category (CustomIndicator * ci);
+CustomIndicatorStatus custom_indicator_get_status (CustomIndicator * ci);
+const gchar * custom_indicator_get_icon (CustomIndicator * ci);
+const gchar * custom_indicator_get_attention_icon (CustomIndicator * ci);
+void * custom_indicator_get_menu (CustomIndicator * ci);
+
+G_END_DECLS
+
+#endif