Lomiri
Loading...
Searching...
No Matches
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 LOMIRI_DBUSGREETERLIST_H
18#define LOMIRI_DBUSGREETERLIST_H
19
20#include "lomiridbusobject.h"
21#include <QDBusConnection>
22
23class Greeter;
24
28class DBusGreeterList : public LomiriDBusObject
29{
30 Q_OBJECT
31 Q_CLASSINFO("D-Bus Interface", "com.lomiri.LomiriGreeter.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
36public:
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
44Q_SIGNALS:
45 Q_SCRIPTABLE void EntrySelected(const QString &entry); // since 13.10
46
47 void entryIsLockedChanged();
48
49private Q_SLOTS:
50 void authenticationUserChangedHandler();
51 void promptlessChangedHandler();
52
53private:
54 Greeter *m_greeter;
55};
56
57#endif