diff options
author | Ted Gould <ted@gould.cx> | 2011-02-24 15:34:16 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-02-24 15:34:16 -0600 |
commit | ce7b22d25a6ee30dc55df5022c72652ad19e406a (patch) | |
tree | 30d40ab958ba7e79a8e66e70d42b1616104a21b3 /example | |
parent | abccdd7479fb3a5c1e51e52f91fbe7cada89bfd6 (diff) | |
parent | d21b676e9fe3a9b7f52465cd75d833ce05a6c7a7 (diff) | |
download | libayatana-appindicator-ce7b22d25a6ee30dc55df5022c72652ad19e406a.tar.gz libayatana-appindicator-ce7b22d25a6ee30dc55df5022c72652ad19e406a.tar.bz2 libayatana-appindicator-ce7b22d25a6ee30dc55df5022c72652ad19e406a.zip |
Add the ability to set accessible descriptions for the icon and attention icon.
Diffstat (limited to 'example')
-rw-r--r-- | example/simple-client.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/example/simple-client.c b/example/simple-client.c index 1cf06dc..9e63e14 100644 --- a/example/simple-client.c +++ b/example/simple-client.c @@ -65,9 +65,9 @@ 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); + app_indicator_set_icon_full(ci, LOCAL_ICON, "Local Icon"); } else { - app_indicator_set_icon(ci, "indicator-messages"); + app_indicator_set_icon_full(ci, "indicator-messages", "System Icon"); } return; @@ -165,7 +165,7 @@ main (int argc, char ** argv) g_assert (G_IS_OBJECT (ci)); app_indicator_set_status (ci, APP_INDICATOR_STATUS_ACTIVE); - app_indicator_set_attention_icon(ci, "indicator-messages-new"); + app_indicator_set_attention_icon_full(ci, "indicator-messages-new", "System Messages Icon Highlighted"); app_indicator_set_label (ci, "1%", "100%"); g_signal_connect (ci, "scroll-event", |