summaryrefslogtreecommitdiff
path: root/gr-qtgui/lib/TimeRasterDisplayPlot.cc
blob: 66b38c52f283b697e79503a663dfb3bacf9f3096 (plain)
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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
/* -*- 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.
 */

#ifndef TIMERASTER_DISPLAY_PLOT_C
#define TIMERASTER_DISPLAY_PLOT_C

#include <qtgui/TimeRasterDisplayPlot.h>

#include <qtgui/qtgui_types.h>
#include <qwt_color_map.h>
#include <qwt_scale_draw.h>
#include <qwt_legend.h>
#include <qwt_legend_item.h>
#include <qwt_plot_layout.h>
#include <QColor>
#include <iostream>

#include <boost/date_time/posix_time/posix_time.hpp>
namespace pt = boost::posix_time;

#include <QDebug>

/***********************************************************************
 * Text scale widget to provide X (time) axis text
 **********************************************************************/
class QwtXScaleDraw: public QwtScaleDraw, public TimeScaleData
{
public:
  QwtXScaleDraw():QwtScaleDraw(),TimeScaleData() { }

  virtual ~QwtXScaleDraw() { }

  virtual QwtText label(double value) const
  {
    double secs = double(value * getSecondsPerLine());
    return QwtText(QString("").sprintf("%.2f", secs));
  }

  virtual void initiateUpdate()
  {
    // Do this in one call rather than when zeroTime and secondsPerLine
    // updates is to prevent the display from being updated too often...
    invalidateCache();
  }
};

/***********************************************************************
 * Text scale widget to provide Y axis text
 **********************************************************************/
class QwtYScaleDraw: public QwtScaleDraw
{
public:
  QwtYScaleDraw(): QwtScaleDraw(), _rows(0) { }

  virtual ~QwtYScaleDraw() { }

  virtual QwtText label(double value) const
  {
    if(_rows > 0)
      value = _rows - value;
    return QwtText(QString("").sprintf("%.0f", value));
  }

  virtual void initiateUpdate()
  {
    // Do this in one call rather than when zeroTime and secondsPerLine
    // updates is to prevent the display from being updated too often...
    invalidateCache();
  }

  void setRows(double rows) { rows>0 ? _rows = rows : _rows = 0; }

private:
  double _rows;
};

class TimePrecisionClass
{
public:
  TimePrecisionClass(const int timePrecision)
  {
    _timePrecision = timePrecision;
  }

  virtual ~TimePrecisionClass()
  {
  }

  virtual unsigned int getTimePrecision() const
  {
    return _timePrecision;
  }

  virtual void setTimePrecision(const unsigned int newPrecision)
  {
    _timePrecision = newPrecision;
  }
protected:
  unsigned int _timePrecision;
};

/***********************************************************************
 * Widget to provide mouse pointer coordinate text
 **********************************************************************/
class TimeRasterZoomer: public QwtPlotZoomer, public TimePrecisionClass,
			public TimeScaleData
{
public:
  TimeRasterZoomer(QwtPlotCanvas* canvas, double rows, double cols,
		   const unsigned int timePrecision)
    : QwtPlotZoomer(canvas), TimePrecisionClass(timePrecision), TimeScaleData(),
      d_rows(static_cast<double>(rows)), d_cols(static_cast<double>(cols))
  {
    setTrackerMode(QwtPicker::AlwaysOn);
  }

  virtual ~TimeRasterZoomer()
  {
  }

  virtual void updateTrackerText()
  {
    updateDisplay();
  }

  void setUnitType(const std::string &type)
  {
    _unitType = type;
  }

  void setColumns(const double cols)
  {
    d_cols = cols;
  }

  void setRows(const double rows)
  {
    d_rows = rows;
  }

protected:
  using QwtPlotZoomer::trackerText;
  virtual QwtText trackerText( QPoint const &p ) const
  {
    QwtDoublePoint dp = QwtPlotZoomer::invTransform(p);
    double x = dp.x() * getSecondsPerLine();
    //double y = dp.y() * getSecondsPerLine() * d_cols;
    double y = floor(d_rows - dp.y());
    QwtText t(QString("%1 %2, %3")
	      .arg(x, 0, 'f', getTimePrecision())
	      .arg(_unitType.c_str())
              .arg(y, 0, 'f', 0));
    return t;
  }

private:
  std::string _unitType;
  double d_rows, d_cols;
};

