diff options
author | Ted Gould <ted@gould.cx> | 2009-11-24 21:50:50 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2009-11-24 21:50:50 -0600 |
commit | f0fcaa6a2ae71510adc036335c4f84ae6bf33f4c (patch) | |
tree | dc31888f2106019130da16fb1af5e1bba63bb46b /example/simple-client.c | |
parent | f23c54ff5fee5587c31ecb8bf176b58fa3d4be1d (diff) | |
parent | 8c7ce8faffe025e5c5cf8f4f23d9cf97cf719533 (diff) | |
download | libayatana-appindicator-f0fcaa6a2ae71510adc036335c4f84ae6bf33f4c.tar.gz libayatana-appindicator-f0fcaa6a2ae71510adc036335c4f84ae6bf33f4c.tar.bz2 libayatana-appindicator-f0fcaa6a2ae71510adc036335c4f84ae6bf33f4c.zip |
A bunch of code.
Diffstat (limited to 'example/simple-client.c')
-rw-r--r-- | example/simple-client.c | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/example/simple-client.c b/example/simple-client.c new file mode 100644 index 0000000..f1f53e1 --- /dev/null +++ b/example/simple-client.c @@ -0,0 +1,41 @@ + +#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(); + + DbusmenuMenuitem * item = dbusmenu_menuitem_new(); + dbusmenu_menuitem_property_set(item, DBUSMENU_MENUITEM_PROP_LABEL, "Item 1"); + dbusmenu_menuitem_child_append(root, item); + + item = dbusmenu_menuitem_new(); + dbusmenu_menuitem_property_set(item, DBUSMENU_MENUITEM_PROP_LABEL, "Item 2"); + dbusmenu_menuitem_child_append(root, item); + + 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; +} |