]> sigrok.org Git - pulseview.git/blame - pv/globalsettings.cpp
DecodeSignal: Allow muxed logic data to be cached
[pulseview.git] / pv / globalsettings.cpp
CommitLineData
bf9f1268
SA
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2017 Soeren Apel <soeren@apelpie.net>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include "globalsettings.hpp"
21
daa54986 22#include <QApplication>
d3feec23 23#include <QByteArray>
daa54986 24#include <QFontMetrics>
d3feec23
SA
25#include <QString>
26
6f925ba9
UH
27using std::function;
28using std::map;
29using std::multimap;
30
bf9f1268
SA
31namespace pv {
32
e91fb166 33const QString GlobalSettings::Key_View_ZoomToFitDuringAcq = "View_ZoomToFitDuringAcq";
28ceff25 34const QString GlobalSettings::Key_View_ZoomToFitAfterAcq = "View_ZoomToFitAfterAcq";
bf9f1268 35const QString GlobalSettings::Key_View_ColouredBG = "View_ColouredBG";
87a97d8a 36const QString GlobalSettings::Key_View_StickyScrolling = "View_StickyScrolling";
051ba3b3 37const QString GlobalSettings::Key_View_ShowSamplingPoints = "View_ShowSamplingPoints";
8ad61f40 38const QString GlobalSettings::Key_View_ShowAnalogMinorGrid = "View_ShowAnalogMinorGrid";
90ee1ed9 39const QString GlobalSettings::Key_View_ConversionThresholdDispMode = "View_ConversionThresholdDispMode";
daa54986 40const QString GlobalSettings::Key_View_DefaultDivHeight = "View_DefaultDivHeight";
48051ccb 41const QString GlobalSettings::Key_View_DefaultLogicHeight = "View_DefaultLogicHeight";
1cc1c8de 42const QString GlobalSettings::Key_Dec_InitialStateConfigurable = "Dec_InitialStateConfigurable";
bf9f1268 43
6f925ba9 44multimap< QString, function<void(QVariant)> > GlobalSettings::callbacks_;
2cca9ebf 45bool GlobalSettings::tracking_ = false;
6f925ba9 46map<QString, QVariant> GlobalSettings::tracked_changes_;
bf9f1268
SA
47
48GlobalSettings::GlobalSettings() :
49 QSettings()
50{
51 beginGroup("Settings");
52}
53
c031de4b
SA
54void GlobalSettings::set_defaults_where_needed()
55{
28ceff25
SA
56 // Enable zoom-to-fit after acquisition by default
57 if (!contains(Key_View_ZoomToFitAfterAcq))
58 setValue(Key_View_ZoomToFitAfterAcq, true);
59
c031de4b
SA
60 // Enable coloured trace backgrounds by default
61 if (!contains(Key_View_ColouredBG))
62 setValue(Key_View_ColouredBG, true);
df842d4f
SA
63
64 // Enable showing sampling points by default
65 if (!contains(Key_View_ShowSamplingPoints))
66 setValue(Key_View_ShowSamplingPoints, true);
daa54986
SA
67
68 if (!contains(Key_View_DefaultDivHeight))
69 setValue(Key_View_DefaultDivHeight,
70 3 * QFontMetrics(QApplication::font()).height());
48051ccb
SA
71
72 if (!contains(Key_View_DefaultLogicHeight))
73 setValue(Key_View_DefaultLogicHeight,
74 2 * QFontMetrics(QApplication::font()).height());
c031de4b
SA
75}
76
bf9f1268 77void GlobalSettings::register_change_handler(const QString key,
6f925ba9 78 function<void(QVariant)> cb)
bf9f1268
SA
79{
80 callbacks_.emplace(key, cb);
81}
82
83void GlobalSettings::setValue(const QString &key, const QVariant &value)
84{
2cca9ebf
SA
85 // Save previous value if we're tracking changes,
86 // not altering an already-existing saved setting
87 if (tracking_)
88 tracked_changes_.emplace(key, QSettings::value(key));
89
bf9f1268
SA
90 QSettings::setValue(key, value);
91
92 // Call all registered callbacks for this key
93 auto range = callbacks_.equal_range(key);
94
95 for (auto it = range.first; it != range.second; it++)
96 it->second(value);
97}
98
2cca9ebf
SA
99void GlobalSettings::start_tracking()
100{
101 tracking_ = true;
102 tracked_changes_.clear();
103}
104
105void GlobalSettings::stop_tracking()
106{
107 tracking_ = false;
108 tracked_changes_.clear();
109}
110
111void GlobalSettings::undo_tracked_changes()
112{
113 tracking_ = false;
114
115 for (auto entry : tracked_changes_)
116 setValue(entry.first, entry.second);
117
118 tracked_changes_.clear();
119}
bf9f1268 120
d3feec23
SA
121void GlobalSettings::store_gvariant(QSettings &settings, GVariant *v)
122{
123 const GVariantType *var_type = g_variant_get_type(v);
124 char *var_type_str = g_variant_type_dup_string(var_type);
125
126 QByteArray var_data = QByteArray((const char*)g_variant_get_data(v),
127 g_variant_get_size(v));
128
129 settings.setValue("value", var_data);
130 settings.setValue("type", var_type_str);
131
132 g_free(var_type_str);
133}
134
135GVariant* GlobalSettings::restore_gvariant(QSettings &settings)
136{
137 QString raw_type = settings.value("type").toString();
138 GVariantType *var_type = g_variant_type_new(raw_type.toUtf8());
139
140 QByteArray data = settings.value("value").toByteArray();
141
142 gpointer var_data = g_memdup((gconstpointer)data.constData(),
143 (guint)data.size());
144
145 GVariant *value = g_variant_new_from_data(var_type, var_data,
146 data.size(), false, g_free, var_data);
147
148 g_variant_type_free(var_type);
149
150 return value;
151}
152
153
bf9f1268 154} // namespace pv