forked from analogdevicesinc/scopy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompletion_circle.cpp
248 lines (200 loc) · 4.86 KB
/
completion_circle.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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
/*
* Copyright 2016 Analog Devices, Inc.
*
* 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; either version 3, or (at your option)
* any later version.
*
* 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 GNU Radio; see the file LICENSE. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/
#include "completion_circle.h"
#include <QMouseEvent>
#include <QPainter>
#include <qmath.h>
#include <QDebug>
using namespace adiscope;
CompletionCircle::CompletionCircle(QWidget *parent, bool invert_circle) :
QDial(parent),
m_double_value(0.5), m_double_minimum(1.0), m_double_maximum(0.0), m_origin(90),
m_xc(0), m_yc(0), m_radius(23),
m_pressed(false), m_log_scale(false), invert_circle(invert_circle),
m_toggleable(true)
{
setWrapping(true);
setMinimumSize(50, 50);
setMaximumSize(50, 50);
}
void CompletionCircle::paintEvent(QPaintEvent *)
{
QPainter p(this);
double min;
double max;
double val;
double completeRatio;
double angle;
int r = m_radius;
int xc = width() / 2;
int yc = height() / 2;
m_xc = xc;
m_yc = yc;
if (!m_log_scale) {
min = minimumDouble();
max = maximumDouble();
val = valueDouble();
} else {
min = log(minimumDouble());
max = log(maximumDouble());
val = log(valueDouble());
}
completeRatio = qAbs((val - min) / (max - min));
if (invert_circle) {
completeRatio = 1.0 - completeRatio;
}
angle = completeRatio * 360;
QColor qss_bgcolor(p.background().color());
QColor qss_color(p.pen().color());
p.setRenderHint(QPainter::Antialiasing);
// The color filled rail
QPen rail_pen(qss_color);
rail_pen.setWidth(3);
p.setPen(rail_pen);
QRectF rect(xc - r, yc - r, 2* r, 2 * r);
p.drawArc(rect, m_origin * 16, angle * 16);
// Background circle
QPen bg_pen(qss_bgcolor);
bg_pen.setWidth(3);
p.setPen(bg_pen);
p.drawArc(rect, (m_origin + angle) * 16, (360 - angle) * 16);
// The center dot
if (m_toggleable) {
QColor centerDotColor(Qt::black);
if (m_pressed) {
centerDotColor = QColor(255, 114, 0);
}
p.setPen(centerDotColor);
p.setBrush(centerDotColor);
p.drawEllipse(QPoint(xc, yc), 3, 3);
}
// The dash
angle = angle + m_origin;
double rad_angle = qDegreesToRadians(angle);
int x1 = (r - 11) * qCos(rad_angle);
int y1 = (r - 11) * qSin(rad_angle);
int x2 = (r - 6) * qCos(rad_angle);
int y2 = (r - 6) * qSin(rad_angle);
QPen pen(Qt::white);
pen.setStyle(Qt::SolidLine);
pen.setWidthF(1.5);
p.setPen(pen);
p.drawLine(xc + x1, yc - y1, xc + x2, yc - y2);
}
void CompletionCircle::mousePressEvent(QMouseEvent *e)
{
if (e->button() == Qt::LeftButton) {
if (pointInsideCircle(e->pos(), m_xc, m_yc, m_radius - 2)) {
if (m_toggleable) {
m_pressed = !m_pressed;
repaint();
Q_EMIT toggled(m_pressed);
}
}
}
}
void CompletionCircle::mouseReleaseEvent(QMouseEvent *)
{
}
void CompletionCircle::mouseMoveEvent(QMouseEvent *)
{
}
void CompletionCircle::keyPressEvent(QKeyEvent *)
{
}
void CompletionCircle::wheelEvent(QWheelEvent *)
{
}
bool CompletionCircle::pointInsideCircle(const QPoint& p, int xc, int yc, int r)
{
int x = p.x();
int y = p.y();
return ((x - xc) * (x - xc) + (y - yc) * (y - yc) < r * r);
}
double CompletionCircle::valueDouble()
{
return m_double_value;
}
void CompletionCircle::setValueDouble(double value)
{
if (value < m_double_minimum) {
value = m_double_minimum;
} else if (value > m_double_maximum) {
value = m_double_maximum;
}
if (m_double_value != value) {
m_double_value = value;
sliderChange(SliderValueChange);
}
}
bool CompletionCircle::toggledState()
{
return m_pressed;
}
void CompletionCircle::setToggled(bool on)
{
if (m_pressed != on) {
m_pressed = on;
Q_EMIT toggled(on);
}
}
double CompletionCircle::minimumDouble()
{
return m_double_minimum;
}
void CompletionCircle::setOrigin(double value)
{
m_origin = value;
}
void CompletionCircle::setMinimumDouble(double value)
{
m_double_minimum = value;
if (m_double_value < m_double_minimum) {
setValueDouble(value);
}
repaint();
}
double CompletionCircle::maximumDouble()
{
return m_double_maximum;
}
void CompletionCircle::setMaximumDouble(double value)
{
m_double_maximum = value;
if (m_double_value > m_double_maximum) {
setValueDouble(value);
}
repaint();
}
void CompletionCircle::setToggleable(bool tog)
{
m_toggleable = tog;
}
bool CompletionCircle::isLogScale()
{
return m_log_scale;
}
bool CompletionCircle::toggleable()
{
return m_toggleable;
}
void CompletionCircle::setIsLogScale(bool state)
{
m_log_scale = state;
}