diff options
author | Matthias Clasen <mclasen@redhat.com> | 2009-06-20 13:53:32 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2009-06-20 13:53:32 -0400 |
commit | 374aa049545516f1fd4dcdf43325fb992400129d (patch) | |
tree | 2b1e0e34cc0e4a5bfe417562b4595a42115905bb /gtk/gtkstatusicon.h | |
parent | 3d527afadb802c9027365480023f8aeda18e7ad7 (diff) | |
download | gtk+-374aa049545516f1fd4dcdf43325fb992400129d.tar.gz |
Add a title property to GtkStatusIcon
This can be used to give ATs a string to display for tray icons.
See bug 585802.
Diffstat (limited to 'gtk/gtkstatusicon.h')
-rwxr-xr-x | gtk/gtkstatusicon.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk/gtkstatusicon.h b/gtk/gtkstatusicon.h index 19db689a30..e850c64c79 100755 --- a/gtk/gtkstatusicon.h +++ b/gtk/gtkstatusicon.h @@ -120,6 +120,9 @@ void gtk_status_icon_set_tooltip_text (GtkStatusIcon *st const gchar *text); void gtk_status_icon_set_tooltip_markup (GtkStatusIcon *status_icon, const gchar *markup); +void gtk_status_icon_set_title (GtkStatusIcon *status_icon, + const gchar *title); +G_CONST_RETURN gchar *gtk_status_icon_get_title (GtkStatusIcon *status_icon); void gtk_status_icon_set_visible (GtkStatusIcon *status_icon, gboolean visible); gboolean gtk_status_icon_get_visible (GtkStatusIcon *status_icon); |