summaryrefslogtreecommitdiffhomepage
path: root/facetracknoir/options.hpp
blob: ef3437ad29ef21fc2c09ab8797eb34a5de76fa02 (plain)
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
193
194
195
196
197
198
199
200
/* Copyright (c) 2013 Stanislaw Halik
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 */

#pragma once

#include <QSettings>
#include <QSettings>
#include <QMap>
#include <QString>
#include <QVariant>
#include <memory>
#include <cassert>
#include <QWidget>
#include <QComboBox>
#include <QCheckBox>
#include <QDoubleSpinBox>
#include <QSpinBox>
#include <QSlider>

namespace options {
    template<typename T>
    inline T qcruft_to_t(const QVariant& t);

    template<>
    inline int qcruft_to_t<int>(const QVariant& t)
    {
        return t.toInt();
    }

    template<>
    inline bool qcruft_to_t<bool>(const QVariant& t)
    {
        return t.toBool();
    }

    template<>
    inline double qcruft_to_t<double>(const QVariant& t)
    {
        return t.toDouble();
    }

    template<>
    inline float qcruft_to_t<float>(const QVariant& t)
    {
        return t.toFloat();
    }

    // snapshot of qsettings group at given time
    class group {
    private:
        QMap<QString, QVariant> map;
        QString name;
    public:
        group(const QString& name, QSettings& s) : name(name)
        {
            s.beginGroup(name);
            for (auto& k : s.childKeys())
                map[k] = s.value(k);
            s.endGroup();
        }
        static constexpr const char* org = "opentrack";
        void save() {
            QSettings s(org);
            s.beginGroup(name);
            for (auto& k : map.keys())
                s.setValue(k, map[k]);
            s.endGroup();
        }
        template<typename T>
        T get(const QString& k) {
            return qcruft_to_t<T>(map.value(k));
        }

        void put(const QString& s, const QVariant& d)
        {
            map[s] = d;
        }
    };

    class bundle {
    private:
        const QString group_name;
        group saved;
        group transient;
        bundle(const bundle&) = delete;
        bundle& operator=(const bundle&) = delete;
        bool modified;
    public:
        bundle(const QString& group_name, QSettings& s) :
            group_name(group_name),
            saved(group_name, s),
            transient(saved),
            modified(false)
        {
        }
        std::shared_ptr<bundle> make(const QString& name, QSettings& s) {
            assert(s.format() == QSettings::IniFormat);
            return std::make_shared<bundle>(name, s);
        }
        void store(const QString& name, QVariant& datum)
        {
            modified = true;
            transient.put(name, datum);
        }
        template<typename T>
        T get(QString& name) {
            transient.get<T>(name);
        }
        void save()
        {
            modified = false;
            saved = transient;
            transient.save();
        }
        void revert()
        {
            modified = false;
            transient = saved;
        }
    };

    typedef std::shared_ptr<bundle> pbundle;

    class QCruft : public QObject {
    };

    template<typename T>
    class value : public QCruft {
    private:
        const QString self_name;
        pbundle b;
    public:
        value(const pbundle& b, const QString& name) :
            self_name(name),
            b(b)
        {
        }
        operator T() { return b->get<T>(self_name); }
        T& operator=(const T& datum) {
            b->store(self_name, datum);
            emit valueChanged(datum);
            return datum;
        }
    public slots:
        void setValue(const T datum) {
            this->operator =(datum);
        }
    signals:
        void valueChanged(T datum);
    };

    template<typename T, typename Q>
    inline void tie(value<T>&, Q*);

    template<>
    inline void tie<int, QComboBox>(value<int>& v, QComboBox* cb)
    {
        QObject::connect(cb, SIGNAL(currentIndexChanged(int)), &v, SLOT(setValue(int)));
        QObject::connect(&v, SIGNAL(valueChanged(int)), &v, SLOT(setValue(int)));
    }

    template<>
    inline void tie<QString, QComboBox>(value<QString>& v, QComboBox* cb)
    {
        QObject::connect(cb, SIGNAL(currentTextChanged(QString)), &v, SLOT(setValue(QString)));
        QObject::connect(&v, SIGNAL(valueChanged(QString)), &v, SLOT(setValue(QString)));
    }

    template<>
    inline void tie<bool, QCheckBox>(value<bool>& v, QCheckBox* cb)
    {
        QObject::connect(cb, SIGNAL(toggled(bool)), &v, SLOT(setValue(bool)));
        QObject::connect(&v, SIGNAL(valueChanged(bool)), cb, SLOT(setChecked(bool)));
    }

    template<>
    inline void tie<double, QDoubleSpinBox>(value<double>& v, QDoubleSpinBox* dsb)
    {
        QObject::connect(dsb, SIGNAL(valueChanged(double)), &v, SLOT(setValue(double)));
        QObject::connect(&v, SIGNAL(valueChanged(double)), dsb, SLOT(setValue(double)));
    }

    template<>
    inline void tie<int, QSpinBox>(value<int>& v, QSpinBox* sb)
    {
        QObject::connect(sb, SIGNAL(valueChanged(int)), &v, SLOT(setValue(int)));
        QObject::connect(&v, SIGNAL(valueChanged(int)), sb, SLOT(setValue(int)));
    }

    template<>
    inline void tie<int, QSlider>(value<int>& v, QSlider* sl)
    {
        QObject::connect(sl, SIGNAL(valueChanged(int)), &v, SLOT(setValue(int)));
        QObject::connect(&v, SIGNAL(valueChanged(int)), sl, SLOT(setValue(int)));
    }
}