/*********************************************************************
* Main time raster plot widget
*********************************************************************/
TimeRasterDisplayPlot::TimeRasterDisplayPlot(int nplots,
					     double samp_rate,
					     double rows, double cols,
					     QWidget* parent)
  : DisplayPlot(nplots, parent)
{
  _zoomer = NULL;  // need this for proper init

  resize(parent->width(), parent->height());

  d_samp_rate = samp_rate;
  d_cols = cols;
  d_rows = rows;
  _numPoints = d_cols;

  setAxisScaleDraw(QwtPlot::xBottom, new QwtXScaleDraw());
  setAxisScaleDraw(QwtPlot::yLeft, new QwtYScaleDraw());

  for(int i = 0; i < _nplots; i++) {
    d_data.push_back(new TimeRasterData(d_rows, d_cols));
    d_raster.push_back(new PlotTimeRaster("Raster"));
    d_raster[i]->setData(d_data[i]);

    // a hack around the fact that we aren't using plot curves for the
    // raster plots.
    _plot_curve.push_back(new QwtPlotCurve(QString("Data")));

    d_raster[i]->attach(this);

    d_color_map_type.push_back(INTENSITY_COLOR_MAP_TYPE_BLACK_HOT);
    setAlpha(i, 255/_nplots);
  }

  // Set bottom plot with no transparency as a base
  setAlpha(0, 255);

  // LeftButton for the zooming
  // MidButton for the panning
  // RightButton: zoom out by 1
  // Ctrl+RighButton: zoom out to full size
  _zoomer = new TimeRasterZoomer(canvas(), d_rows, d_cols, 0);
#if QWT_VERSION < 0x060000
  _zoomer->setSelectionFlags(QwtPicker::RectSelection | QwtPicker::DragSelection);
#endif
  _zoomer->setMousePattern(QwtEventPattern::MouseSelect2,
  			   Qt::RightButton, Qt::ControlModifier);
  _zoomer->setMousePattern(QwtEventPattern::MouseSelect3,
  			   Qt::RightButton);
  
  const QColor c(Qt::red);
  _zoomer->setRubberBandPen(c);
  _zoomer->setTrackerPen(c);

  // Set intensity color now (needed _zoomer before we could do this).
  // We've made sure the old type is different than here so we'll
  // force and update.
  for(int i = 0; i < _nplots; i++) {
    setIntensityColorMapType(i, INTENSITY_COLOR_MAP_TYPE_WHITE_HOT,
			     QColor("white"), QColor("white"));
  }

  _updateIntensityRangeDisplay();

  reset();
}

TimeRasterDisplayPlot::~TimeRasterDisplayPlot()
{
}

void
TimeRasterDisplayPlot::reset()
{
  for(int i = 0; i < _nplots; i++) {
    d_data[i]->resizeData(d_rows, d_cols);
    d_data[i]->reset();
  }

  // Update zoomer/picker text units
  std::string strunits[4] = {"sec", "ms", "us", "ns"};
  double units10 = floor(log10(d_samp_rate));
  double units3  = std::max(floor(units10/3), 0.0);
  double units = pow(10, (units10-fmod(units10, 3.0)));
  int iunit = static_cast<int>(units3);

  double sec_per_samp = units/d_samp_rate;

  QwtYScaleDraw* yScale = (QwtYScaleDraw*)axisScaleDraw(QwtPlot::yLeft);
  yScale->setRows(d_rows);

  QwtXScaleDraw* xScale = (QwtXScaleDraw*)axisScaleDraw(QwtPlot::xBottom);
  xScale->setSecondsPerLine(sec_per_samp);
  setAxisTitle(QwtPlot::xBottom, QString("Time (%1)")
	       .arg(strunits[iunit].c_str()));
  xScale->initiateUpdate();

  // Load up the new base zoom settings
  if(_zoomer) {
    double display_units = 4;
    ((TimeRasterZoomer*)_zoomer)->setColumns(d_cols);
    ((TimeRasterZoomer*)_zoomer)->setRows(d_rows);
    ((TimeRasterZoomer*)_zoomer)->setSecondsPerLine(sec_per_samp);
    ((TimeRasterZoomer*)_zoomer)->setTimePrecision(display_units);
    ((TimeRasterZoomer*)_zoomer)->setUnitType(strunits[iunit]);

    QwtDoubleRect newSize = _zoomer->zoomBase();
    newSize.setLeft(0);
    newSize.setWidth(d_cols);
    newSize.setBottom(0);
    newSize.setHeight(d_rows);
    
    _zoomer->zoom(newSize);
    _zoomer->setZoomBase(newSize);
    _zoomer->zoom(0);
  }
}

