Unity 8
platform.cpp
1 /*
2  * Copyright (C) 2015 Canonical, Ltd.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 3.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #include "platform.h"
18 
19 #include <QDBusConnection>
20 
21 Platform::Platform(QObject *parent)
22  : QObject(parent)
23 {
24  QMetaObject::invokeMethod(this, "init");
25 }
26 
27 void Platform::init()
28 {
29  QDBusInterface iface("org.freedesktop.hostname1", "/org/freedesktop/hostname1", "org.freedesktop.hostname1",
30  QDBusConnection::systemBus(), this);
31  QDBusInterface seatIface("org.freedesktop.login1", "/org/freedesktop/login1/seat/self", "org.freedesktop.login1.Seat",
32  QDBusConnection::systemBus(), this);
33 
34  m_chassis = iface.property("Chassis").toString();
35  m_isPC = (m_chassis == "desktop" || m_chassis == "laptop" || m_chassis == "server");
36  m_isMultiSession = seatIface.property("CanMultiSession").toBool() && seatIface.property("CanGraphical").toBool();
37 }
38 
39 QString Platform::chassis() const
40 {
41  return m_chassis;
42 }
43 
44 bool Platform::isPC() const
45 {
46  return m_isPC;
47 }
48 
49 bool Platform::isMultiSession() const
50 {
51  return m_isMultiSession;
52 }
QString chassis
Definition: platform.h:36
bool isPC
Definition: platform.h:40
bool isMultiSession
Definition: platform.h:44