Unity 8
dbusunitysessionservice.cpp
1 /*
2  * Copyright (C) 2014 Canonical, Ltd.
3  *
4  * This program is free software: you can redistribute it and/or modify it under
5  * the terms of the GNU Lesser General Public License version 3, as published by
6  * the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful, but WITHOUT
9  * ANY WARRANTY; without even the implied warranties of MERCHANTABILITY,
10  * SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11  * Lesser General Public License for more details.
12  *
13  * You should have received a copy of the GNU Lesser General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 // local
18 #include "dbusunitysessionservice.h"
19 
20 // Qt
21 #include <QDBusConnection>
22 #include <QDBusInterface>
23 
24 DBusUnitySessionService::DBusUnitySessionService()
25  : UnityDBusObject("/com/canonical/Unity/Session", "com.canonical.Unity")
26 {
27 }
28 
29 DBusUnitySessionService::~DBusUnitySessionService()
30 {
31 }
32 
34 {
35  Q_EMIT logoutReady();
36 }
37 
39 {
40  Q_EMIT logoutRequested(false);
41 }
42 
44 {
45  QDBusConnection connection = QDBusConnection::systemBus();
46  QDBusInterface iface1 ("org.freedesktop.login1",
47  "/org/freedesktop/login1",
48  "org.freedesktop.login1.Manager",
49  connection);
50 
51  iface1.call("Reboot", false);
52 }
53 
55 {
56  Q_EMIT rebootRequested(false);
57 }
58 
60 {
61  QDBusConnection connection = QDBusConnection::systemBus();
62  QDBusInterface iface1 ("org.freedesktop.login1",
63  "/org/freedesktop/login1",
64  "org.freedesktop.login1.Manager",
65  connection);
66 
67  iface1.call("PowerOff", false);
68 }
69 
71 {
72  Q_EMIT shutdownRequested(false);
73 }
void shutdownRequested(bool have_inhibitors)
Q_SCRIPTABLE void RequestShutdown()
void logoutRequested(bool have_inhibitors)
void rebootRequested(bool have_inhibitors)