diff options
author | Ted Gould <ted@gould.cx> | 2010-03-16 14:47:59 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-03-16 14:47:59 -0500 |
commit | 1e43b72a71addb0dd45b0e7ea5dc195b0b250196 (patch) | |
tree | f2beb19767afa62ec082f540f97c1f53e1f85dce /src/gconf-helper.c | |
parent | 0cfa0d154f3e3fcea6c4d0c946fa665c0b12aa9a (diff) | |
parent | 87d0374245134a7a723ee6dd8a1a1aec90ca4776 (diff) | |
download | ayatana-indicator-session-1e43b72a71addb0dd45b0e7ea5dc195b0b250196.tar.gz ayatana-indicator-session-1e43b72a71addb0dd45b0e7ea5dc195b0b250196.tar.bz2 ayatana-indicator-session-1e43b72a71addb0dd45b0e7ea5dc195b0b250196.zip |
Sync up to trunk.
Diffstat (limited to 'src/gconf-helper.c')
-rw-r--r-- | src/gconf-helper.c | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/src/gconf-helper.c b/src/gconf-helper.c index 5efc439..588b11c 100644 --- a/src/gconf-helper.c +++ b/src/gconf-helper.c @@ -43,6 +43,14 @@ supress_confirmations (void) { return gconf_client_get_bool (gconf_client, SUPPRESS_KEY, NULL) ; } +gboolean +show_logout (void) { + if(!gconf_client) { + gconf_client = gconf_client_get_default (); + } + return !gconf_client_get_bool (gconf_client, LOGOUT_KEY, NULL) ; +} + static void update_menu_entries_callback (GConfClient *client, guint cnxn_id, GConfEntry *entry, gpointer data) { RestartShutdownLogoutMenuItems * restart_shutdown_logout_mi = (RestartShutdownLogoutMenuItems*) data; GConfValue * value = gconf_entry_get_value (entry); @@ -61,8 +69,19 @@ static void update_menu_entries_callback (GConfClient *client, guint cnxn_id, GC } } +static void +update_logout_callback (GConfClient *client, guint cnxn_id, GConfEntry *entry, gpointer data) { + DbusmenuMenuitem * mi = (DbusmenuMenuitem*) data; + GConfValue * value = gconf_entry_get_value (entry); + const gchar * key = gconf_entry_get_key (entry); + + if(g_strcmp0 (key, LOGOUT_KEY) == 0) { + dbusmenu_menuitem_property_set_bool(mi, DBUSMENU_MENUITEM_PROP_VISIBLE, !gconf_value_get_bool(value)); + } +} + void -update_menu_entries(RestartShutdownLogoutMenuItems * restart_shutdown_logout_mi) { +update_menu_entries(RestartShutdownLogoutMenuItems * restart_shutdown_logout_mi, DbusmenuMenuitem * logoutitem) { if(!gconf_client) { gconf_client = gconf_client_get_default (); } @@ -70,5 +89,7 @@ update_menu_entries(RestartShutdownLogoutMenuItems * restart_shutdown_logout_mi) GCONF_CLIENT_PRELOAD_ONELEVEL, NULL); gconf_client_notify_add (gconf_client, SUPPRESS_KEY, update_menu_entries_callback, restart_shutdown_logout_mi, NULL, NULL); + gconf_client_notify_add (gconf_client, LOGOUT_KEY, + update_logout_callback, logoutitem, NULL, NULL); } |