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
249
250
251
|
/* -*- c++ -*- */
/*
* Copyright 2012,2013 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 <QColorDialog>
#include <QMessageBox>
#include <qtgui/timerasterdisplayform.h>
#include <iostream>
TimeRasterDisplayForm::TimeRasterDisplayForm(int nplots,
double samp_rate,
double rows, double cols,
double zmax,
QWidget* parent)
: DisplayForm(nplots, parent)
{
#if QWT_VERSION < 0x060000
std::cerr << "Warning: QWT5 has been found which has serious performance issues with raster plots."
<< std::endl << " Consider updating to QWT version 6 to use the time raster GUIs."
<< std::endl << std::endl;
#endif
_layout = new QGridLayout(this);
_displayPlot = new TimeRasterDisplayPlot(nplots, samp_rate, rows, cols, this);
_layout->addWidget(_displayPlot, 0, 0);
setLayout(_layout);
_min_val = 10;
_max_val = -10;
// We don't use the normal menus that are part of the displayform.
// Clear them out to get rid of their resources.
for(int i = 0; i < nplots; i++) {
_lines_menu[i]->clear();
}
_line_title_act.clear();
_line_color_menu.clear();
_line_width_menu.clear();
_line_style_menu.clear();
_line_marker_menu.clear();
_marker_alpha_menu.clear();
// Now create our own menus
for(int i = 0; i < nplots; i++) {
ColorMapMenu *colormap = new ColorMapMenu(i, this);
connect(colormap, SIGNAL(whichTrigger(int, const int, const QColor&, const QColor&)),
this, SLOT(setColorMap(int, const int, const QColor&, const QColor&)));
_lines_menu[i]->addMenu(colormap);
_marker_alpha_menu.push_back(new MarkerAlphaMenu(i, this));
connect(_marker_alpha_menu[i], SIGNAL(whichTrigger(int, int)),
this, SLOT(setAlpha(int, int)));
_lines_menu[i]->addMenu(_marker_alpha_menu[i]);
}
// One scales once when clicked, so no on/off toggling
_autoscale_act->setText(tr("Auto Scale"));
_autoscale_act->setCheckable(false);
PopupMenu *colsmenu = new PopupMenu("Num. Columns", this);
_menu->addAction(colsmenu);
connect(colsmenu, SIGNAL(whichTrigger(QString)),
this, SLOT(setNumCols(QString)));
PopupMenu *rowsmenu = new PopupMenu("Num. Rows", this);
_menu->addAction(rowsmenu);
connect(rowsmenu, SIGNAL(whichTrigger(QString)),
this, SLOT(setNumRows(QString)));
getPlot()->setIntensityRange(0, zmax);
Reset();
connect(_displayPlot, SIGNAL(plotPointSelected(const QPointF)),
this, SLOT(onPlotPointSelected(const QPointF)));
}
TimeRasterDisplayForm::~TimeRasterDisplayForm()
{
// Don't worry about deleting Display Plots - they are deleted when
// parents are deleted
}
TimeRasterDisplayPlot*
TimeRasterDisplayForm::getPlot()
{
return ((TimeRasterDisplayPlot*)_displayPlot);
}
double
TimeRasterDisplayForm::numRows()
{
return getPlot()->numRows();
}
double
TimeRasterDisplayForm::numCols()
{
return getPlot()->numCols();
}
int
TimeRasterDisplayForm::getColorMap(int which)
{
return getPlot()->getIntensityColorMapType(which);
}
int
TimeRasterDisplayForm::getAlpha(int which)
{
return getPlot()->getAlpha(which);
}
double
TimeRasterDisplayForm::getMinIntensity(int which)
{
return getPlot()->getMinIntensity(which);
}
double
TimeRasterDisplayForm::getMaxIntensity(int which)
{
return getPlot()->getMaxIntensity(which);
}
void
TimeRasterDisplayForm::newData(const QEvent *updateEvent)
{
TimeRasterUpdateEvent *event = (TimeRasterUpdateEvent*)updateEvent;
const std::vector<double*> dataPoints = event->getPoints();
const uint64_t numDataPoints = event->getNumDataPoints();
_min_val = 10;
_max_val = -10;
for(size_t i=0; i < dataPoints.size(); i++) {
double *min_val = std::min_element(&dataPoints[i][0], &dataPoints[i][numDataPoints-1]);
double *max_val = std::max_element(&dataPoints[i][0], &dataPoints[i][numDataPoints-1]);
if(*min_val < _min_val)
_min_val = *min_val;
if(*max_val > _max_val)
_max_val = *max_val;
}
getPlot()->plotNewData(dataPoints, numDataPoints);
}
void
TimeRasterDisplayForm::customEvent( QEvent * e)
{
if(e->type() == TimeRasterUpdateEvent::Type()) {
newData(e);
}
}
void
TimeRasterDisplayForm::setNumRows(double rows)
{
getPlot()->setNumRows(rows);
getPlot()->replot();
}
void
TimeRasterDisplayForm::setNumRows(QString rows)
{
getPlot()->setNumRows(rows.toDouble());
getPlot()->replot();
}
void
TimeRasterDisplayForm::setNumCols(double cols)
{
getPlot()->setNumCols(cols);
getPlot()->replot();
}
void
TimeRasterDisplayForm::setNumCols(QString cols)
{
getPlot()->setNumCols(cols.toDouble());
getPlot()->replot();
}
void
TimeRasterDisplayForm::setSampleRate(const double rate)
{
getPlot()->setSampleRate(rate);
getPlot()->replot();
}
void
TimeRasterDisplayForm::setSampleRate(const QString &rate)
{
getPlot()->setSampleRate(rate.toDouble());
getPlot()->replot();
}
void
TimeRasterDisplayForm::setColorMap(int which,
const int newType,
const QColor lowColor,
const QColor highColor)
{
getPlot()->setIntensityColorMapType(which, newType,
lowColor, highColor);
getPlot()->replot();
}
void
TimeRasterDisplayForm::setAlpha(int which, int alpha)
{
getPlot()->setAlpha(which, alpha);
getPlot()->replot();
}
void
TimeRasterDisplayForm::setIntensityRange(const double minIntensity,
const double maxIntensity)
{
getPlot()->setIntensityRange(minIntensity, maxIntensity);
getPlot()->replot();
}
void
TimeRasterDisplayForm::autoScale(bool en)
{
double min_int = _min_val;
double max_int = _max_val;
getPlot()->setIntensityRange(min_int, max_int);
getPlot()->replot();
}
|