diff options
author | Ted Gould <ted@gould.cx> | 2010-08-05 14:45:50 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-08-05 14:45:50 -0500 |
commit | 23e9b56c533e25febfa8c83c353492403cb1b4d5 (patch) | |
tree | bc0ebdf1186845f367eb7a94e3b0fe32b7bbe246 | |
parent | 1f04ea2f899a2922e9c625fd629463c4dd16aff5 (diff) | |
download | libayatana-appindicator-23e9b56c533e25febfa8c83c353492403cb1b4d5.tar.gz libayatana-appindicator-23e9b56c533e25febfa8c83c353492403cb1b4d5.tar.bz2 libayatana-appindicator-23e9b56c533e25febfa8c83c353492403cb1b4d5.zip |
Adding the ability to toggle the label on and off
-rw-r--r-- | example/simple-client.c | 32 |
1 files changed, 29 insertions, 3 deletions
diff --git a/example/simple-client.c b/example/simple-client.c index 20cb281..f2fac6f 100644 --- a/example/simple-client.c +++ b/example/simple-client.c @@ -26,6 +26,21 @@ with this program. If not, see <http://www.gnu.org/licenses/>. GMainLoop * mainloop = NULL; static gboolean active = TRUE; +static gboolean can_haz_label = TRUE; + +static void +label_toggle_cb (GtkWidget * widget, gpointer data) +{ + can_haz_label = !can_haz_label; + + if (can_haz_label) { + gtk_menu_item_set_label(GTK_MENU_ITEM(widget), "Hide label"); + } else { + gtk_menu_item_set_label(GTK_MENU_ITEM(widget), "Show label"); + } + + return; +} static void activate_clicked_cb (GtkWidget *widget, gpointer data) @@ -103,9 +118,13 @@ static gboolean percent_change (gpointer user_data) { percentage = (percentage + 1) % 100; - gchar * percentstr = g_strdup_printf("%d%%", percentage + 1); - app_indicator_set_label (APP_INDICATOR(user_data), percentstr, "100%"); - g_free(percentstr); + if (can_haz_label) { + gchar * percentstr = g_strdup_printf("%d%%", percentage + 1); + app_indicator_set_label (APP_INDICATOR(user_data), percentstr, "100%"); + g_free(percentstr); + } else { + app_indicator_set_label (APP_INDICATOR(user_data), NULL, NULL); + } return TRUE; } @@ -166,6 +185,13 @@ main (int argc, char ** argv) gtk_menu_shell_append (GTK_MENU_SHELL (menu), item); gtk_widget_show(item); + item = gtk_menu_item_new_with_label ("Show label"); + label_toggle_cb(item, ci); + g_signal_connect (item, "activate", + G_CALLBACK (label_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); |