Unity 8
DBusGreeter.h
1 /*
2  * Copyright (C) 2014 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 #ifndef UNITY_DBUSGREETER_H
18 #define UNITY_DBUSGREETER_H
19 
20 #include "unitydbusobject.h"
21 #include <QDBusConnection>
22 
23 class Greeter;
24 
28 class DBusGreeter : public UnityDBusObject
29 {
30  Q_OBJECT
31  Q_CLASSINFO("D-Bus Interface", "com.canonical.UnityGreeter")
32 
33  Q_PROPERTY(bool IsActive READ isActive NOTIFY isActiveChanged) // since 14.10
34 
35 public:
36  explicit DBusGreeter(Greeter *greeter, const QString &path);
37 
38  bool isActive() const;
39  Q_SCRIPTABLE void ShowGreeter(); // temporary, until we split the greeter again
40  Q_SCRIPTABLE void HideGreeter(); // temporary, until we split the greeter again
41 
42 Q_SIGNALS:
43  void isActiveChanged();
44 
45 private Q_SLOTS:
46  void isActiveChangedHandler();
47 
48 private:
49  Greeter *m_greeter;
50 };
51 
52 #endif