diff options
author | Ted Gould <ted@canonical.com> | 2009-11-23 15:44:18 -0600 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-11-23 15:44:18 -0600 |
commit | 62f0373e2b8c8bb54fd4c72182d40622fad1215b (patch) | |
tree | a3297bb526ccb0e751c7ea7de0349433700dc840 /example | |
parent | 2c04418795e644efafc0204656dd575844ba0976 (diff) | |
download | ayatana-indicator-application-62f0373e2b8c8bb54fd4c72182d40622fad1215b.tar.gz ayatana-indicator-application-62f0373e2b8c8bb54fd4c72182d40622fad1215b.tar.bz2 ayatana-indicator-application-62f0373e2b8c8bb54fd4c72182d40622fad1215b.zip |
Making a simple client
Diffstat (limited to 'example')
-rw-r--r-- | example/Makefile.am | 19 | ||||
-rw-r--r-- | example/simple-client.c | 34 |
2 files changed, 53 insertions, 0 deletions
diff --git a/example/Makefile.am b/example/Makefile.am new file mode 100644 index 0000000..954b04e --- /dev/null +++ b/example/Makefile.am @@ -0,0 +1,19 @@ + +check_PROGRAMS = \ + simple-client + +######################################### +## simple-client +######################################### + +simple_client_SOURCES = \ + simple-client.c + +simple_client_CFLAGS = \ + $(INDICATOR_CFLAGS) \ + -Wall -Werror \ + -I$(top_srcdir)/src + +simple_client_LDADD = \ + $(INDICATOR_LIBS) \ + $(top_builddir)/src/libcustomindicator.la diff --git a/example/simple-client.c b/example/simple-client.c new file mode 100644 index 0000000..1c29647 --- /dev/null +++ b/example/simple-client.c @@ -0,0 +1,34 @@ + +#include "libcustomindicator/custom-indicator.h" +#include "libdbusmenu-glib/server.h" +#include "libdbusmenu-glib/menuitem.h" + +GMainLoop * mainloop = NULL; + +int +main (int argc, char ** argv) +{ + g_type_init(); + + CustomIndicator * ci = CUSTOM_INDICATOR(g_object_new(CUSTOM_INDICATOR_TYPE, NULL)); + g_assert(ci != NULL); + + custom_indicator_set_id(ci, "example-simple-client"); + custom_indicator_set_category(ci, CUSTOM_INDICATOR_CATEGORY_APPLICATION_STATUS); + custom_indicator_set_status(ci, CUSTOM_INDICATOR_STATUS_ACTIVE); + custom_indicator_set_icon(ci, "indicator-messages"); + custom_indicator_set_attention_icon(ci, "indicator-messages-new"); + + DbusmenuMenuitem * root = dbusmenu_menuitem_new(); + dbusmenu_menuitem_property_set(root, "label", "Root"); + + DbusmenuServer * menuservice = dbusmenu_server_new ("/need/a/menu/path"); + dbusmenu_server_set_root(menuservice, root); + + custom_indicator_set_menu(ci, menuservice); + + mainloop = g_main_loop_new(NULL, FALSE); + g_main_loop_run(mainloop); + + return 0; +} |