-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathNumericEntry.cpp
193 lines (169 loc) · 5.39 KB
/
NumericEntry.cpp
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
// Copyright (c) 2014-2021 Josh Blum
// SPDX-License-Identifier: BSL-1.0
#include <Pothos/Framework.hpp>
#include "MyDoubleSlider.hpp"
#include <QDoubleSpinBox>
#include <QLabel>
#include <QHBoxLayout>
#include <QVBoxLayout>
/***********************************************************************
* |PothosDoc Numeric Entry
*
* The numeric entry widget display's a numeric value in a text-entry box
* with increment and decrement buttons.
*
* |category /Widgets
* |keywords numeric entry spinbox
*
* |param title The name of the value displayed by this widget
* |default "My Numeric Value"
* |widget StringEntry()
*
* |param value The initial value of this entry.
* |default 0.0
*
* |param minimum The minimum value of this entry.
* |default -1.0
*
* |param maximum The maximum value of this entry.
* |default 1.0
*
* |param step [Step Size] The increment between discrete values.
* |default 0.01
*
* |param precision The number of decimal points to display
* |default 2
* |widget SpinBox(minimum=0, maximum=10)
* |preview disable
*
* |param sliderVisible [Has Slider] Does this numeric entry have a slider control?
* |default true
* |option [Show Slider] true
* |option [Hide Slider] false
* |preview disable
*
* |mode graphWidget
* |factory /widgets/numeric_entry()
* |setter setTitle(title)
* |setter setMinimum(minimum)
* |setter setMaximum(maximum)
* |setter setSingleStep(step)
* |setter setDecimals(precision)
* |setter setValue(value)
* |setter setSliderVisible(sliderVisible)
**********************************************************************/
class NumericEntry : public QWidget, public Pothos::Block
{
Q_OBJECT
public:
static Block *make(void)
{
return new NumericEntry();
}
NumericEntry(void):
_label(new QLabel(this)),
_spinBox(new QDoubleSpinBox(this)),
_slider(new MyDoubleSlider(Qt::Horizontal, this))
{
auto vlayout = new QVBoxLayout(this);
auto hlayout = new QHBoxLayout();
vlayout->setContentsMargins(QMargins());
vlayout->setSpacing(0);
vlayout->addLayout(hlayout);
vlayout->addWidget(_slider);
hlayout->setContentsMargins(QMargins());
hlayout->setSpacing(1);
hlayout->addWidget(_label);
hlayout->addWidget(_spinBox);
this->registerCall(this, POTHOS_FCN_TUPLE(NumericEntry, widget));
this->registerCall(this, POTHOS_FCN_TUPLE(NumericEntry, value));
this->registerCall(this, POTHOS_FCN_TUPLE(NumericEntry, setTitle));
this->registerCall(this, POTHOS_FCN_TUPLE(NumericEntry, setValue));
this->registerCall(this, POTHOS_FCN_TUPLE(NumericEntry, setMinimum));
this->registerCall(this, POTHOS_FCN_TUPLE(NumericEntry, setMaximum));
this->registerCall(this, POTHOS_FCN_TUPLE(NumericEntry, setDecimals));
this->registerCall(this, POTHOS_FCN_TUPLE(NumericEntry, setSingleStep));
this->registerCall(this, POTHOS_FCN_TUPLE(NumericEntry, setSliderVisible));
this->registerSignal("valueChanged");
connect(_spinBox, QOverload<double>::of(&QDoubleSpinBox::valueChanged), this, &NumericEntry::handleSpinBoxValueChanged);
connect(_slider, &MyDoubleSlider::valueChanged, this, &NumericEntry::handleSliderValueChanged);
}
QWidget *widget(void)
{
return this;
}
void activate(void)
{
//emit current value when design becomes active
this->emitSignal("valueChanged", this->value());
}
double value(void) const
{
return _spinBox->value();
}
void setTitle(const QString &title)
{
const auto text = QString("<b>%1</b>").arg(title.toHtmlEscaped());
//cannot call setText in calling thread, forward to the label slot
QMetaObject::invokeMethod(_label, "setText", Qt::QueuedConnection, Q_ARG(QString, text));
}
void setValue(const double val)
{
_spinBox->setValue(val);
_slider->setValue(val);
}
void setMinimum(const double min)
{
_spinBox->setMinimum(min);
_slider->setMinimum(min);
}
void setMaximum(const double max)
{
_spinBox->setMaximum(max);
_slider->setMaximum(max);
}
void setDecimals(const int prec)
{
_spinBox->setDecimals(prec);
}
void setSingleStep(const double val)
{
_spinBox->setSingleStep(val);
_slider->setSingleStep(val);
}
void setSliderVisible(const bool visible)
{
QMetaObject::invokeMethod(_slider, "setVisible", Qt::QueuedConnection, Q_ARG(bool, visible));
}
public slots:
QVariant saveState(void) const
{
return this->value();
}
void restoreState(const QVariant &state)
{
this->setValue(state.toDouble());
}
private slots:
void handleSpinBoxValueChanged(const double value)
{
_slider->blockSignals(true);
_slider->setValue(value);
_slider->blockSignals(false);
this->emitSignal("valueChanged", value);
}
void handleSliderValueChanged(const double value)
{
_spinBox->blockSignals(true);
_spinBox->setValue(value);
_spinBox->blockSignals(false);
this->emitSignal("valueChanged", value);
}
private:
QLabel *_label;
QDoubleSpinBox *_spinBox;
MyDoubleSlider *_slider;
};
static Pothos::BlockRegistry registerNumericEntry(
"/widgets/numeric_entry", &NumericEntry::make);
#include "NumericEntry.moc"