aboutsummaryrefslogtreecommitdiff
path: root/tests/test-simple-app.c
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2009-12-02 11:57:06 -0600
committerTed Gould <ted@gould.cx>2009-12-02 11:57:06 -0600
commit29ef598378429811715f727295f40bbcdb3fa092 (patch)
tree6b40b05a5679d50b2128d80bea770cd8f91fa3a5 /tests/test-simple-app.c
parent71797b37811381cfb48e711348a1259f02bdd125 (diff)
parent69448c00ed4dec738e32cc78f916a110fcd6d3a7 (diff)
downloadayatana-indicator-application-29ef598378429811715f727295f40bbcdb3fa092.tar.gz
ayatana-indicator-application-29ef598378429811715f727295f40bbcdb3fa092.tar.bz2
ayatana-indicator-application-29ef598378429811715f727295f40bbcdb3fa092.zip
Implementing the service and having the indicator and app
library start using it.
Diffstat (limited to 'tests/test-simple-app.c')
-rw-r--r--tests/test-simple-app.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/test-simple-app.c b/tests/test-simple-app.c
new file mode 100644
index 0000000..9e779ec
--- /dev/null
+++ b/tests/test-simple-app.c
@@ -0,0 +1,32 @@
+
+#include <dbus/dbus-glib.h>
+#include <dbus/dbus-glib-lowlevel.h>
+#include <glib.h>
+#include <libcustomindicator/custom-indicator.h>
+
+static GMainLoop * mainloop = NULL;
+
+int
+main (int argc, char ** argv)
+{
+ g_type_init();
+
+ DbusmenuServer * dms = dbusmenu_server_new("/menu");
+ DbusmenuMenuitem * dmi = dbusmenu_menuitem_new();
+ dbusmenu_menuitem_property_set(dmi, "label", "Bob");
+
+ CustomIndicator * ci = CUSTOM_INDICATOR(g_object_new(CUSTOM_INDICATOR_TYPE,
+ "id", "test-application",
+ "status-enum", CUSTOM_INDICATOR_STATUS_ACTIVE,
+ "icon-name", "system-shutdown",
+ "menu-object", dms,
+ NULL));
+
+ mainloop = g_main_loop_new(NULL, FALSE);
+ g_main_loop_run(mainloop);
+
+ g_object_unref(G_OBJECT(ci));
+ g_debug("Quiting");
+
+ return 0;
+}