From: Xavier Claessens Date: Thu, 17 Jan 2008 15:03:43 +0000 (+0000) Subject: Show/Hide main window when chaning corresponding gcong key. X-Git-Url: https://git.0d.be/?p=empathy.git;a=commitdiff_plain;h=57632da0b1bc6d3128dcd1af371996bdd888cec8 Show/Hide main window when chaning corresponding gcong key. svn path=/trunk/; revision=573 --- diff --git a/libempathy-gtk/empathy-status-icon.c b/libempathy-gtk/empathy-status-icon.c index e760305b..24132e65 100644 --- a/libempathy-gtk/empathy-status-icon.c +++ b/libempathy-gtk/empathy-status-icon.c @@ -153,6 +153,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) { @@ -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);