void
TimeRasterDisplayPlot::setNumRows(double rows)
{
  d_rows = rows;
  reset();
}

void
TimeRasterDisplayPlot::setNumCols(double cols)
{
  d_cols = cols;
  reset();
}

void
TimeRasterDisplayPlot::setAlpha(int which, int alpha)
{
  d_raster[which]->setAlpha(alpha);
}

void
TimeRasterDisplayPlot::setSampleRate(double samprate)
{
  d_samp_rate = samprate;
  reset();
}

double
TimeRasterDisplayPlot::numRows() const
{
  return d_rows;
}

double
TimeRasterDisplayPlot::numCols() const
{
  return d_cols;
}

int
TimeRasterDisplayPlot::getAlpha(int which)
{
  return d_raster[which]->alpha();
}

void
TimeRasterDisplayPlot::setPlotDimensions(const double rows, const double cols,
					 const double units, const std::string &strunits)
{
  bool rst = false;
  if((rows != d_rows) || (cols != d_cols))
    rst = true;

  d_rows = rows;
  d_cols = cols;

  if((axisScaleDraw(QwtPlot::xBottom) != NULL) && (_zoomer != NULL)) {
    if(rst) {
      reset();
    }
  }
}

void
TimeRasterDisplayPlot::plotNewData(const std::vector<double*> dataPoints,
				   const int64_t numDataPoints)
{
  if(!_stop) {
    if(numDataPoints > 0) {
      for(int i = 0; i < _nplots; i++) {
	d_data[i]->addData(dataPoints[i], numDataPoints);
	d_raster[i]->invalidateCache();
	d_raster[i]->itemChanged();
      }

      replot();
    }
  }
}

void
TimeRasterDisplayPlot::plotNewData(const double* dataPoints,
				   const int64_t numDataPoints)
{
  std::vector<double*> vecDataPoints;
  vecDataPoints.push_back((double*)dataPoints);
  plotNewData(vecDataPoints, numDataPoints);
}

void
TimeRasterDisplayPlot::setIntensityRange(const double minIntensity,
					 const double maxIntensity)
{
  for(int i = 0; i < _nplots; i++) {
#if QWT_VERSION < 0x060000
    d_data[i]->setRange(QwtDoubleInterval(minIntensity, maxIntensity));
#else
    d_data[i]->setInterval(Qt::ZAxis, QwtInterval(minIntensity, maxIntensity));
#endif

    emit updatedLowerIntensityLevel(minIntensity);
    emit updatedUpperIntensityLevel(maxIntensity);

    _updateIntensityRangeDisplay();
  }
}

double
TimeRasterDisplayPlot::getMinIntensity(int which) const
{
#if QWT_VERSION < 0x060000
  QwtDoubleInterval r = d_data[which]->range();
#else
  QwtInterval r = d_data[which]->interval(Qt::ZAxis);
#endif

  return r.minValue();
}

double
TimeRasterDisplayPlot::getMaxIntensity(int which) const
{
#if QWT_VERSION < 0x060000
  QwtDoubleInterval r = d_data[which]->range();
#else
  QwtInterval r = d_data[which]->interval(Qt::ZAxis);
#endif

  return r.maxValue();
}

void
TimeRasterDisplayPlot::replot()
{
  // Update the x-axis display
  if(axisWidget(QwtPlot::yLeft) != NULL) {
    axisWidget(QwtPlot::yLeft)->update();
  }

  // Update the y-axis display
  if(axisWidget(QwtPlot::xBottom) != NULL) {
    axisWidget(QwtPlot::xBottom)->update();
  }

  if(_zoomer != NULL) {
    ((TimeRasterZoomer*)_zoomer)->updateTrackerText();
  }

  QwtPlot::replot();
}

int
TimeRasterDisplayPlot::getIntensityColorMapType(int which) const
{
  if(which >= (int)d_color_map_type.size())
    throw std::runtime_error("TimerasterDisplayPlot::GetIntesityColorMap: invalid which.\n");

  return d_color_map_type[which];
}

