~ci-train-bot/ubuntu-settings-components/ubuntu-settings-components-ubuntu-zesty-2202

« back to all changes in this revision

Viewing changes to tests/qmltests/mocks/GSettings.1.0/fake_gsettings.cpp

Merging with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 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 Lesser 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 Lesser General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 */
 
16
 
 
17
#include "fake_gsettings.h"
 
18
 
 
19
#include <QDebug>
 
20
 
 
21
GSettingsControllerQml* GSettingsControllerQml::s_controllerInstance = 0;
 
22
 
 
23
GSettingsControllerQml::GSettingsControllerQml()
 
24
    : m_fingerprintNames()
 
25
{
 
26
}
 
27
 
 
28
GSettingsControllerQml::~GSettingsControllerQml() {
 
29
    s_controllerInstance = 0;
 
30
}
 
31
 
 
32
GSettingsControllerQml* GSettingsControllerQml::instance()  {
 
33
    if (!s_controllerInstance) {
 
34
        s_controllerInstance = new GSettingsControllerQml();
 
35
    }
 
36
    return s_controllerInstance;
 
37
}
 
38
 
 
39
QVariantMap GSettingsControllerQml::fingerprintNames() const
 
40
{
 
41
    return m_fingerprintNames;
 
42
}
 
43
 
 
44
void GSettingsControllerQml::setFingerprintNames(QVariantMap map)
 
45
{
 
46
    if (map != m_fingerprintNames) {
 
47
        m_fingerprintNames = map;
 
48
        Q_EMIT fingerprintNamesChanged();
 
49
    }
 
50
}
 
51
 
 
52
GSettingsSchemaQml::GSettingsSchemaQml(QObject *parent): QObject(parent) {
 
53
}
 
54
 
 
55
QByteArray GSettingsSchemaQml::id() const {
 
56
    return m_id;
 
57
}
 
58
 
 
59
void GSettingsSchemaQml::setId(const QByteArray &id) {
 
60
    if (!m_id.isEmpty()) {
 
61
        qWarning("GSettings.schema.id may only be set on construction");
 
62
        return;
 
63
    }
 
64
 
 
65
    m_id = id;
 
66
}
 
67
 
 
68
QByteArray GSettingsSchemaQml::path() const {
 
69
    return m_path;
 
70
}
 
71
 
 
72
void GSettingsSchemaQml::setPath(const QByteArray &path) {
 
73
    if (!m_path.isEmpty()) {
 
74
        qWarning("GSettings.schema.path may only be set on construction");
 
75
        return;
 
76
    }
 
77
 
 
78
    m_path = path;
 
79
}
 
80
 
 
81
GSettingsQml::GSettingsQml(QObject *parent)
 
82
    : QObject(parent),
 
83
      m_valid(false)
 
84
{
 
85
    m_schema = new GSettingsSchemaQml(this);
 
86
}
 
87
 
 
88
void GSettingsQml::classBegin()
 
89
{
 
90
}
 
91
 
 
92
void GSettingsQml::componentComplete()
 
93
{
 
94
    // Emulate what the real GSettings module does, and only return undefined
 
95
    // values until we are completed loading.
 
96
    m_valid = true;
 
97
 
 
98
    // FIXME: We should make this dynamic, instead of hard-coding all possible
 
99
    // properties in one object.  We should create properties based on the schema.
 
100
    connect(GSettingsControllerQml::instance(), &GSettingsControllerQml::fingerprintNamesChanged,
 
101
            this, &GSettingsQml::fingerprintNamesChanged);
 
102
 
 
103
    Q_EMIT fingerprintNamesChanged();
 
104
}
 
105
 
 
106
GSettingsSchemaQml * GSettingsQml::schema() const {
 
107
    return m_schema;
 
108
}
 
109
 
 
110
QVariantMap GSettingsQml::fingerprintNames() const
 
111
{
 
112
    if (m_valid && m_schema->id() == "com.ubuntu.touch.system") {
 
113
        return GSettingsControllerQml::instance()->fingerprintNames();
 
114
    } else {
 
115
        return QVariantMap();
 
116
    }
 
117
}
 
118
 
 
119
void GSettingsQml::setFingerprintNames(const QVariantMap &map)
 
120
{
 
121
    if (m_valid && m_schema->id() == "com.ubuntu.touch.system") {
 
122
        GSettingsControllerQml::instance()->setFingerprintNames(map);
 
123
    }
 
124
}