diff options
author | Ted Gould <ted@gould.cx> | 2010-03-16 10:03:09 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-03-16 10:03:09 -0500 |
commit | 4103fca23c5dd1668e9685785b8da8dcafc72df7 (patch) | |
tree | 62b7e5180f8a60663d3836c0a0f867ad436ee76f /src/gconf-helper.h | |
parent | 9b55c3d958f7fe43e92c9e9de4b955a5eac680e7 (diff) | |
parent | ae2c94b40826bfa0274a3eae8ae515d99b07adb5 (diff) | |
download | ayatana-indicator-session-4103fca23c5dd1668e9685785b8da8dcafc72df7.tar.gz ayatana-indicator-session-4103fca23c5dd1668e9685785b8da8dcafc72df7.tar.bz2 ayatana-indicator-session-4103fca23c5dd1668e9685785b8da8dcafc72df7.zip |
Adding a GConf key for showing the logout item.
Diffstat (limited to 'src/gconf-helper.h')
-rw-r--r-- | src/gconf-helper.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/gconf-helper.h b/src/gconf-helper.h index 951bb0f..6f9bcb7 100644 --- a/src/gconf-helper.h +++ b/src/gconf-helper.h @@ -33,8 +33,9 @@ with this program. If not, see <http://www.gnu.org/licenses/>. #include <libdbusmenu-glib/server.h> #include <libdbusmenu-glib/menuitem.h> -#define SUPPRESS_KEY "/apps/indicator-session/suppress_logout_restart_shutdown" -#define GLOBAL_DIR "/apps/indicator-session" +#define GLOBAL_DIR "/apps/indicator-session" +#define SUPPRESS_KEY GLOBAL_DIR "/suppress_logout_restart_shutdown" +#define LOGOUT_KEY GLOBAL_DIR "/suppress_logout_menuitem" typedef struct _RestartShutdownLogoutMenuItems { @@ -44,7 +45,8 @@ typedef struct _RestartShutdownLogoutMenuItems } RestartShutdownLogoutMenuItems; -void update_menu_entries(RestartShutdownLogoutMenuItems*); +void update_menu_entries(RestartShutdownLogoutMenuItems*, DbusmenuMenuitem * logoutitem); gboolean supress_confirmations (void); +gboolean show_logout (void); #endif /* __GCONF_HELPER__ */ |