diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2010-02-11 14:44:24 -0500 |
---|---|---|
committer | Ken VanDine <ken.vandine@canonical.com> | 2010-02-11 14:44:24 -0500 |
commit | 4102c4d56e73cab5b733efb9a5a28a4eaed8b81d (patch) | |
tree | c09cebf6b4b84b04fe7a0d31083296258a83f977 /tests/test-libappindicator-status-server.c | |
parent | c9d339ff50253e87e51045acf896a9663f582144 (diff) | |
parent | f7b909ce3b94c2afb8e8b8a31b63f579c8bcb92e (diff) | |
download | libayatana-appindicator-4102c4d56e73cab5b733efb9a5a28a4eaed8b81d.tar.gz libayatana-appindicator-4102c4d56e73cab5b733efb9a5a28a4eaed8b81d.tar.bz2 libayatana-appindicator-4102c4d56e73cab5b733efb9a5a28a4eaed8b81d.zip |
releasing version 0.0.13-0ubuntu10.0.13-0ubuntu1
Diffstat (limited to 'tests/test-libappindicator-status-server.c')
-rw-r--r-- | tests/test-libappindicator-status-server.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/test-libappindicator-status-server.c b/tests/test-libappindicator-status-server.c index 9e58ba9..79b1759 100644 --- a/tests/test-libappindicator-status-server.c +++ b/tests/test-libappindicator-status-server.c @@ -55,7 +55,7 @@ toggle (gpointer userdata) gint main (gint argc, gchar * argv[]) { - g_type_init(); + gtk_init(&argc, &argv); g_usleep(100000); @@ -64,6 +64,12 @@ main (gint argc, gchar * argv[]) AppIndicator * ci = app_indicator_new ("my-id", "my-icon-name", APP_INDICATOR_CATEGORY_APPLICATION_STATUS); app_indicator_set_attention_icon (ci, "my-attention-icon"); + GtkMenu * menu = GTK_MENU(gtk_menu_new()); + GtkMenuItem * item = GTK_MENU_ITEM(gtk_menu_item_new_with_label("Label")); + gtk_menu_shell_append(GTK_MENU_SHELL(menu), GTK_WIDGET(item)); + + app_indicator_set_menu(ci, menu); + g_timeout_add(50, toggle, ci); mainloop = g_main_loop_new(NULL, FALSE); |