forked from gnuradio/gnuradio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvectordisplayform.cc
235 lines (201 loc) · 5.1 KB
/
vectordisplayform.cc
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
/* -*- c++ -*- */
/*
* Copyright 2014 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* GNU Radio 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.
*
* GNU Radio 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 COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/
#include <cmath>
#include <QMessageBox>
#include <gnuradio/qtgui/vectordisplayform.h>
#include <iostream>
VectorDisplayForm::VectorDisplayForm(int nplots, QWidget* parent)
: DisplayForm(nplots, parent)
{
d_int_validator = new QIntValidator(this);
d_int_validator->setBottom(0);
d_layout = new QGridLayout(this);
d_display_plot = new VectorDisplayPlot(nplots, this);
d_layout->addWidget(d_display_plot, 0, 0);
setLayout(d_layout);
d_num_real_data_points = 1024;
d_vecsize = 1024;
d_vecavg = 1.0;
d_ref_level = 0.0;
d_clicked = false;
d_clicked_x_level = 0;
d_avgmenu = new AverageMenu("Average", this);
d_menu->addMenu(d_avgmenu);
connect(d_avgmenu, SIGNAL(whichTrigger(float)),
this, SLOT(setVecAverage(const float)));
PopupMenu *maxymenu = new PopupMenu("Y Max", this);
d_menu->addAction(maxymenu);
connect(maxymenu, SIGNAL(whichTrigger(QString)),
this, SLOT(setYMax(QString)));
PopupMenu *minymenu = new PopupMenu("Y Min", this);
d_menu->addAction(minymenu);
connect(minymenu, SIGNAL(whichTrigger(QString)),
this, SLOT(setYMin(QString)));
d_clearmax_act = new QAction("Clear Max", this);
d_menu->addAction(d_clearmax_act);
connect(d_clearmax_act, SIGNAL(triggered()),
this, SLOT(clearMaxHold()));
d_clearmin_act = new QAction("Clear Min", this);
d_menu->addAction(d_clearmin_act);
connect(d_clearmin_act, SIGNAL(triggered()),
this, SLOT(clearMinHold()));
Reset();
connect(d_display_plot, SIGNAL(plotPointSelected(const QPointF)),
this, SLOT(onPlotPointSelected(const QPointF)));
}
VectorDisplayForm::~VectorDisplayForm()
{
// Qt deletes children when parent is deleted
// Don't worry about deleting Display Plots - they are deleted when parents are deleted
delete d_int_validator;
}
VectorDisplayPlot*
VectorDisplayForm::getPlot()
{
return ((VectorDisplayPlot*)d_display_plot);
}
void
VectorDisplayForm::newData(const QEvent *updateEvent)
{
FreqUpdateEvent *fevent = (FreqUpdateEvent*)updateEvent;
const std::vector<double*> dataPoints = fevent->getPoints();
const uint64_t numDataPoints = fevent->getNumDataPoints();
getPlot()->plotNewData(
dataPoints,
numDataPoints,
d_ref_level,
d_update_time
);
}
void
VectorDisplayForm::customEvent( QEvent * e)
{
// We just re-use FreqUpdateEvent as long as that works
if(e->type() == FreqUpdateEvent::Type()) {
newData(e);
}
}
int
VectorDisplayForm::getVecSize() const
{
return d_vecsize;
}
float
VectorDisplayForm::getVecAverage() const
{
return d_vecavg;
}
void VectorDisplayForm::setXAxisLabel(const QString &label)
{
getPlot()->setXAxisLabel(label);
}
void VectorDisplayForm::setYAxisLabel(const QString &label)
{
getPlot()->setYAxisLabel(label);
}
void VectorDisplayForm::setRefLevel(double refLevel)
{
d_ref_level = refLevel;
}
void
VectorDisplayForm::setVecSize(const int newsize)
{
d_vecsize = newsize;
getPlot()->replot();
}
void
VectorDisplayForm::setVecAverage(const float newavg)
{
d_vecavg = newavg;
d_avgmenu->getActionFromAvg(newavg)->setChecked(true);
getPlot()->replot();
}
void VectorDisplayForm::setXaxis(double start, double step)
{
getPlot()->setXAxisValues(start, step);
}
void
VectorDisplayForm::setYaxis(double min, double max)
{
getPlot()->setYaxis(min, max);
}
void
VectorDisplayForm::setYMax(const QString &m)
{
double new_max = m.toDouble();
double cur_ymin = getPlot()->getYMin();
if(new_max > cur_ymin)
setYaxis(cur_ymin, new_max);
}
void
VectorDisplayForm::setYMin(const QString &m)
{
double new_min = m.toDouble();
double cur_ymax = getPlot()->getYMax();
if(new_min < cur_ymax)
setYaxis(new_min, cur_ymax);
}
void
VectorDisplayForm::autoScale(bool en)
{
if(en) {
d_autoscale_state = true;
}
else {
d_autoscale_state = false;
}
d_autoscale_act->setChecked(en);
getPlot()->setAutoScale(d_autoscale_state);
getPlot()->replot();
}
void
VectorDisplayForm::clearMaxHold()
{
getPlot()->clearMaxData();
}
void
VectorDisplayForm::clearMinHold()
{
getPlot()->clearMinData();
}
void
VectorDisplayForm::onPlotPointSelected(const QPointF p)
{
d_clicked = true;
d_clicked_x_level = p.x();
}
bool
VectorDisplayForm::checkClicked()
{
if(d_clicked) {
d_clicked = false;
return true;
}
else {
return false;
}
}
float
VectorDisplayForm::getClickedXVal() const
{
return d_clicked_x_level;
}