~lukas-kde/unity8/dashboard

« back to all changes in this revision

Viewing changes to tests/mocks/LightDM/IntegratedLightDM/MockGreeter.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
 
 
18
 
// The real, production, Greeter
19
 
#include <Greeter.h>
20
 
 
21
 
#ifndef MOCK_UNITY_GREETER_H
22
 
#define MOCK_UNITY_GREETER_H
23
 
 
24
 
class MockGreeter : public Greeter {
25
 
    Q_OBJECT
26
 
 
27
 
    Q_PROPERTY(QString mockMode READ mockMode WRITE setMockMode NOTIFY mockModeChanged)
28
 
    Q_PROPERTY(QString selectUser READ selectUserHint WRITE setSelectUserHint NOTIFY selectUserHintChanged)
29
 
 
30
 
public:
31
 
    QString mockMode() const;
32
 
    void setMockMode(QString mockMode);
33
 
 
34
 
    QString selectUserHint() const;
35
 
    void setSelectUserHint(const QString &selectUserHint);
36
 
 
37
 
Q_SIGNALS:
38
 
    void mockModeChanged(QString mode);
39
 
    void selectUserHintChanged();
40
 
};
41
 
 
42
 
#endif // MOCK_UNITY_GREETER_H