File: MockController.cpp

package info (click to toggle)
lomiri 0.5.0-7
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 24,088 kB
  • sloc: cpp: 39,498; python: 2,559; javascript: 1,426; ansic: 1,012; sh: 289; xml: 252; makefile: 69
file content (192 lines) | stat: -rw-r--r-- 4,520 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
/*
 * Copyright (C) 2016 Canonical Ltd.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 3.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include "MockController.h"

static QLightDM::MockController *m_instance = nullptr;

namespace QLightDM
{

MockController::MockController(QObject *parent)
    : QObject(parent)
    , m_selectGuestHint(false)
    , m_hasGuestAccountHint(false)
    , m_sessionMode("single")
    , m_fullSessions(
        {
            {"lomiri", "Lomiri"},
            {"lomiri-2d", "Lomiri 2D"},
            {"gnome", "GNOME"},
            {"gnome-classic", "GNOME Classic"},
            {"gnome-flashback-compiz", "GNOME Flashback (Compiz)"},
            {"gnome-flashback-metacity", "GNOME Flashback (Metacity)"},
            {"gnome-wayland", "GNOME on Wayland"},
            {"plasma", "Plasma"},
            {"kde", "KDE" },
            {"xterm", "Recovery Console"},
            {"", "Unknown?"}
        })
    , m_numSessions(0)
{
    reset();
}

MockController::~MockController()
{
    m_instance = nullptr;
}

MockController *MockController::instance()
{
    if (!m_instance) {
        m_instance = new MockController;
    }
    return m_instance;
}

void MockController::reset()
{
    auto userMode = qgetenv("LIBLIGHTDM_MOCK_MODE");
    if (userMode.isEmpty()) {
        userMode = "full";
    }

    setSelectUserHint("");
    setSelectGuestHint(false);
    setHasGuestAccountHint(false);
    setUserMode(userMode);
    setSessionMode("single");
    setNumSessions(numFullSessions());
    setShowManualLoginHint(false);
    setHideUsersHint(false);
}

QString MockController::selectUserHint() const
{
    return m_selectUserHint;
}

void MockController::setSelectUserHint(const QString &selectUserHint)
{
    if (m_selectUserHint != selectUserHint) {
        m_selectUserHint = selectUserHint;
        Q_EMIT selectUserHintChanged();
    }
}

bool MockController::selectGuestHint() const
{
    return m_selectGuestHint;
}

void MockController::setSelectGuestHint(bool selectGuestHint)
{
    if (m_selectGuestHint != selectGuestHint) {
        m_selectGuestHint = selectGuestHint;
        Q_EMIT selectGuestHintChanged();
    }
}

bool MockController::hasGuestAccountHint() const
{
    return m_hasGuestAccountHint;
}

void MockController::setHasGuestAccountHint(bool hasGuestAccountHint)
{
    if (m_hasGuestAccountHint != hasGuestAccountHint) {
        m_hasGuestAccountHint = hasGuestAccountHint;
        Q_EMIT hasGuestAccountHintChanged();
    }
}

bool MockController::showManualLoginHint() const
{
    return m_showManualLoginHint;
}

void MockController::setShowManualLoginHint(bool showManualLoginHint)
{
    if (m_showManualLoginHint != showManualLoginHint) {
        m_showManualLoginHint = showManualLoginHint;
        Q_EMIT showManualLoginHintChanged();
    }
}

bool MockController::hideUsersHint() const
{
    return m_hideUsersHint;
}

void MockController::setHideUsersHint(bool hideUsersHint)
{
    if (m_hideUsersHint != hideUsersHint) {
        m_hideUsersHint = hideUsersHint;
        Q_EMIT hideUsersHintChanged();
    }
}

QString MockController::userMode() const
{
    return m_userMode;
}

void MockController::setUserMode(const QString &userMode)
{
    if (m_userMode != userMode) {
        m_userMode = userMode;
        Q_EMIT userModeChanged();
    }
}

QString MockController::sessionMode() const
{
    return m_sessionMode;
}

void MockController::setSessionMode(const QString &sessionMode)
{
    if (m_sessionMode != sessionMode) {
        m_sessionMode = sessionMode;
        Q_EMIT sessionModeChanged();
    }
}

const QList<MockController::SessionItem> &MockController::fullSessionItems() const
{
    return m_fullSessions;
}

int MockController::numFullSessions() const
{
    return m_fullSessions.size();
}

int MockController::numSessions() const
{
    return m_numSessions;
}

void MockController::setNumSessions(int numSessions)
{
    if (m_numSessions != numSessions) {
        m_numSessions = numSessions;
        Q_EMIT numSessionsChanged();
    }
}

}