From 5d714e6fde623bd2462bd80e9078508001cbfdf7 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Tue, 3 Feb 2009 12:50:40 +0100 Subject: Adding in checks for GTK Doc --- configure.ac | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/configure.ac b/configure.ac index 3ec1ed7..cb4665b 100644 --- a/configure.ac +++ b/configure.ac @@ -53,7 +53,9 @@ PKG_CHECK_MODULES(LIBINDICATE, glib-2.0 >= $GLIB_REQUIRED_VERSION AC_SUBST(LIBINDICATE_CFLAGS) AC_SUBST(LIBINDICATE_LIBS) +########################### # GObject Introspection +########################### PKG_CHECK_MODULES(GOBJECT_INTROSPECTION, [gobject-introspection-1.0 >= 0.6]) @@ -69,6 +71,12 @@ AC_SUBST(GIRDIR) TYPELIBDIR="$($PKG_CONFIG --variable=typelibdir gobject-introspection-1.0)" AC_SUBST(TYPELIBDIR) +########################### +# GTK Doc +########################### + +GTK_DOC_CHECK([1.4]) + ########################### # Internationalization ########################### -- cgit v1.2.3 From 7a916031c587dbf71e2d19978c2f54f162b58a48 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Tue, 3 Feb 2009 14:05:40 +0100 Subject: Putting in the makefiles for the docs and the reference docs --- configure.ac | 2 ++ docs/Makefile.am | 1 + docs/reference/Makefile.am | 0 3 files changed, 3 insertions(+) create mode 100644 docs/Makefile.am create mode 100644 docs/reference/Makefile.am diff --git a/configure.ac b/configure.ac index cb4665b..1fab08d 100644 --- a/configure.ac +++ b/configure.ac @@ -112,6 +112,8 @@ data/icons/32x32/panel/Makefile data/icons/48x48/panel/Makefile data/icons/scalable/panel/Makefile po/Makefile.in +docs/Makefile +docs/reference/Makefile ]) ########################### diff --git a/docs/Makefile.am b/docs/Makefile.am new file mode 100644 index 0000000..ae8bcb7 --- /dev/null +++ b/docs/Makefile.am @@ -0,0 +1 @@ +SUBS = reference diff --git a/docs/reference/Makefile.am b/docs/reference/Makefile.am new file mode 100644 index 0000000..e69de29 -- cgit v1.2.3 From 2f6177e8b934546b253bdf80d5b1ff073a19db49 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Tue, 3 Feb 2009 14:25:53 +0100 Subject: I think this will add gtk docs --- docs/reference/Makefile.am | 87 ++++++++++++++++++++++++++++++++++++++++ docs/reference/libindicate.types | 6 +++ docs/reference/version.xml.in | 1 + 3 files changed, 94 insertions(+) create mode 100644 docs/reference/libindicate.types create mode 100644 docs/reference/version.xml.in diff --git a/docs/reference/Makefile.am b/docs/reference/Makefile.am index e69de29..1bb6b68 100644 --- a/docs/reference/Makefile.am +++ b/docs/reference/Makefile.am @@ -0,0 +1,87 @@ +## Process this file with automake to produce Makefile.in + +# We require automake 1.6 at least. +AUTOMAKE_OPTIONS = 1.6 + +# This is a blank Makefile.am for using gtk-doc. +# Copy this to your project's API docs directory and modify the variables to +# suit your project. See the GTK+ Makefiles in gtk+/docs/reference for examples +# of using the various options. + +# The name of the module, e.g. 'glib'. +DOC_MODULE=libindicate + +# The top-level SGML file. You can change this if you want to. +DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml + +# The directory containing the source code. Relative to $(srcdir). +# gtk-doc will search all .c & .h files beneath here for inline comments +# documenting the functions and macros. +# e.g. DOC_SOURCE_DIR=../../../gtk +DOC_SOURCE_DIR=../../libindicate + +# Extra options to pass to gtkdoc-scangobj. Not normally needed. +SCANGOBJ_OPTIONS= + +# Extra options to supply to gtkdoc-scan. +# e.g. SCAN_OPTIONS=--deprecated-guards="GTK_DISABLE_DEPRECATED" +SCAN_OPTIONS= + +# Extra options to supply to gtkdoc-mkdb. +# e.g. MKDB_OPTIONS=--sgml-mode --output-format=xml +MKDB_OPTIONS=--sgml-mode --output-format=xml + +# Extra options to supply to gtkdoc-mktmpl +# e.g. MKTMPL_OPTIONS=--only-section-tmpl +MKTMPL_OPTIONS= + +# Extra options to supply to gtkdoc-fixref. Not normally needed. +# e.g. FIXXREF_OPTIONS=--extra-dir=../gdk-pixbuf/html --extra-dir=../gdk/html +FIXXREF_OPTIONS= + +# Used for dependencies. The docs will be rebuilt if any of these change. +# e.g. HFILE_GLOB=$(top_srcdir)/gtk/*.h +# e.g. CFILE_GLOB=$(top_srcdir)/gtk/*.c +HFILE_GLOB=$(top_srcdir)/libindicate/*.h +CFILE_GLOB=$(top_srcdir)/libindicate/*.c + +# Header files to ignore when scanning. +# e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h +IGNORE_HFILES= + +# Images to copy into HTML directory. +# e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png +HTML_IMAGES= + +# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE). +# e.g. content_files=running.sgml building.sgml changes-2.0.sgml +content_files=version.xml + +# SGML files where gtk-doc abbrevations (#GtkWidget) are expanded +# These files must be listed here *and* in content_files +# e.g. expand_content_files=running.sgml +expand_content_files= + +# CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library. +# Only needed if you are using gtkdoc-scangobj to dynamically query widget +# signals and properties. +# e.g. INCLUDES=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS) +# e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib) +INCLUDES=-I$(top_builddir)/libindicate $(LIBINDICATE_CFLAGS) +GTKDOC_LIBS= + +# This includes the standard gtk-doc make rules, copied by gtkdocize. +include $(top_srcdir)/gtk-doc.make + +# Other files to distribute +# e.g. EXTRA_DIST += version.xml.in +EXTRA_DIST += version.xml.in + +# Files not to distribute +# for --rebuild-types in $(SCAN_OPTIONS), e.g. $(DOC_MODULE).types +# for --rebuild-sections in $(SCAN_OPTIONS) e.g. $(DOC_MODULE)-sections.txt +#DISTCLEANFILES += + +# Comment this out if you want your docs-status tested during 'make check' +#TESTS = $(GTKDOC_CHECK) + diff --git a/docs/reference/libindicate.types b/docs/reference/libindicate.types new file mode 100644 index 0000000..9c7b913 --- /dev/null +++ b/docs/reference/libindicate.types @@ -0,0 +1,6 @@ +#include + +indicate_indicator_get_type +indicate_indicator_message_get_type +indicate_server_get_type +indicate_listener_get_type diff --git a/docs/reference/version.xml.in b/docs/reference/version.xml.in new file mode 100644 index 0000000..d78bda9 --- /dev/null +++ b/docs/reference/version.xml.in @@ -0,0 +1 @@ +@VERSION@ -- cgit v1.2.3 From aa26429a1e78f8bbcce99c9adf5d4e2557f24482 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Tue, 3 Feb 2009 14:30:24 +0100 Subject: Getting SUBDIRS right --- Makefile.am | 3 ++- docs/Makefile.am | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 555e6d5..aa9b4d6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4,4 +4,5 @@ SUBDIRS = \ libindicate \ tests \ data \ - po + po \ + docs diff --git a/docs/Makefile.am b/docs/Makefile.am index ae8bcb7..f3ddc22 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -1 +1 @@ -SUBS = reference +SUBDIRS = reference -- cgit v1.2.3 From bccae5a5201a6d08925f15d41b2b4ca31cac878d Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Tue, 3 Feb 2009 14:56:35 +0100 Subject: Getting the dirs right --- docs/reference/Makefile.am | 4 ++-- docs/reference/libindicate.types | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/reference/Makefile.am b/docs/reference/Makefile.am index 1bb6b68..853c97e 100644 --- a/docs/reference/Makefile.am +++ b/docs/reference/Makefile.am @@ -67,8 +67,8 @@ expand_content_files= # signals and properties. # e.g. INCLUDES=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS) # e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib) -INCLUDES=-I$(top_builddir)/libindicate $(LIBINDICATE_CFLAGS) -GTKDOC_LIBS= +INCLUDES=-I$(top_srcdir) $(LIBINDICATE_CFLAGS) +GTKDOC_LIBS=$(top_builddir)/libindicate/libindicate.la # This includes the standard gtk-doc make rules, copied by gtkdocize. include $(top_srcdir)/gtk-doc.make diff --git a/docs/reference/libindicate.types b/docs/reference/libindicate.types index 9c7b913..d96055f 100644 --- a/docs/reference/libindicate.types +++ b/docs/reference/libindicate.types @@ -1,4 +1,7 @@ -#include +#include +#include +#include +#include indicate_indicator_get_type indicate_indicator_message_get_type -- cgit v1.2.3 From 47aedec55cfe1d882bd4411591129d3621085df4 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Tue, 3 Feb 2009 15:09:50 +0100 Subject: Getting everything together to try and build docs --- configure.ac | 1 + docs/reference/libindicate-decl.txt | 0 docs/reference/libindicate-docs.sgml | 17 +++++++++++++++++ docs/reference/libindicate-sections.txt | 0 docs/reference/tmpl/libindicate-unused.sgml | 0 5 files changed, 18 insertions(+) create mode 100644 docs/reference/libindicate-decl.txt create mode 100644 docs/reference/libindicate-docs.sgml create mode 100644 docs/reference/libindicate-sections.txt create mode 100644 docs/reference/tmpl/libindicate-unused.sgml diff --git a/configure.ac b/configure.ac index 1fab08d..612581c 100644 --- a/configure.ac +++ b/configure.ac @@ -114,6 +114,7 @@ data/icons/scalable/panel/Makefile po/Makefile.in docs/Makefile docs/reference/Makefile +docs/reference/version.xml ]) ########################### diff --git a/docs/reference/libindicate-decl.txt b/docs/reference/libindicate-decl.txt new file mode 100644 index 0000000..e69de29 diff --git a/docs/reference/libindicate-docs.sgml b/docs/reference/libindicate-docs.sgml new file mode 100644 index 0000000..f2fa594 --- /dev/null +++ b/docs/reference/libindicate-docs.sgml @@ -0,0 +1,17 @@ + + + + + libindicate Reference Manual + + for libindicate [VERSION] + The latest version of this documentation can be found on-line at + http://[SERVER]/libindicate/. + + + + + [Insert title here] + + diff --git a/docs/reference/libindicate-sections.txt b/docs/reference/libindicate-sections.txt new file mode 100644 index 0000000..e69de29 diff --git a/docs/reference/tmpl/libindicate-unused.sgml b/docs/reference/tmpl/libindicate-unused.sgml new file mode 100644 index 0000000..e69de29 -- cgit v1.2.3 From c074cf6c9368f464d347086e093babc6da1eb451 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Tue, 3 Feb 2009 16:53:37 +0100 Subject: Getting gtk-doc working --- docs/reference/Makefile.am | 2 +- docs/reference/libindicate-decl.txt | 872 ++++++++++++++++++++++++++++++++ docs/reference/libindicate-docs.sgml | 7 + docs/reference/libindicate-sections.txt | 149 ++++++ 4 files changed, 1029 insertions(+), 1 deletion(-) diff --git a/docs/reference/Makefile.am b/docs/reference/Makefile.am index 853c97e..759465e 100644 --- a/docs/reference/Makefile.am +++ b/docs/reference/Makefile.am @@ -21,7 +21,7 @@ DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml DOC_SOURCE_DIR=../../libindicate # Extra options to pass to gtkdoc-scangobj. Not normally needed. -SCANGOBJ_OPTIONS= +SCANGOBJ_OPTIONS=--nogtkinit --type-init-func="g_type_init()" # Extra options to supply to gtkdoc-scan. # e.g. SCAN_OPTIONS=--deprecated-guards="GTK_DISABLE_DEPRECATED" diff --git a/docs/reference/libindicate-decl.txt b/docs/reference/libindicate-decl.txt index e69de29..b2caecb 100644 --- a/docs/reference/libindicate-decl.txt +++ b/docs/reference/libindicate-decl.txt @@ -0,0 +1,872 @@ + +INDICATE_TYPE_INDICATOR +#define INDICATE_TYPE_INDICATOR (indicate_indicator_get_type ()) + + +INDICATE_INDICATOR +#define INDICATE_INDICATOR(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), INDICATE_TYPE_INDICATOR, IndicateIndicator)) + + +INDICATE_IS_INDICATOR +#define INDICATE_IS_INDICATOR(object) (G_TYPE_CHECK_INSTANCE_TYPE((object), INDICATE_TYPE_INDICATOR)) + + +INDICATE_INDICATOR_CLASS +#define INDICATE_INDICATOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), INDICATE_TYPE_INDICATOR, IndicateIndicatorClass)) + + +INDICATE_IS_INDICATOR_CLASS +#define INDICATE_IS_INDICATOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), INDICATE_TYPE_INDICATOR)) + + +INDICATE_INDICATOR_GET_CLASS +#define INDICATE_INDICATOR_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS((object), INDICATE_TYPE_INDICATOR, IndicateIndicatorClass)) + + +INDICATE_INDICATOR_SIGNAL_HIDE +#define INDICATE_INDICATOR_SIGNAL_HIDE "hide" + + +INDICATE_INDICATOR_SIGNAL_SHOW +#define INDICATE_INDICATOR_SIGNAL_SHOW "show" + + +INDICATE_INDICATOR_SIGNAL_DISPLAY +#define INDICATE_INDICATOR_SIGNAL_DISPLAY "user-display" + + +INDICATE_INDICATOR_SIGNAL_MODIFIED +#define INDICATE_INDICATOR_SIGNAL_MODIFIED "modified" + + +IndicateIndicator + + +IndicateIndicatorClass + + +IndicateIndicator +struct _IndicateIndicator { + GObject parent; +}; + + + +IndicateIndicatorClass +struct _IndicateIndicatorClass { + GObjectClass parent_class; + + void (*hide) (IndicateIndicator * indicator, gpointer data); + void (*show) (IndicateIndicator * indicator, gpointer data); + void (*user_display) (IndicateIndicator * indicator, gpointer data); + void (*modified) (IndicateIndicator * indicator, gchar * property, gpointer data); + + const gchar * (*get_type) (IndicateIndicator * indicator); + void (*set_property) (IndicateIndicator * indicator, const gchar * key, const gchar * data); + const gchar * (*get_property) (IndicateIndicator * indicator, const gchar * key); + GPtrArray * (*list_properties) (IndicateIndicator * indicator); +}; + + + +indicate_indicator_get_type +GType +void + + +indicate_indicator_new +IndicateIndicator * +void + + +indicate_indicator_set_property +void +IndicateIndicator * indicator, const gchar * property_name, const gchar * property_value + + +indicate_indicator_show +void +IndicateIndicator * indicator + + +indicate_indicator_hide +void +IndicateIndicator * indicator + + +indicate_indicator_is_visible +gboolean +IndicateIndicator * indicator + + +indicate_indicator_get_id +guint +IndicateIndicator * indicator + + +indicate_indicator_get_indicator_type +const gchar * +IndicateIndicator * indicator + + +indicate_indicator_user_display +void +IndicateIndicator * indicator + + +indicate_indicator_set_property +void +IndicateIndicator * indicator, const gchar * key, const gchar * data + + +indicate_indicator_get_property +const gchar * +IndicateIndicator * indicator, const gchar * key + + +indicate_indicator_list_properties +GPtrArray * +IndicateIndicator * indicator + + +INDICATE_TYPE_LISTENER +#define INDICATE_TYPE_LISTENER (indicate_listener_get_type ()) + + +INDICATE_LISTENER +#define INDICATE_LISTENER(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), INDICATE_TYPE_LISTENER, IndicateListener)) + + +INDICATE_IS_LISTENER +#define INDICATE_IS_LISTENER(object) (G_TYPE_CHECK_INSTANCE_TYPE((object), INDICATE_TYPE_LISTENER)) + + +INDICATE_LISTENER_CLASS +#define INDICATE_LISTENER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), INDICATE_TYPE_LISTENER, IndicateListenerClass)) + + +INDICATE_IS_LISTENER_CLASS +#define INDICATE_IS_LISTENER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), INDICATE_TYPE_LISTENER)) + + +INDICATE_LISTENER_GET_CLASS +#define INDICATE_LISTENER_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS((object), INDICATE_TYPE_LISTENER, IndicateListenerClass)) + + +INDICATE_LISTENER_SIGNAL_INDICATOR_ADDED +#define INDICATE_LISTENER_SIGNAL_INDICATOR_ADDED "indicator-added" + + +INDICATE_LISTENER_SIGNAL_INDICATOR_REMOVED +#define INDICATE_LISTENER_SIGNAL_INDICATOR_REMOVED "indicator-removed" + + +INDICATE_LISTENER_SIGNAL_INDICATOR_MODIFIED +#define INDICATE_LISTENER_SIGNAL_INDICATOR_MODIFIED "indicator-modified" + + +INDICATE_LISTENER_SIGNAL_SERVER_ADDED +#define INDICATE_LISTENER_SIGNAL_SERVER_ADDED "server-added" + + +INDICATE_LISTENER_SIGNAL_SERVER_REMOVED +#define INDICATE_LISTENER_SIGNAL_SERVER_REMOVED "server-removed" + + +INDICATE_LISTENER_SERVER_DBUS_NAME +#define INDICATE_LISTENER_SERVER_DBUS_NAME(server) ((gchar *)server) + + +INDICATE_LISTENER_INDICATOR_ID +#define INDICATE_LISTENER_INDICATOR_ID(indicator) (GPOINTER_TO_UINT(indicator)) + + +IndicateListenerServer +typedef gchar IndicateListenerServer; + + +IndicateListenerIndicator +typedef guint IndicateListenerIndicator; + + +IndicateListener + + +IndicateListener +struct _IndicateListener { + GObject parent; +}; + + + +IndicateListenerClass + + +IndicateListenerClass +struct _IndicateListenerClass { + GObjectClass parent; + + /* Signals */ + void (* indicator_added) (IndicateListenerServer * server, IndicateListenerIndicator * indicator, gchar * type); + void (* indicator_removed) (IndicateListenerServer * server, IndicateListenerIndicator * indicator, gchar * type); + void (* indicator_modified) (IndicateListenerServer * server, IndicateListenerIndicator * indicator, gchar * type, gchar * property); + + void (* server_added) (IndicateListenerServer * server); + void (* server_removed) (IndicateListenerServer * server); +}; + + + +indicate_listener_get_type +GType +void + + +indicate_listener_get_property_cb +void +IndicateListener * listener, IndicateListenerServer * server, IndicateListenerIndicator * indicator, gchar * property, gchar * propertydata, gpointer data + + +indicate_listener_new +IndicateListener * +void + + +indicate_listener_get_property +void +IndicateListener * listener,IndicateListenerServer * server,IndicateListenerIndicator * indicator,gchar * property,indicate_listener_get_property_cb callback,gpointer data + + +indicate_listener_display +void +IndicateListener * listener,IndicateListenerServer * server,IndicateListenerIndicator * indicator + + +indicate_listener_marshal_VOID__UINT_STRING +void +GClosure *closure,GValue *return_value,guint n_param_values,const GValue *param_values,gpointer invocation_hint,gpointer marshal_data + + +indicate_listener_marshal_VOID__POINTER_POINTER_STRING +void +GClosure *closure,GValue *return_value,guint n_param_values,const GValue *param_values,gpointer invocation_hint,gpointer marshal_data + + +indicate_listener_marshal_VOID__POINTER_POINTER_STRING_STRING +void +GClosure *closure,GValue *return_value,guint n_param_values,const GValue *param_values,gpointer invocation_hint,gpointer marshal_data + + +org_freedesktop_indicator_get_desktop +gboolean +DBusGProxy *proxy, char ** OUT_desktop_file_uri, GError **error){return dbus_g_proxy_call (proxy, "GetDesktop", error, G_TYPE_INVALID, G_TYPE_STRING, OUT_desktop_file_uri, G_TYPE_INVALID + + +org_freedesktop_indicator_get_desktop_reply +void +DBusGProxy *proxy, char * OUT_desktop_file_uri, GError *error, gpointer userdata + + +org_freedesktop_indicator_get_desktop_async +DBusGProxyCall * +DBusGProxy *proxy, org_freedesktop_indicator_get_desktop_reply callback, gpointer userdata){DBusGAsyncData *stuff;stuff = g_new (DBusGAsyncData, 1 + + +dbus_g_proxy_begin_call +return +proxy, "GetDesktop", org_freedesktop_indicator_get_desktop_async_callback, stuff, g_free, G_TYPE_INVALID + + +org_freedesktop_indicator_get_indicator_count +gboolean +DBusGProxy *proxy, guint* OUT_indicator_count, GError **error){return dbus_g_proxy_call (proxy, "GetIndicatorCount", error, G_TYPE_INVALID, G_TYPE_UINT, OUT_indicator_count, G_TYPE_INVALID + + +org_freedesktop_indicator_get_indicator_count_reply +void +DBusGProxy *proxy, guint OUT_indicator_count, GError *error, gpointer userdata + + +org_freedesktop_indicator_get_indicator_count_async +DBusGProxyCall * +DBusGProxy *proxy, org_freedesktop_indicator_get_indicator_count_reply callback, gpointer userdata){DBusGAsyncData *stuff;stuff = g_new (DBusGAsyncData, 1 + + +dbus_g_proxy_begin_call +return +proxy, "GetIndicatorCount", org_freedesktop_indicator_get_indicator_count_async_callback, stuff, g_free, G_TYPE_INVALID + + +org_freedesktop_indicator_get_indicator_count_by_type +gboolean +DBusGProxy *proxy, const char * IN_type, guint* OUT_indicator_count, GError **error){return dbus_g_proxy_call (proxy, "GetIndicatorCountByType", error, G_TYPE_STRING, IN_type, G_TYPE_INVALID, G_TYPE_UINT, OUT_indicator_count, G_TYPE_INVALID + + +org_freedesktop_indicator_get_indicator_count_by_type_reply +void +DBusGProxy *proxy, guint OUT_indicator_count, GError *error, gpointer userdata + + +org_freedesktop_indicator_get_indicator_count_by_type_async +DBusGProxyCall * +DBusGProxy *proxy, const char * IN_type, org_freedesktop_indicator_get_indicator_count_by_type_reply callback, gpointer userdata){DBusGAsyncData *stuff;stuff = g_new (DBusGAsyncData, 1 + + +dbus_g_proxy_begin_call +return +proxy, "GetIndicatorCountByType", org_freedesktop_indicator_get_indicator_count_by_type_async_callback, stuff, g_free, G_TYPE_STRING, IN_type, G_TYPE_INVALID + + +org_freedesktop_indicator_get_indicator_list +gboolean +DBusGProxy *proxy, GArray** OUT_indicators, GError **error){return dbus_g_proxy_call (proxy, "GetIndicatorList", error, G_TYPE_INVALID, dbus_g_type_get_collection ("GArray", G_TYPE_INT), OUT_indicators, G_TYPE_INVALID + + +org_freedesktop_indicator_get_indicator_list_reply +void +DBusGProxy *proxy, GArray *OUT_indicators, GError *error, gpointer userdata + + +org_freedesktop_indicator_get_indicator_list_async +DBusGProxyCall * +DBusGProxy *proxy, org_freedesktop_indicator_get_indicator_list_reply callback, gpointer userdata){DBusGAsyncData *stuff;stuff = g_new (DBusGAsyncData, 1 + + +dbus_g_proxy_begin_call +return +proxy, "GetIndicatorList", org_freedesktop_indicator_get_indicator_list_async_callback, stuff, g_free, G_TYPE_INVALID + + +org_freedesktop_indicator_get_indicator_list_by_type +gboolean +DBusGProxy *proxy, const char * IN_type, GArray** OUT_indicators, GError **error){return dbus_g_proxy_call (proxy, "GetIndicatorListByType", error, G_TYPE_STRING, IN_type, G_TYPE_INVALID, dbus_g_type_get_collection ("GArray", G_TYPE_INT), OUT_indicators, G_TYPE_INVALID + + +org_freedesktop_indicator_get_indicator_list_by_type_reply +void +DBusGProxy *proxy, GArray *OUT_indicators, GError *error, gpointer userdata + + +org_freedesktop_indicator_get_indicator_list_by_type_async +DBusGProxyCall * +DBusGProxy *proxy, const char * IN_type, org_freedesktop_indicator_get_indicator_list_by_type_reply callback, gpointer userdata){DBusGAsyncData *stuff;stuff = g_new (DBusGAsyncData, 1 + + +dbus_g_proxy_begin_call +return +proxy, "GetIndicatorListByType", org_freedesktop_indicator_get_indicator_list_by_type_async_callback, stuff, g_free, G_TYPE_STRING, IN_type, G_TYPE_INVALID + + +org_freedesktop_indicator_get_indicator_property +gboolean +DBusGProxy *proxy, const guint IN_id, const char * IN_property, char ** OUT_value, GError **error){return dbus_g_proxy_call (proxy, "GetIndicatorProperty", error, G_TYPE_UINT, IN_id, G_TYPE_STRING, IN_property, G_TYPE_INVALID, G_TYPE_STRING, OUT_value, G_TYPE_INVALID + + +org_freedesktop_indicator_get_indicator_property_reply +void +DBusGProxy *proxy, char * OUT_value, GError *error, gpointer userdata + + +org_freedesktop_indicator_get_indicator_property_async +DBusGProxyCall * +DBusGProxy *proxy, const guint IN_id, const char * IN_property, org_freedesktop_indicator_get_indicator_property_reply callback, gpointer userdata){DBusGAsyncData *stuff;stuff = g_new (DBusGAsyncData, 1 + + +dbus_g_proxy_begin_call +return +proxy, "GetIndicatorProperty", org_freedesktop_indicator_get_indicator_property_async_callback, stuff, g_free, G_TYPE_UINT, IN_id, G_TYPE_STRING, IN_property, G_TYPE_INVALID + + +org_freedesktop_indicator_get_indicator_property_group +gboolean +DBusGProxy *proxy, const guint IN_id, const char ** IN_properties, char *** OUT_values, GError **error){return dbus_g_proxy_call (proxy, "GetIndicatorPropertyGroup", error, G_TYPE_UINT, IN_id, G_TYPE_STRV, IN_properties, G_TYPE_INVALID, G_TYPE_STRV, OUT_values, G_TYPE_INVALID + + +org_freedesktop_indicator_get_indicator_property_group_reply +void +DBusGProxy *proxy, char * *OUT_values, GError *error, gpointer userdata + + +org_freedesktop_indicator_get_indicator_property_group_async +DBusGProxyCall * +DBusGProxy *proxy, const guint IN_id, const char ** IN_properties, org_freedesktop_indicator_get_indicator_property_group_reply callback, gpointer userdata){DBusGAsyncData *stuff;stuff = g_new (DBusGAsyncData, 1 + + +dbus_g_proxy_begin_call +return +proxy, "GetIndicatorPropertyGroup", org_freedesktop_indicator_get_indicator_property_group_async_callback, stuff, g_free, G_TYPE_UINT, IN_id, G_TYPE_STRV, IN_properties, G_TYPE_INVALID + + +org_freedesktop_indicator_get_indicator_properties +gboolean +DBusGProxy *proxy, const guint IN_id, char *** OUT_properties, GError **error){return dbus_g_proxy_call (proxy, "GetIndicatorProperties", error, G_TYPE_UINT, IN_id, G_TYPE_INVALID, G_TYPE_STRV, OUT_properties, G_TYPE_INVALID + + +org_freedesktop_indicator_get_indicator_properties_reply +void +DBusGProxy *proxy, char * *OUT_properties, GError *error, gpointer userdata + + +org_freedesktop_indicator_get_indicator_properties_async +DBusGProxyCall * +DBusGProxy *proxy, const guint IN_id, org_freedesktop_indicator_get_indicator_properties_reply callback, gpointer userdata){DBusGAsyncData *stuff;stuff = g_new (DBusGAsyncData, 1 + + +dbus_g_proxy_begin_call +return +proxy, "GetIndicatorProperties", org_freedesktop_indicator_get_indicator_properties_async_callback, stuff, g_free, G_TYPE_UINT, IN_id, G_TYPE_INVALID + + +org_freedesktop_indicator_show_indicator_to_user +gboolean +DBusGProxy *proxy, const guint IN_id, GError **error){return dbus_g_proxy_call (proxy, "ShowIndicatorToUser", error, G_TYPE_UINT, IN_id, G_TYPE_INVALID, G_TYPE_INVALID + + +org_freedesktop_indicator_show_indicator_to_user_reply +void +DBusGProxy *proxy, GError *error, gpointer userdata + + +org_freedesktop_indicator_show_indicator_to_user_async +DBusGProxyCall * +DBusGProxy *proxy, const guint IN_id, org_freedesktop_indicator_show_indicator_to_user_reply callback, gpointer userdata){DBusGAsyncData *stuff;stuff = g_new (DBusGAsyncData, 1 + + +dbus_g_proxy_begin_call +return +proxy, "ShowIndicatorToUser", org_freedesktop_indicator_show_indicator_to_user_async_callback, stuff, g_free, G_TYPE_UINT, IN_id, G_TYPE_INVALID + + +INDICATE_TYPE_SERVER +#define INDICATE_TYPE_SERVER (indicate_server_get_type ()) + + +INDICATE_SERVER +#define INDICATE_SERVER(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), INDICATE_TYPE_SERVER, IndicateServer)) + + +INDICATE_IS_SERVER +#define INDICATE_IS_SERVER(object) (G_TYPE_CHECK_INSTANCE_TYPE((object), INDICATE_TYPE_SERVER)) + + +INDICATE_SERVER_CLASS +#define INDICATE_SERVER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), INDICATE_TYPE_SERVER, IndicateServerClass)) + + +INDICATE_IS_SERVER_CLASS +#define INDICATE_IS_SERVER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), INDICATE_TYPE_SERVER)) + + +INDICATE_SERVER_GET_CLASS +#define INDICATE_SERVER_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS((object), INDICATE_TYPE_SERVER, IndicateServerClass)) + + +IndicateServer + + +IndicateServer +struct _IndicateServer { + GObject parent; +}; + + + +IndicateServerClass + + +IndicateServerClass +struct _IndicateServerClass { + GObjectClass parent; + + /* Signals */ + void (* indicator_added) (IndicateServer * server, guint id, gchar * type); + void (* indicator_removed) (IndicateServer * server, guint id, gchar * type); + void (* indicator_modified) (IndicateServer * server, guint id, gchar * property); + + /* Virtual Functions */ + gboolean (*get_desktop) (IndicateServer * server, gchar ** desktop_path, GError **error); + gboolean (*get_indicator_count) (IndicateServer * server, guint * count, GError **error); + gboolean (*get_indicator_count_by_type) (IndicateServer * server, gchar * type, guint * count, GError **error); + gboolean (*get_indicator_list) (IndicateServer * server, GArray ** indicators, GError ** error); + gboolean (*get_indicator_list_by_type) (IndicateServer * server, gchar * type, guint ** indicators, GError ** error); + gboolean (*get_indicator_property) (IndicateServer * server, guint id, gchar * property, gchar ** value, GError **error); + gboolean (*get_indicator_property_group) (IndicateServer * server, guint id, GPtrArray * properties, gchar *** value, GError **error); + gboolean (*get_indicator_properties) (IndicateServer * server, guint id, gchar *** properties, GError **error); + gboolean (*show_indicator_to_user) (IndicateServer * server, guint id, GError ** error); + guint (*get_next_id) (IndicateServer * server); +}; + + + +indicate_server_get_type +GType +void + + +indicate_server_new +IndicateServer * +void + + +indicate_server_set_dbus_object +void +const gchar * obj + + +indicate_server_set_desktop_file +void +const gchar * path + + +indicate_server_show +void +IndicateServer * server + + +indicate_server_hide +void +IndicateServer * server + + +indicate_server_get_next_id +guint +IndicateServer * server + + +indicate_server_add_indicator +void +IndicateServer * server, IndicateIndicator * indicator + + +indicate_server_remove_indicator +void +IndicateServer * server, IndicateIndicator * indicator + + +indicate_server_ref_default +IndicateServer * +void + + +indicate_server_set_default +void +IndicateServer * server + + +indicate_server_get_desktop +gboolean +IndicateServer * server, gchar ** desktop_path, GError **error + + +indicate_server_get_indicator_count +gboolean +IndicateServer * server, guint * count, GError **error + + +indicate_server_get_indicator_count_by_type +gboolean +IndicateServer * server, gchar * type, guint * count, GError **error + + +indicate_server_get_indicator_list +gboolean +IndicateServer * server, GArray ** indicators, GError ** error + + +indicate_server_get_indicator_list_by_type +gboolean +IndicateServer * server, gchar * type, guint ** indicators, GError ** error + + +indicate_server_get_indicator_property +gboolean +IndicateServer * server, guint id, gchar * property, gchar ** value, GError **error + + +indicate_server_get_indicator_property_group +gboolean +IndicateServer * server, guint id, GPtrArray * properties, gchar *** value, GError **error + + +indicate_server_get_indicator_properties +gboolean +IndicateServer * server, guint id, gchar *** properties, GError **error + + +indicate_server_show_indicator_to_user +gboolean +IndicateServer * server, guint id, GError ** error + + +indicate_server_emit_indicator_added +void +IndicateServer *server, guint id, const gchar *type + + +indicate_server_emit_indicator_removed +void +IndicateServer *server, guint id, const gchar *type + + +indicate_server_emit_indicator_modified +void +IndicateServer *server, guint id, const gchar *property + + +INDICATE_TYPE_INDICATOR_MESSAGE +#define INDICATE_TYPE_INDICATOR_MESSAGE (indicate_indicator_message_get_type ()) + + +INDICATE_INDICATOR_MESSAGE +#define INDICATE_INDICATOR_MESSAGE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), INDICATE_TYPE_INDICATOR_MESSAGE, IndicateIndicatorMessage)) + + +INDICATE_INDICATOR_MESSAGE_CLASS +#define INDICATE_INDICATOR_MESSAGE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), INDICATE_TYPE_INDICATOR_MESSAGE, IndicateIndicatorMessageClass)) + + +INDICATE_IS_INDICATOR_MESSAGE +#define INDICATE_IS_INDICATOR_MESSAGE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), INDICATE_TYPE_INDICATOR_MESSAGE)) + + +INDICATE_IS_INDICATOR_MESSAGE_CLASS +#define INDICATE_IS_INDICATOR_MESSAGE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), INDICATE_TYPE_INDICATOR_MESSAGE)) + + +INDICATE_INDICATOR_MESSAGE_GET_CLASS +#define INDICATE_INDICATOR_MESSAGE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), INDICATE_TYPE_INDICATOR_MESSAGE, IndicateIndicatorMessageClass)) + + +IndicateIndicatorMessage + + +IndicateIndicatorMessageClass + + +IndicateIndicatorMessageClass +struct _IndicateIndicatorMessageClass +{ +IndicateIndicatorClass parent_class; +}; + + +IndicateIndicatorMessage +struct _IndicateIndicatorMessage +{ +IndicateIndicator parent; +}; + + +indicate_indicator_message_get_type +GType +void + + +indicate_indicator_message_new +IndicateIndicatorMessage * +void + + +g_marshal_value_peek_boolean +#define g_marshal_value_peek_boolean(v) g_value_get_boolean (v) + + +g_marshal_value_peek_char +#define g_marshal_value_peek_char(v) g_value_get_char (v) + + +g_marshal_value_peek_uchar +#define g_marshal_value_peek_uchar(v) g_value_get_uchar (v) + + +g_marshal_value_peek_int +#define g_marshal_value_peek_int(v) g_value_get_int (v) + + +g_marshal_value_peek_uint +#define g_marshal_value_peek_uint(v) g_value_get_uint (v) + + +g_marshal_value_peek_long +#define g_marshal_value_peek_long(v) g_value_get_long (v) + + +g_marshal_value_peek_ulong +#define g_marshal_value_peek_ulong(v) g_value_get_ulong (v) + + +g_marshal_value_peek_int64 +#define g_marshal_value_peek_int64(v) g_value_get_int64 (v) + + +g_marshal_value_peek_uint64 +#define g_marshal_value_peek_uint64(v) g_value_get_uint64 (v) + + +g_marshal_value_peek_enum +#define g_marshal_value_peek_enum(v) g_value_get_enum (v) + + +g_marshal_value_peek_flags +#define g_marshal_value_peek_flags(v) g_value_get_flags (v) + + +g_marshal_value_peek_float +#define g_marshal_value_peek_float(v) g_value_get_float (v) + + +g_marshal_value_peek_double +#define g_marshal_value_peek_double(v) g_value_get_double (v) + + +g_marshal_value_peek_string +#define g_marshal_value_peek_string(v) (char*) g_value_get_string (v) + + +g_marshal_value_peek_param +#define g_marshal_value_peek_param(v) g_value_get_param (v) + + +g_marshal_value_peek_boxed +#define g_marshal_value_peek_boxed(v) g_value_get_boxed (v) + + +g_marshal_value_peek_pointer +#define g_marshal_value_peek_pointer(v) g_value_get_pointer (v) + + +g_marshal_value_peek_object +#define g_marshal_value_peek_object(v) g_value_get_object (v) + + +g_marshal_value_peek_boolean +#define g_marshal_value_peek_boolean(v) (v)->data[0].v_int + + +g_marshal_value_peek_char +#define g_marshal_value_peek_char(v) (v)->data[0].v_int + + +g_marshal_value_peek_uchar +#define g_marshal_value_peek_uchar(v) (v)->data[0].v_uint + + +g_marshal_value_peek_int +#define g_marshal_value_peek_int(v) (v)->data[0].v_int + + +g_marshal_value_peek_uint +#define g_marshal_value_peek_uint(v) (v)->data[0].v_uint + + +g_marshal_value_peek_long +#define g_marshal_value_peek_long(v) (v)->data[0].v_long + + +g_marshal_value_peek_ulong +#define g_marshal_value_peek_ulong(v) (v)->data[0].v_ulong + + +g_marshal_value_peek_int64 +#define g_marshal_value_peek_int64(v) (v)->data[0].v_int64 + + +g_marshal_value_peek_uint64 +#define g_marshal_value_peek_uint64(v) (v)->data[0].v_uint64 + + +g_marshal_value_peek_enum +#define g_marshal_value_peek_enum(v) (v)->data[0].v_long + + +g_marshal_value_peek_flags +#define g_marshal_value_peek_flags(v) (v)->data[0].v_ulong + + +g_marshal_value_peek_float +#define g_marshal_value_peek_float(v) (v)->data[0].v_float + + +g_marshal_value_peek_double +#define g_marshal_value_peek_double(v) (v)->data[0].v_double + + +g_marshal_value_peek_string +#define g_marshal_value_peek_string(v) (v)->data[0].v_pointer + + +g_marshal_value_peek_param +#define g_marshal_value_peek_param(v) (v)->data[0].v_pointer + + +g_marshal_value_peek_boxed +#define g_marshal_value_peek_boxed(v) (v)->data[0].v_pointer + + +g_marshal_value_peek_pointer +#define g_marshal_value_peek_pointer(v) (v)->data[0].v_pointer + + +g_marshal_value_peek_object +#define g_marshal_value_peek_object(v) (v)->data[0].v_pointer + + +dbus_glib_marshal_indicate_server_BOOLEAN__UINT_STRING_POINTER_POINTER +void +GClosure *closure,GValue *return_value,guint n_param_values,const GValue *param_values,gpointer invocation_hint,gpointer marshal_data + + +dbus_glib_marshal_indicate_server_BOOLEAN__UINT_STRING_POINTER_POINTER +void +GClosure *closure,GValue *return_value G_GNUC_UNUSED,guint n_param_values,const GValue *param_values,gpointer invocation_hint G_GNUC_UNUSED,gpointer marshal_data){typedef gboolean (*GMarshalFunc_BOOLEAN__UINT_STRING_POINTER_POINTER) (gpointer data1,guint arg_1,gpointer arg_2,gpointer arg_3,gpointer arg_4,gpointer data2 + + +dbus_glib_marshal_indicate_server_BOOLEAN__POINTER_POINTER +void +GClosure *closure,GValue *return_value,guint n_param_values,const GValue *param_values,gpointer invocation_hint,gpointer marshal_data + + +dbus_glib_marshal_indicate_server_BOOLEAN__POINTER_POINTER +void +GClosure *closure,GValue *return_value G_GNUC_UNUSED,guint n_param_values,const GValue *param_values,gpointer invocation_hint G_GNUC_UNUSED,gpointer marshal_data){typedef gboolean (*GMarshalFunc_BOOLEAN__POINTER_POINTER) (gpointer data1,gpointer arg_1,gpointer arg_2,gpointer data2 + + +dbus_glib_marshal_indicate_server_BOOLEAN__UINT_BOXED_POINTER_POINTER +void +GClosure *closure,GValue *return_value,guint n_param_values,const GValue *param_values,gpointer invocation_hint,gpointer marshal_data + + +dbus_glib_marshal_indicate_server_BOOLEAN__UINT_BOXED_POINTER_POINTER +void +GClosure *closure,GValue *return_value G_GNUC_UNUSED,guint n_param_values,const GValue *param_values,gpointer invocation_hint G_GNUC_UNUSED,gpointer marshal_data){typedef gboolean (*GMarshalFunc_BOOLEAN__UINT_BOXED_POINTER_POINTER) (gpointer data1,guint arg_1,gpointer arg_2,gpointer arg_3,gpointer arg_4,gpointer data2 + + +dbus_glib_marshal_indicate_server_BOOLEAN__STRING_POINTER_POINTER +void +GClosure *closure,GValue *return_value,guint n_param_values,const GValue *param_values,gpointer invocation_hint,gpointer marshal_data + + +dbus_glib_marshal_indicate_server_BOOLEAN__STRING_POINTER_POINTER +void +GClosure *closure,GValue *return_value G_GNUC_UNUSED,guint n_param_values,const GValue *param_values,gpointer invocation_hint G_GNUC_UNUSED,gpointer marshal_data){typedef gboolean (*GMarshalFunc_BOOLEAN__STRING_POINTER_POINTER) (gpointer data1,gpointer arg_1,gpointer arg_2,gpointer arg_3,gpointer data2 + + +dbus_glib_marshal_indicate_server_BOOLEAN__UINT_POINTER_POINTER +void +GClosure *closure,GValue *return_value,guint n_param_values,const GValue *param_values,gpointer invocation_hint,gpointer marshal_data + + +dbus_glib_marshal_indicate_server_BOOLEAN__UINT_POINTER_POINTER +void +GClosure *closure,GValue *return_value G_GNUC_UNUSED,guint n_param_values,const GValue *param_values,gpointer invocation_hint G_GNUC_UNUSED,gpointer marshal_data){typedef gboolean (*GMarshalFunc_BOOLEAN__UINT_POINTER_POINTER) (gpointer data1,guint arg_1,gpointer arg_2,gpointer arg_3,gpointer data2 + + +dbus_glib_marshal_indicate_server_BOOLEAN__UINT_POINTER +void +GClosure *closure,GValue *return_value,guint n_param_values,const GValue *param_values,gpointer invocation_hint,gpointer marshal_data + + +dbus_glib_marshal_indicate_server_BOOLEAN__UINT_POINTER +void +GClosure *closure,GValue *return_value G_GNUC_UNUSED,guint n_param_values,const GValue *param_values,gpointer invocation_hint G_GNUC_UNUSED,gpointer marshal_data){typedef gboolean (*GMarshalFunc_BOOLEAN__UINT_POINTER) (gpointer data1,guint arg_1,gpointer arg_2,gpointer data2 + diff --git a/docs/reference/libindicate-docs.sgml b/docs/reference/libindicate-docs.sgml index f2fa594..0f1ccd1 100644 --- a/docs/reference/libindicate-docs.sgml +++ b/docs/reference/libindicate-docs.sgml @@ -14,4 +14,11 @@ [Insert title here] + + + libindicate Indicator + + + + diff --git a/docs/reference/libindicate-sections.txt b/docs/reference/libindicate-sections.txt index e69de29..f5f3290 100644 --- a/docs/reference/libindicate-sections.txt +++ b/docs/reference/libindicate-sections.txt @@ -0,0 +1,149 @@ +indicator.h + +
+indicator +Everything + +INDICATE_INDICATOR +INDICATE_INDICATOR_CLASS +INDICATE_INDICATOR_GET_CLASS +INDICATE_INDICATOR_MESSAGE +INDICATE_INDICATOR_MESSAGE_CLASS +INDICATE_INDICATOR_MESSAGE_GET_CLASS +INDICATE_INDICATOR_SIGNAL_DISPLAY +INDICATE_INDICATOR_SIGNAL_HIDE +INDICATE_INDICATOR_SIGNAL_MODIFIED +INDICATE_INDICATOR_SIGNAL_SHOW +INDICATE_IS_INDICATOR +INDICATE_IS_INDICATOR_CLASS +INDICATE_IS_INDICATOR_MESSAGE +INDICATE_IS_INDICATOR_MESSAGE_CLASS +INDICATE_IS_LISTENER +INDICATE_IS_LISTENER_CLASS +INDICATE_IS_SERVER +INDICATE_IS_SERVER_CLASS +INDICATE_LISTENER +INDICATE_LISTENER_CLASS +INDICATE_LISTENER_GET_CLASS +INDICATE_LISTENER_INDICATOR_ID +INDICATE_LISTENER_SERVER_DBUS_NAME +INDICATE_LISTENER_SIGNAL_INDICATOR_ADDED +INDICATE_LISTENER_SIGNAL_INDICATOR_MODIFIED +INDICATE_LISTENER_SIGNAL_INDICATOR_REMOVED +INDICATE_LISTENER_SIGNAL_SERVER_ADDED +INDICATE_LISTENER_SIGNAL_SERVER_REMOVED +INDICATE_SERVER +INDICATE_SERVER_CLASS +INDICATE_SERVER_GET_CLASS +INDICATE_TYPE_INDICATOR +INDICATE_TYPE_INDICATOR_MESSAGE +INDICATE_TYPE_LISTENER +INDICATE_TYPE_SERVER +IndicateIndicator +IndicateIndicatorClass +IndicateIndicatorMessage +IndicateIndicatorMessageClass +IndicateListener +IndicateListenerClass +IndicateListenerIndicator +IndicateListenerServer +IndicateServer +IndicateServerClass +dbus_g_proxy_begin_call +dbus_glib_marshal_indicate_server_BOOLEAN__POINTER_POINTER +dbus_glib_marshal_indicate_server_BOOLEAN__STRING_POINTER_POINTER +dbus_glib_marshal_indicate_server_BOOLEAN__UINT_BOXED_POINTER_POINTER +dbus_glib_marshal_indicate_server_BOOLEAN__UINT_POINTER +dbus_glib_marshal_indicate_server_BOOLEAN__UINT_POINTER_POINTER +dbus_glib_marshal_indicate_server_BOOLEAN__UINT_STRING_POINTER_POINTER +g_marshal_value_peek_boolean +g_marshal_value_peek_boxed +g_marshal_value_peek_char +g_marshal_value_peek_double +g_marshal_value_peek_enum +g_marshal_value_peek_flags +g_marshal_value_peek_float +g_marshal_value_peek_int +g_marshal_value_peek_int64 +g_marshal_value_peek_long +g_marshal_value_peek_object +g_marshal_value_peek_param +g_marshal_value_peek_pointer +g_marshal_value_peek_string +g_marshal_value_peek_uchar +g_marshal_value_peek_uint +g_marshal_value_peek_uint64 +g_marshal_value_peek_ulong +indicate_indicator_get_id +indicate_indicator_get_indicator_type +indicate_indicator_get_property +indicate_indicator_get_type +indicate_indicator_hide +indicate_indicator_is_visible +indicate_indicator_list_properties +indicate_indicator_message_get_type +indicate_indicator_message_new +indicate_indicator_new +indicate_indicator_set_property +indicate_indicator_show +indicate_indicator_user_display +indicate_listener_display +indicate_listener_get_property +indicate_listener_get_property_cb +indicate_listener_get_type +indicate_listener_marshal_VOID__POINTER_POINTER_STRING +indicate_listener_marshal_VOID__POINTER_POINTER_STRING_STRING +indicate_listener_marshal_VOID__UINT_STRING +indicate_listener_new +indicate_server_add_indicator +indicate_server_emit_indicator_added +indicate_server_emit_indicator_modified +indicate_server_emit_indicator_removed +indicate_server_get_desktop +indicate_server_get_indicator_count +indicate_server_get_indicator_count_by_type +indicate_server_get_indicator_list +indicate_server_get_indicator_list_by_type +indicate_server_get_indicator_properties +indicate_server_get_indicator_property +indicate_server_get_indicator_property_group +indicate_server_get_next_id +indicate_server_get_type +indicate_server_hide +indicate_server_new +indicate_server_ref_default +indicate_server_remove_indicator +indicate_server_set_dbus_object +indicate_server_set_default +indicate_server_set_desktop_file +indicate_server_show +indicate_server_show_indicator_to_user +org_freedesktop_indicator_get_desktop +org_freedesktop_indicator_get_desktop_async +org_freedesktop_indicator_get_desktop_reply +org_freedesktop_indicator_get_indicator_count +org_freedesktop_indicator_get_indicator_count_async +org_freedesktop_indicator_get_indicator_count_by_type +org_freedesktop_indicator_get_indicator_count_by_type_async +org_freedesktop_indicator_get_indicator_count_by_type_reply +org_freedesktop_indicator_get_indicator_count_reply +org_freedesktop_indicator_get_indicator_list +org_freedesktop_indicator_get_indicator_list_async +org_freedesktop_indicator_get_indicator_list_by_type +org_freedesktop_indicator_get_indicator_list_by_type_async +org_freedesktop_indicator_get_indicator_list_by_type_reply +org_freedesktop_indicator_get_indicator_list_reply +org_freedesktop_indicator_get_indicator_properties +org_freedesktop_indicator_get_indicator_properties_async +org_freedesktop_indicator_get_indicator_properties_reply +org_freedesktop_indicator_get_indicator_property +org_freedesktop_indicator_get_indicator_property_async +org_freedesktop_indicator_get_indicator_property_group +org_freedesktop_indicator_get_indicator_property_group_async +org_freedesktop_indicator_get_indicator_property_group_reply +org_freedesktop_indicator_get_indicator_property_reply +org_freedesktop_indicator_show_indicator_to_user +org_freedesktop_indicator_show_indicator_to_user_async +org_freedesktop_indicator_show_indicator_to_user_reply + +
-- cgit v1.2.3 From 7ef6658a210f363bfe20563aad59b145d77ef43a Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Wed, 4 Feb 2009 14:27:20 +0100 Subject: Removing the icons from the larger applet --- configure.ac | 13 ----------- data/Makefile.am | 2 -- data/icons/16x16/Makefile.am | 1 - data/icons/16x16/panel/Makefile.am | 26 --------------------- data/icons/16x16/panel/panel-dummy.png | 0 .../16x16/panel/panel-light-audio-volume-high.png | Bin 436 -> 0 bytes .../16x16/panel/panel-light-audio-volume-low.png | Bin 305 -> 0 bytes .../panel/panel-light-audio-volume-medium.png | Bin 378 -> 0 bytes .../16x16/panel/panel-light-audio-volume-muted.png | Bin 460 -> 0 bytes .../16x16/panel/panel-light-network-wifi-0.png | Bin 200 -> 0 bytes .../16x16/panel/panel-light-network-wifi-1.png | Bin 208 -> 0 bytes .../16x16/panel/panel-light-network-wifi-2.png | Bin 208 -> 0 bytes .../16x16/panel/panel-light-network-wifi-3.png | Bin 200 -> 0 bytes .../16x16/panel/panel-light-network-wifi-4.png | Bin 199 -> 0 bytes .../16x16/panel/panel-light-power-battery-full.png | Bin 212 -> 0 bytes .../16x16/panel/panel-light-power-battery-low.png | Bin 222 -> 0 bytes .../panel/panel-light-power-battery-medium.png | Bin 220 -> 0 bytes .../16x16/panel/panel-light-power-battery-plug.png | Bin 255 -> 0 bytes .../panel/panel-light-power-battery-plugged.png | Bin 298 -> 0 bytes .../panel/panel-light-power-battery-verylow.png | Bin 223 -> 0 bytes .../16x16/panel/panel-light-power-mouse-high.png | Bin 319 -> 0 bytes .../16x16/panel/panel-light-power-mouse-low.png | Bin 309 -> 0 bytes .../panel/panel-light-power-mouse-verylow.png | Bin 309 -> 0 bytes data/icons/22x22/Makefile.am | 1 - data/icons/22x22/panel/Makefile.am | 8 ------- data/icons/22x22/panel/panel-dummy.png | 0 data/icons/24x24/Makefile.am | 1 - data/icons/24x24/panel/Makefile.am | 8 ------- data/icons/24x24/panel/panel-dummy.png | 0 data/icons/32x32/Makefile.am | 1 - data/icons/32x32/panel/Makefile.am | 8 ------- data/icons/32x32/panel/panel-dummy.png | 0 data/icons/48x48/Makefile.am | 1 - data/icons/48x48/panel/Makefile.am | 8 ------- data/icons/48x48/panel/panel-dummy.png | 0 data/icons/Makefile.am | 15 ------------ data/icons/scalable/Makefile.am | 1 - data/icons/scalable/panel/Makefile.am | 8 ------- data/icons/scalable/panel/panel-dummy.svg | 1 - debian/indicator-applet.install | 1 - 40 files changed, 104 deletions(-) delete mode 100644 data/icons/16x16/Makefile.am delete mode 100644 data/icons/16x16/panel/Makefile.am delete mode 100644 data/icons/16x16/panel/panel-dummy.png delete mode 100644 data/icons/16x16/panel/panel-light-audio-volume-high.png delete mode 100644 data/icons/16x16/panel/panel-light-audio-volume-low.png delete mode 100644 data/icons/16x16/panel/panel-light-audio-volume-medium.png delete mode 100644 data/icons/16x16/panel/panel-light-audio-volume-muted.png delete mode 100644 data/icons/16x16/panel/panel-light-network-wifi-0.png delete mode 100644 data/icons/16x16/panel/panel-light-network-wifi-1.png delete mode 100644 data/icons/16x16/panel/panel-light-network-wifi-2.png delete mode 100644 data/icons/16x16/panel/panel-light-network-wifi-3.png delete mode 100644 data/icons/16x16/panel/panel-light-network-wifi-4.png delete mode 100644 data/icons/16x16/panel/panel-light-power-battery-full.png delete mode 100644 data/icons/16x16/panel/panel-light-power-battery-low.png delete mode 100644 data/icons/16x16/panel/panel-light-power-battery-medium.png delete mode 100644 data/icons/16x16/panel/panel-light-power-battery-plug.png delete mode 100644 data/icons/16x16/panel/panel-light-power-battery-plugged.png delete mode 100644 data/icons/16x16/panel/panel-light-power-battery-verylow.png delete mode 100644 data/icons/16x16/panel/panel-light-power-mouse-high.png delete mode 100644 data/icons/16x16/panel/panel-light-power-mouse-low.png delete mode 100644 data/icons/16x16/panel/panel-light-power-mouse-verylow.png delete mode 100644 data/icons/22x22/Makefile.am delete mode 100644 data/icons/22x22/panel/Makefile.am delete mode 100644 data/icons/22x22/panel/panel-dummy.png delete mode 100644 data/icons/24x24/Makefile.am delete mode 100644 data/icons/24x24/panel/Makefile.am delete mode 100644 data/icons/24x24/panel/panel-dummy.png delete mode 100644 data/icons/32x32/Makefile.am delete mode 100644 data/icons/32x32/panel/Makefile.am delete mode 100644 data/icons/32x32/panel/panel-dummy.png delete mode 100644 data/icons/48x48/Makefile.am delete mode 100644 data/icons/48x48/panel/Makefile.am delete mode 100644 data/icons/48x48/panel/panel-dummy.png delete mode 100644 data/icons/Makefile.am delete mode 100644 data/icons/scalable/Makefile.am delete mode 100644 data/icons/scalable/panel/Makefile.am delete mode 100644 data/icons/scalable/panel/panel-dummy.svg diff --git a/configure.ac b/configure.ac index 612581c..6668ff3 100644 --- a/configure.ac +++ b/configure.ac @@ -98,19 +98,6 @@ libindicate/Makefile libindicate/indicate.pc tests/Makefile data/Makefile -data/icons/Makefile -data/icons/16x16/Makefile -data/icons/22x22/Makefile -data/icons/24x24/Makefile -data/icons/32x32/Makefile -data/icons/48x48/Makefile -data/icons/scalable/Makefile -data/icons/16x16/panel/Makefile -data/icons/22x22/panel/Makefile -data/icons/24x24/panel/Makefile -data/icons/32x32/panel/Makefile -data/icons/48x48/panel/Makefile -data/icons/scalable/panel/Makefile po/Makefile.in docs/Makefile docs/reference/Makefile diff --git a/data/Makefile.am b/data/Makefile.am index 66c576f..7fc4a6f 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -1,7 +1,5 @@ # This file will be processed with automake to create Makefile.in -SUBDIRS = icons - ############################## # Bonobo .server ############################## diff --git a/data/icons/16x16/Makefile.am b/data/icons/16x16/Makefile.am deleted file mode 100644 index 4ca175a..0000000 --- a/data/icons/16x16/Makefile.am +++ /dev/null @@ -1 +0,0 @@ -SUBDIRS = panel diff --git a/data/icons/16x16/panel/Makefile.am b/data/icons/16x16/panel/Makefile.am deleted file mode 100644 index e36faed..0000000 --- a/data/icons/16x16/panel/Makefile.am +++ /dev/null @@ -1,26 +0,0 @@ - -iconsdir = $(pkgdatadir)/icons/hicolor/16x16/panel - -icons_DATA = \ - panel-dummy.png \ - panel-light-audio-volume-high.png \ - panel-light-audio-volume-low.png \ - panel-light-audio-volume-medium.png \ - panel-light-audio-volume-muted.png \ - panel-light-network-wifi-0.png \ - panel-light-network-wifi-1.png \ - panel-light-network-wifi-2.png \ - panel-light-network-wifi-3.png \ - panel-light-network-wifi-4.png \ - panel-light-power-battery-full.png \ - panel-light-power-battery-low.png \ - panel-light-power-battery-medium.png \ - panel-light-power-battery-plugged.png \ - panel-light-power-battery-plug.png \ - panel-light-power-battery-verylow.png \ - panel-light-power-mouse-high.png \ - panel-light-power-mouse-low.png \ - panel-light-power-mouse-verylow.png - -EXTRA_DIST = $(icons_DATA) - diff --git a/data/icons/16x16/panel/panel-dummy.png b/data/icons/16x16/panel/panel-dummy.png deleted file mode 100644 index e69de29..0000000 diff --git a/data/icons/16x16/panel/panel-light-audio-volume-high.png b/data/icons/16x16/panel/panel-light-audio-volume-high.png deleted file mode 100644 index 68a1419..0000000 Binary files a/data/icons/16x16/panel/panel-light-audio-volume-high.png and /dev/null differ diff --git a/data/icons/16x16/panel/panel-light-audio-volume-low.png b/data/icons/16x16/panel/panel-light-audio-volume-low.png deleted file mode 100644 index ec543cd..0000000 Binary files a/data/icons/16x16/panel/panel-light-audio-volume-low.png and /dev/null differ diff --git a/data/icons/16x16/panel/panel-light-audio-volume-medium.png b/data/icons/16x16/panel/panel-light-audio-volume-medium.png deleted file mode 100644 index 22087f8..0000000 Binary files a/data/icons/16x16/panel/panel-light-audio-volume-medium.png and /dev/null differ diff --git a/data/icons/16x16/panel/panel-light-audio-volume-muted.png b/data/icons/16x16/panel/panel-light-audio-volume-muted.png deleted file mode 100644 index 89ef79a..0000000 Binary files a/data/icons/16x16/panel/panel-light-audio-volume-muted.png and /dev/null differ diff --git a/data/icons/16x16/panel/panel-light-network-wifi-0.png b/data/icons/16x16/panel/panel-light-network-wifi-0.png deleted file mode 100644 index 90eaf11..0000000 Binary files a/data/icons/16x16/panel/panel-light-network-wifi-0.png and /dev/null differ diff --git a/data/icons/16x16/panel/panel-light-network-wifi-1.png b/data/icons/16x16/panel/panel-light-network-wifi-1.png deleted file mode 100644 index 9180f51..0000000 Binary files a/data/icons/16x16/panel/panel-light-network-wifi-1.png and /dev/null differ diff --git a/data/icons/16x16/panel/panel-light-network-wifi-2.png b/data/icons/16x16/panel/panel-light-network-wifi-2.png deleted file mode 100644 index edd6552..0000000 Binary files a/data/icons/16x16/panel/panel-light-network-wifi-2.png and /dev/null differ diff --git a/data/icons/16x16/panel/panel-light-network-wifi-3.png b/data/icons/16x16/panel/panel-light-network-wifi-3.png deleted file mode 100644 index 16c3d10..0000000 Binary files a/data/icons/16x16/panel/panel-light-network-wifi-3.png and /dev/null differ diff --git a/data/icons/16x16/panel/panel-light-network-wifi-4.png b/data/icons/16x16/panel/panel-light-network-wifi-4.png deleted file mode 100644 index 80cf836..0000000 Binary files a/data/icons/16x16/panel/panel-light-network-wifi-4.png and /dev/null differ diff --git a/data/icons/16x16/panel/panel-light-power-battery-full.png b/data/icons/16x16/panel/panel-light-power-battery-full.png deleted file mode 100644 index 65c7af7..0000000 Binary files a/data/icons/16x16/panel/panel-light-power-battery-full.png and /dev/null differ diff --git a/data/icons/16x16/panel/panel-light-power-battery-low.png b/data/icons/16x16/panel/panel-light-power-battery-low.png deleted file mode 100644 index 53aa11a..0000000 Binary files a/data/icons/16x16/panel/panel-light-power-battery-low.png and /dev/null differ diff --git a/data/icons/16x16/panel/panel-light-power-battery-medium.png b/data/icons/16x16/panel/panel-light-power-battery-medium.png deleted file mode 100644 index dd50f99..0000000 Binary files a/data/icons/16x16/panel/panel-light-power-battery-medium.png and /dev/null differ diff --git a/data/icons/16x16/panel/panel-light-power-battery-plug.png b/data/icons/16x16/panel/panel-light-power-battery-plug.png deleted file mode 100644 index 1351122..0000000 Binary files a/data/icons/16x16/panel/panel-light-power-battery-plug.png and /dev/null differ diff --git a/data/icons/16x16/panel/panel-light-power-battery-plugged.png b/data/icons/16x16/panel/panel-light-power-battery-plugged.png deleted file mode 100644 index b72c7e4..0000000 Binary files a/data/icons/16x16/panel/panel-light-power-battery-plugged.png and /dev/null differ diff --git a/data/icons/16x16/panel/panel-light-power-battery-verylow.png b/data/icons/16x16/panel/panel-light-power-battery-verylow.png deleted file mode 100644 index 730dccc..0000000 Binary files a/data/icons/16x16/panel/panel-light-power-battery-verylow.png and /dev/null differ diff --git a/data/icons/16x16/panel/panel-light-power-mouse-high.png b/data/icons/16x16/panel/panel-light-power-mouse-high.png deleted file mode 100644 index 3a83af9..0000000 Binary files a/data/icons/16x16/panel/panel-light-power-mouse-high.png and /dev/null differ diff --git a/data/icons/16x16/panel/panel-light-power-mouse-low.png b/data/icons/16x16/panel/panel-light-power-mouse-low.png deleted file mode 100644 index c6273b6..0000000 Binary files a/data/icons/16x16/panel/panel-light-power-mouse-low.png and /dev/null differ diff --git a/data/icons/16x16/panel/panel-light-power-mouse-verylow.png b/data/icons/16x16/panel/panel-light-power-mouse-verylow.png deleted file mode 100644 index 5f1bb52..0000000 Binary files a/data/icons/16x16/panel/panel-light-power-mouse-verylow.png and /dev/null differ diff --git a/data/icons/22x22/Makefile.am b/data/icons/22x22/Makefile.am deleted file mode 100644 index 4ca175a..0000000 --- a/data/icons/22x22/Makefile.am +++ /dev/null @@ -1 +0,0 @@ -SUBDIRS = panel diff --git a/data/icons/22x22/panel/Makefile.am b/data/icons/22x22/panel/Makefile.am deleted file mode 100644 index 94524b4..0000000 --- a/data/icons/22x22/panel/Makefile.am +++ /dev/null @@ -1,8 +0,0 @@ - -iconsdir = $(pkgdatadir)/icons/hicolor/22x22/panel - -icons_DATA = \ - panel-dummy.png - -EXTRA_DIST = $(icons_DATA) - diff --git a/data/icons/22x22/panel/panel-dummy.png b/data/icons/22x22/panel/panel-dummy.png deleted file mode 100644 index e69de29..0000000 diff --git a/data/icons/24x24/Makefile.am b/data/icons/24x24/Makefile.am deleted file mode 100644 index 4ca175a..0000000 --- a/data/icons/24x24/Makefile.am +++ /dev/null @@ -1 +0,0 @@ -SUBDIRS = panel diff --git a/data/icons/24x24/panel/Makefile.am b/data/icons/24x24/panel/Makefile.am deleted file mode 100644 index f3c3cdf..0000000 --- a/data/icons/24x24/panel/Makefile.am +++ /dev/null @@ -1,8 +0,0 @@ - -iconsdir = $(pkgdatadir)/icons/hicolor/24x24/panel - -icons_DATA = \ - panel-dummy.png - -EXTRA_DIST = $(icons_DATA) - diff --git a/data/icons/24x24/panel/panel-dummy.png b/data/icons/24x24/panel/panel-dummy.png deleted file mode 100644 index e69de29..0000000 diff --git a/data/icons/32x32/Makefile.am b/data/icons/32x32/Makefile.am deleted file mode 100644 index 4ca175a..0000000 --- a/data/icons/32x32/Makefile.am +++ /dev/null @@ -1 +0,0 @@ -SUBDIRS = panel diff --git a/data/icons/32x32/panel/Makefile.am b/data/icons/32x32/panel/Makefile.am deleted file mode 100644 index 5fb5210..0000000 --- a/data/icons/32x32/panel/Makefile.am +++ /dev/null @@ -1,8 +0,0 @@ - -iconsdir = $(pkgdatadir)/icons/hicolor/32x32/panel - -icons_DATA = \ - panel-dummy.png - -EXTRA_DIST = $(icons_DATA) - diff --git a/data/icons/32x32/panel/panel-dummy.png b/data/icons/32x32/panel/panel-dummy.png deleted file mode 100644 index e69de29..0000000 diff --git a/data/icons/48x48/Makefile.am b/data/icons/48x48/Makefile.am deleted file mode 100644 index 4ca175a..0000000 --- a/data/icons/48x48/Makefile.am +++ /dev/null @@ -1 +0,0 @@ -SUBDIRS = panel diff --git a/data/icons/48x48/panel/Makefile.am b/data/icons/48x48/panel/Makefile.am deleted file mode 100644 index 32ab766..0000000 --- a/data/icons/48x48/panel/Makefile.am +++ /dev/null @@ -1,8 +0,0 @@ - -iconsdir = $(pkgdatadir)/icons/hicolor/48x48/panel - -icons_DATA = \ - panel-dummy.png - -EXTRA_DIST = $(icons_DATA) - diff --git a/data/icons/48x48/panel/panel-dummy.png b/data/icons/48x48/panel/panel-dummy.png deleted file mode 100644 index e69de29..0000000 diff --git a/data/icons/Makefile.am b/data/icons/Makefile.am deleted file mode 100644 index 17dca13..0000000 --- a/data/icons/Makefile.am +++ /dev/null @@ -1,15 +0,0 @@ -SUBDIRS = scalable 16x16 22x22 24x24 32x32 48x48 - -gtk_update_icon_cache = gtk-update-icon-cache -f -t $(pkgdatadir)/icons/hicolor - -install-data-hook: update-icon-cache -uninstall-hook: update-icon-cache -update-icon-cache: - @-if test -z "$(DESTDIR)"; then \ - echo "Updating Gtk icon cache."; \ - $(gtk_update_icon_cache); \ - else \ - echo "*** Icon cache not updated. After (un)install, run this:"; \ - echo "*** $(gtk_update_icon_cache)"; \ - fi - diff --git a/data/icons/scalable/Makefile.am b/data/icons/scalable/Makefile.am deleted file mode 100644 index 4ca175a..0000000 --- a/data/icons/scalable/Makefile.am +++ /dev/null @@ -1 +0,0 @@ -SUBDIRS = panel diff --git a/data/icons/scalable/panel/Makefile.am b/data/icons/scalable/panel/Makefile.am deleted file mode 100644 index a907e42..0000000 --- a/data/icons/scalable/panel/Makefile.am +++ /dev/null @@ -1,8 +0,0 @@ - -iconsdir = $(pkgdatadir)/icons/hicolor/scalable/panel - -icons_DATA = \ - panel-dummy.svg - -EXTRA_DIST = $(icons_DATA) - diff --git a/data/icons/scalable/panel/panel-dummy.svg b/data/icons/scalable/panel/panel-dummy.svg deleted file mode 100644 index 3e8fcac..0000000 --- a/data/icons/scalable/panel/panel-dummy.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/debian/indicator-applet.install b/debian/indicator-applet.install index 24d9438..428774c 100644 --- a/debian/indicator-applet.install +++ b/debian/indicator-applet.install @@ -1,4 +1,3 @@ debian/tmp/etc debian/tmp/usr/lib/bonobo debian/tmp/usr/lib/indicator-applet -debian/tmp/usr/share/indicator-applet -- cgit v1.2.3