void
TimeRasterDisplayPlot::setIntensityColorMapType(const int which,
						const int newType,
						const QColor lowColor,
						const QColor highColor)
{
  if(which >= (int)d_color_map_type.size())
    throw std::runtime_error("TimerasterDisplayPlot::setIntesityColorMap: invalid which.\n");

  if((d_color_map_type[which] != newType) ||
     ((newType == INTENSITY_COLOR_MAP_TYPE_USER_DEFINED) &&
      (lowColor.isValid() && highColor.isValid()))) {
    switch(newType) {
    case INTENSITY_COLOR_MAP_TYPE_MULTI_COLOR: {
      d_color_map_type[which] = newType;

      d_raster[which]->setColorMap(new ColorMap_MultiColor());
      if(_zoomer)
	_zoomer->setTrackerPen(QColor(Qt::black));
      break;
    }
    case INTENSITY_COLOR_MAP_TYPE_WHITE_HOT: {
      d_color_map_type[which] = newType;
      d_raster[which]->setColorMap(new ColorMap_WhiteHot());
      break;
    }
    case INTENSITY_COLOR_MAP_TYPE_BLACK_HOT: {
      d_color_map_type[which] = newType;
      d_raster[which]->setColorMap(new ColorMap_BlackHot());
      break;
    }
    case INTENSITY_COLOR_MAP_TYPE_INCANDESCENT: {
      d_color_map_type[which] = newType;
      d_raster[which]->setColorMap(new ColorMap_Incandescent());
      break;
    }
    case INTENSITY_COLOR_MAP_TYPE_USER_DEFINED: {
      d_low_intensity = lowColor;
      d_high_intensity = highColor;
      d_color_map_type[which] = newType;
      d_raster[which]->setColorMap(new ColorMap_UserDefined(lowColor, highColor));
      break;
    }
    default: break;
    }

    _updateIntensityRangeDisplay();
  }
}

const QColor
TimeRasterDisplayPlot::getUserDefinedLowIntensityColor() const
{
  return d_low_intensity;
}

const QColor
TimeRasterDisplayPlot::getUserDefinedHighIntensityColor() const
{
  return d_high_intensity;
}

void
TimeRasterDisplayPlot::_updateIntensityRangeDisplay()
{
  QwtScaleWidget *rightAxis = axisWidget(QwtPlot::yRight);
  rightAxis->setTitle("Intensity");
  rightAxis->setColorBarEnabled(true);

  for(int i = 0; i < _nplots; i++) {
#if QWT_VERSION < 0x060000
    rightAxis->setColorMap(d_raster[i]->data()->range(),
			   d_raster[i]->colorMap());
    setAxisScale(QwtPlot::yRight,
		 d_raster[i]->data()->range().minValue(),
		 d_raster[i]->data()->range().maxValue());
#else
    QwtInterval intv = d_raster[i]->interval(Qt::ZAxis);
    switch(d_color_map_type[i]) {
    case INTENSITY_COLOR_MAP_TYPE_MULTI_COLOR:
      rightAxis->setColorMap(intv, new ColorMap_MultiColor()); break;
    case INTENSITY_COLOR_MAP_TYPE_WHITE_HOT:
      rightAxis->setColorMap(intv, new ColorMap_WhiteHot()); break;
    case INTENSITY_COLOR_MAP_TYPE_BLACK_HOT:
      rightAxis->setColorMap(intv, new ColorMap_BlackHot()); break;
    case INTENSITY_COLOR_MAP_TYPE_INCANDESCENT:
      rightAxis->setColorMap(intv, new ColorMap_Incandescent()); break;
    case INTENSITY_COLOR_MAP_TYPE_USER_DEFINED:
      rightAxis->setColorMap(intv, new ColorMap_UserDefined(d_low_intensity,
							    d_high_intensity));
      break;
    default:
      rightAxis->setColorMap(intv, new ColorMap_MultiColor()); break;
    }
    setAxisScale(QwtPlot::yRight, intv.minValue(), intv.maxValue());
#endif

    enableAxis(QwtPlot::yRight);

    plotLayout()->setAlignCanvasToScales(true);

    // Tell the display to redraw everything
    d_raster[i]->invalidateCache();
    d_raster[i]->itemChanged();
  }

  // Draw again
  replot();
}

#endif /* TIMERASTER_DISPLAY_PLOT_C */