diff options
author | Marco Trevisan (Treviño) <mail@3v1n0.net> | 2013-03-05 03:10:49 +0100 |
---|---|---|
committer | Marco Trevisan (Treviño) <mail@3v1n0.net> | 2013-03-05 03:10:49 +0100 |
commit | f0cdd99a95848a7c2ca610083477a0a0a6bf9788 (patch) | |
tree | 443ee90673cbad6bd4eab27ceed85e145c93b579 /src | |
parent | 7f88c35d7ef9d504dc6b78769bf084fafbbfbcdf (diff) | |
download | ayatana-indicator-session-f0cdd99a95848a7c2ca610083477a0a0a6bf9788.tar.gz ayatana-indicator-session-f0cdd99a95848a7c2ca610083477a0a0a6bf9788.tar.bz2 ayatana-indicator-session-f0cdd99a95848a7c2ca610083477a0a0a6bf9788.zip |
SessionMenuMgr: call SessionManager Logout method in shell mode
Diffstat (limited to 'src')
-rw-r--r-- | src/session-menu-mgr.c | 77 |
1 files changed, 49 insertions, 28 deletions
diff --git a/src/session-menu-mgr.c b/src/session-menu-mgr.c index 7e87c39..35f1b70 100644 --- a/src/session-menu-mgr.c +++ b/src/session-menu-mgr.c @@ -135,6 +135,7 @@ static void action_func_lock (SessionMenuMgr *); static void action_func_suspend (SessionMenuMgr *); static void action_func_hibernate (SessionMenuMgr *); static void action_func_shutdown (SessionMenuMgr *); +static void action_func_logout (SessionMenuMgr *); static void action_func_switch_to_lockscreen (SessionMenuMgr *); static void action_func_switch_to_greeter (SessionMenuMgr *); static void action_func_switch_to_guest (SessionMenuMgr *); @@ -549,7 +550,7 @@ build_session_menuitems (SessionMenuMgr* mgr) mi = mgr->logout_mi = mi_new (_("Log Out\342\200\246")); dbusmenu_menuitem_child_append (mgr->top_mi, mi); g_signal_connect_swapped (mi, DBUSMENU_MENUITEM_SIGNAL_ITEM_ACTIVATED, - G_CALLBACK(action_func_spawn_async), CMD_LOGOUT); + G_CALLBACK(action_func_logout), mgr); mi = mgr->suspend_mi = mi_new (_("Suspend")); dbusmenu_menuitem_child_append (mgr->top_mi, mi); @@ -1171,38 +1172,44 @@ action_func_hibernate (SessionMenuMgr * mgr) } static void -action_func_shutdown (SessionMenuMgr * mgr) +call_session_manager_method (const gchar * method_name, GVariant * parameters) { - if (mgr->shell_mode) + GError * error = NULL; + GDBusProxy * proxy = g_dbus_proxy_new_for_bus_sync ( + G_BUS_TYPE_SESSION, + G_DBUS_PROXY_FLAGS_NONE, + NULL, + "org.gnome.SessionManager", + "/org/gnome/SessionManager", + "org.gnome.SessionManager", + NULL, + &error); + + if (error == NULL) { - GError * error = NULL; - GDBusProxy * proxy = g_dbus_proxy_new_for_bus_sync ( - G_BUS_TYPE_SESSION, - G_DBUS_PROXY_FLAGS_NONE, - NULL, - "org.gnome.SessionManager", - "/org/gnome/SessionManager", - "org.gnome.SessionManager", - NULL, - &error); + g_dbus_proxy_call_sync (proxy, method_name, parameters, + G_DBUS_CALL_FLAGS_NONE, -1, NULL, + &error); + } - if (error == NULL) - { - /* We call 'Reboot' method instead of 'Shutdown' because - * Unity SessionManager handles the Shutdown request as a more - * general request as the default SessionManager dialog would do */ - g_dbus_proxy_call_sync (proxy, "Reboot", - NULL, G_DBUS_CALL_FLAGS_NONE, -1, NULL, - &error); - } + if (error != NULL) + { + g_warning ("Error shutting down: %s", error->message); + g_clear_error (&error); + } - if (error != NULL) - { - g_warning ("Error shutting down: %s", error->message); - g_clear_error (&error); - } + g_clear_object (&proxy); +} - g_clear_object (&proxy); +static void +action_func_shutdown (SessionMenuMgr * mgr) +{ + if (mgr->shell_mode) + { + /* We call 'Reboot' method instead of 'Shutdown' because + * Unity SessionManager handles the Shutdown request as a more + * general request as the default SessionManager dialog would do */ + call_session_manager_method ("Reboot", NULL); } else { @@ -1210,6 +1217,20 @@ action_func_shutdown (SessionMenuMgr * mgr) } } +static void +action_func_logout (SessionMenuMgr * mgr) +{ + if (mgr->shell_mode) + { + guint interactive_mode = 0; + call_session_manager_method ("Logout", g_variant_new ("(u)", interactive_mode)); + } + else + { + action_func_spawn_async (CMD_LOGOUT); + } +} + /*** **** ***/ |