aboutsummaryrefslogtreecommitdiff
path: root/tests/test-libappindicator-dbus-server.c
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2010-02-11 10:36:56 -0600
committerTed Gould <ted@gould.cx>2010-02-11 10:36:56 -0600
commitbbebb7a3907a59a1ef475dc9d5c8e65c1e1595d6 (patch)
tree696dbbeaeb19a90f291c4b5a0fa464cbbf39a591 /tests/test-libappindicator-dbus-server.c
parenta94ef5f210aad3624463e8edf40cc2f0499033fa (diff)
parent14abe9ad1ff1b09526b6f0f6410c2783e6dbd501 (diff)
downloadayatana-indicator-application-bbebb7a3907a59a1ef475dc9d5c8e65c1e1595d6.tar.gz
ayatana-indicator-application-bbebb7a3907a59a1ef475dc9d5c8e65c1e1595d6.tar.bz2
ayatana-indicator-application-bbebb7a3907a59a1ef475dc9d5c8e65c1e1595d6.zip
* Upstream release 0.0.13
* Changing the menu property to be a proper DBus object path * Make object paths unique by including application IDs in them
Diffstat (limited to 'tests/test-libappindicator-dbus-server.c')
-rw-r--r--tests/test-libappindicator-dbus-server.c14
1 files changed, 10 insertions, 4 deletions
diff --git a/tests/test-libappindicator-dbus-server.c b/tests/test-libappindicator-dbus-server.c
index cc072aa..76f0e50 100644
--- a/tests/test-libappindicator-dbus-server.c
+++ b/tests/test-libappindicator-dbus-server.c
@@ -23,7 +23,7 @@ with this program. If not, see <http://www.gnu.org/licenses/>.
#include <dbus/dbus-glib.h>
#include <dbus/dbus-glib-lowlevel.h>
-#include <glib.h>
+#include <gtk/gtk.h>
#include <libappindicator/app-indicator.h>
#include "test-defines.h"
@@ -39,13 +39,19 @@ kill_func (gpointer userdata)
gint
main (gint argc, gchar * argv[])
{
- g_type_init();
+ gtk_init(&argc, &argv);
g_debug("DBus ID: %s", dbus_connection_get_server_id(dbus_g_connection_get_connection(dbus_g_bus_get(DBUS_BUS_SESSION, NULL))));
AppIndicator * ci = app_indicator_new (TEST_ID, TEST_ICON_NAME, TEST_CATEGORY);
- app_indicator_set_status (ci, TEST_STATE);
- app_indicator_set_attention_icon (ci, TEST_ATTENTION_ICON_NAME);
+ app_indicator_set_status (ci, TEST_STATE);
+ app_indicator_set_attention_icon (ci, TEST_ATTENTION_ICON_NAME);
+
+ 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_seconds(2, kill_func, NULL);