diff options
author | Ted Gould <ted@gould.cx> | 2010-12-08 12:26:41 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-12-08 12:26:41 -0600 |
commit | 6d73d549745eddea81b38c7effa0f48509fcbb8d (patch) | |
tree | e140eb6cc87b848cc9f0fa60d5eb59f664dc89a6 /example | |
parent | 142f01363ed272719f5cb89bd65f260c3685f3e3 (diff) | |
parent | bbd727e1c7b0bcd93d902b91a1058d44535f8f05 (diff) | |
download | libayatana-appindicator-6d73d549745eddea81b38c7effa0f48509fcbb8d.tar.gz libayatana-appindicator-6d73d549745eddea81b38c7effa0f48509fcbb8d.tar.bz2 libayatana-appindicator-6d73d549745eddea81b38c7effa0f48509fcbb8d.zip |
Adding a test in the simple client for full icon path as people are using it now
Diffstat (limited to 'example')
-rw-r--r-- | example/Makefile.am | 4 | ||||
-rw-r--r-- | example/simple-client-test-icon.png | bin | 0 -> 3310 bytes | |||
-rw-r--r-- | example/simple-client.c | 20 |
3 files changed, 24 insertions, 0 deletions
diff --git a/example/Makefile.am b/example/Makefile.am index ae468f7..e23e08d 100644 --- a/example/Makefile.am +++ b/example/Makefile.am @@ -11,9 +11,13 @@ simple_client_SOURCES = \ simple_client_CFLAGS = \ $(LIBRARY_CFLAGS) \ + -DLOCAL_ICON="\"$(abs_srcdir)/simple-client-test-icon.png\"" \ -Wall -Werror \ -I$(top_srcdir)/src simple_client_LDADD = \ $(LIBRARY_LIBS) \ $(top_builddir)/src/libappindicator.la + +EXTRA_DIST = \ + simple-client-test-icon.png diff --git a/example/simple-client-test-icon.png b/example/simple-client-test-icon.png Binary files differnew file mode 100644 index 0000000..30dbb9d --- /dev/null +++ b/example/simple-client-test-icon.png diff --git a/example/simple-client.c b/example/simple-client.c index f2fac6f..734aff6 100644 --- a/example/simple-client.c +++ b/example/simple-client.c @@ -60,6 +60,20 @@ activate_clicked_cb (GtkWidget *widget, gpointer data) } static void +local_icon_toggle_cb (GtkWidget *widget, gpointer data) +{ + AppIndicator * ci = APP_INDICATOR(data); + + if (gtk_check_menu_item_get_active(GTK_CHECK_MENU_ITEM(widget))) { + app_indicator_set_icon(ci, LOCAL_ICON); + } else { + app_indicator_set_icon(ci, "indicator-messages"); + } + + return; +} + +static void item_clicked_cb (GtkWidget *widget, gpointer data) { const gchar *text = (const gchar *)data; @@ -192,6 +206,12 @@ main (int argc, char ** argv) gtk_menu_shell_append (GTK_MENU_SHELL (menu), item); gtk_widget_show(item); + item = gtk_check_menu_item_new_with_label ("Set Local Icon"); + g_signal_connect (item, "activate", + G_CALLBACK (local_icon_toggle_cb), ci); + gtk_menu_shell_append (GTK_MENU_SHELL (menu), item); + gtk_widget_show(item); + app_indicator_set_menu (ci, GTK_MENU (menu)); mainloop = g_main_loop_new(NULL, FALSE); |