~lukas-kde/unity8/dashboard

« back to all changes in this revision

Viewing changes to tests/mocks/LightDM/IntegratedLightDM/liblightdm/GreeterPrivate.h

  • Committer: Lukáš Tinkl
  • Date: 2017-01-26 12:13:17 UTC
  • mfrom: (2749.1.49 unity8)
  • Revision ID: lukas.tinkl@canonical.com-20170126121317-qms39s9pikclidbe
merge trunk, fix conflicts

Show diffs side-by-side

added added

removed removed

Lines of Context:
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_MOCK_GREETER_PRIVATE_H
18
 
#define UNITY_MOCK_GREETER_PRIVATE_H
19
 
 
20
 
#include <QtCore/QObject>
21
 
 
22
 
namespace QLightDM
23
 
{
24
 
class Greeter;
25
 
class GreeterImpl;
26
 
 
27
 
class GreeterPrivate
28
 
{
29
 
public:
30
 
    explicit GreeterPrivate(Greeter* parent=0);
31
 
    virtual ~GreeterPrivate() = default;
32
 
 
33
 
    // These variables may not be used by all subclasses, that's no problem
34
 
    bool authenticated;
35
 
    QString authenticationUser;
36
 
    bool twoFactorDone;
37
 
    QString selectUserHint;
38
 
 
39
 
    QString mockMode;
40
 
 
41
 
    void handleAuthenticate();
42
 
    void handleRespond(const QString &response);
43
 
 
44
 
protected:
45
 
    Greeter * const q_ptr;
46
 
 
47
 
private:
48
 
    void handleAuthenticate_full();
49
 
    void handleRespond_full(const QString &response);
50
 
    Q_DECLARE_PUBLIC(Greeter)
51
 
};
52
 
}
53
 
 
54
 
#endif // UNITY_MOCK_GREETER_PRIVATE_H