Unity 8
DBusGreeterList.h
1 /*
2  * Copyright (C) 2013 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_DBUSGREETERLIST_H
18 #define UNITY_DBUSGREETERLIST_H
19 
20 #include "unitydbusobject.h"
21 #include <QDBusConnection>
22 
23 class Greeter;
24 
28 class DBusGreeterList : public UnityDBusObject
29 {
30  Q_OBJECT
31  Q_CLASSINFO("D-Bus Interface", "com.canonical.UnityGreeter.List")
32 
33  Q_PROPERTY(QString ActiveEntry READ GetActiveEntry WRITE SetActiveEntry NOTIFY EntrySelected) // since 14.04
34  Q_PROPERTY(bool EntryIsLocked READ entryIsLocked NOTIFY entryIsLockedChanged) // since 14.04
35 
36 public:
37  explicit DBusGreeterList(Greeter *greeter, const QString &path);
38 
39  Q_SCRIPTABLE void SetActiveEntry(const QString &entry); // since 13.04
40  Q_SCRIPTABLE QString GetActiveEntry() const; // since 13.10
41 
42  bool entryIsLocked() const;
43 
44 Q_SIGNALS:
45  Q_SCRIPTABLE void EntrySelected(const QString &entry); // since 13.10
46 
47  void entryIsLockedChanged();
48 
49 private Q_SLOTS:
50  void authenticationUserChangedHandler(const QString &user);
51  void promptlessChangedHandler();
52 
53 private:
54  Greeter *m_greeter;
55 };
56 
57 #endif