diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-01-17 23:03:43 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-01-17 23:03:43 +0800 |
commit | 57632da0b1bc6d3128dcd1af371996bdd888cec8 (patch) | |
tree | 933773f52e49f792d2f57b1f173566eb016fb52c /libempathy-gtk/empathy-status-icon.c | |
parent | 24cf25ebdc9dd603906f9dd4e0b7e81f047126c6 (diff) | |
download | gsoc2013-empathy-57632da0b1bc6d3128dcd1af371996bdd888cec8.tar gsoc2013-empathy-57632da0b1bc6d3128dcd1af371996bdd888cec8.tar.gz gsoc2013-empathy-57632da0b1bc6d3128dcd1af371996bdd888cec8.tar.bz2 gsoc2013-empathy-57632da0b1bc6d3128dcd1af371996bdd888cec8.tar.lz gsoc2013-empathy-57632da0b1bc6d3128dcd1af371996bdd888cec8.tar.xz gsoc2013-empathy-57632da0b1bc6d3128dcd1af371996bdd888cec8.tar.zst gsoc2013-empathy-57632da0b1bc6d3128dcd1af371996bdd888cec8.zip |
Show/Hide main window when chaning corresponding gcong key.
svn path=/trunk/; revision=573
Diffstat (limited to 'libempathy-gtk/empathy-status-icon.c')
-rw-r--r-- | libempathy-gtk/empathy-status-icon.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-status-icon.c b/libempathy-gtk/empathy-status-icon.c index e760305b1..24132e655 100644 --- a/libempathy-gtk/empathy-status-icon.c +++ b/libempathy-gtk/empathy-status-icon.c @@ -154,6 +154,19 @@ status_icon_notify_use_nm_cb (EmpathyConf *conf, } static void +status_icon_notify_visibility_cb (EmpathyConf *conf, + const gchar *key, + gpointer user_data) +{ + EmpathyStatusIcon *icon = user_data; + gboolean hidden = FALSE; + + if (empathy_conf_get_bool (conf, key, &hidden)) { + status_icon_set_visibility (icon, !hidden, FALSE); + } +} + +static void empathy_status_icon_class_init (EmpathyStatusIconClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); @@ -193,6 +206,11 @@ empathy_status_icon_init (EmpathyStatusIcon *icon) empathy_idle_set_auto_away (priv->idle, TRUE); empathy_idle_set_use_nm (priv->idle, use_nm); + /* make icon listen and respond to MAIN_WINDOW_HIDDEN changes */ + empathy_conf_notify_add (empathy_conf_get (), + EMPATHY_PREFS_UI_MAIN_WINDOW_HIDDEN, + status_icon_notify_visibility_cb, + icon); status_icon_create_menu (icon); status_icon_idle_notify_cb (icon); |