Merging qtdevel2 branch -r10565:10849. This adds a lot of fixes and capabilities...
[debian/gnuradio] / gr-qtgui / src / lib / ConstellationDisplayPlot.cc
1 #ifndef CONSTELLATION_DISPLAY_PLOT_C
2 #define CONSTELLATION_DISPLAY_PLOT_C
3
4 #include <ConstellationDisplayPlot.h>
5
6 #include <qwt_scale_draw.h>
7 #include <qwt_legend.h>
8
9
10 class ConstellationDisplayZoomer: public QwtPlotZoomer
11 {
12 public:
13   ConstellationDisplayZoomer(QwtPlotCanvas* canvas):QwtPlotZoomer(canvas)
14   {
15     setTrackerMode(QwtPicker::AlwaysOn);
16   }
17
18   virtual ~ConstellationDisplayZoomer(){
19
20   }
21   
22   virtual void updateTrackerText(){
23     updateDisplay();
24   }
25
26 protected:
27   virtual QwtText trackerText( const QwtDoublePoint& p ) const 
28   {
29     QwtText t(QString("Sample %1, %2 V").arg(p.x(), 0, 'f', 0).arg(p.y(), 0, 'f', 4));
30
31     return t;
32   }
33 };
34
35 ConstellationDisplayPlot::ConstellationDisplayPlot(QWidget* parent):QwtPlot(parent){
36   timespec_reset(&_lastReplot);
37
38   resize(parent->width(), parent->height());
39
40   _displayIntervalTime = (1.0/10.0); // 1/10 of a second between updates
41
42   _numPoints = 1024;
43   _realDataPoints = new double[_numPoints];
44   _imagDataPoints = new double[_numPoints];
45
46   // Disable polygon clipping
47   QwtPainter::setDeviceClipping(false);
48   
49   // We don't need the cache here
50   canvas()->setPaintAttribute(QwtPlotCanvas::PaintCached, false);
51   canvas()->setPaintAttribute(QwtPlotCanvas::PaintPacked, false);
52
53   QPalette palette;
54   palette.setColor(canvas()->backgroundRole(), QColor("white"));
55   canvas()->setPalette(palette);  
56
57   setAxisScaleEngine(QwtPlot::xBottom, new QwtLinearScaleEngine);
58   setAxisScale(QwtPlot::xBottom, -1.0, 1.0);
59   setAxisTitle(QwtPlot::xBottom, "In-phase");
60
61   setAxisScaleEngine(QwtPlot::yLeft, new QwtLinearScaleEngine);
62   setAxisScale(QwtPlot::yLeft, -1.0, 1.0);
63   setAxisTitle(QwtPlot::yLeft, "Quadrature");
64
65   // Automatically deleted when parent is deleted
66   _plot_curve = new QwtPlotCurve("Constellation Points");
67   _plot_curve->attach(this);
68   _plot_curve->setPen(QPen(Qt::blue, 5, Qt::SolidLine, Qt::RoundCap, Qt::RoundJoin));
69   _plot_curve->setStyle(QwtPlotCurve::Dots);
70   _plot_curve->setRawData(_realDataPoints, _imagDataPoints, _numPoints);
71
72   memset(_realDataPoints, 0x0, _numPoints*sizeof(double));
73   memset(_imagDataPoints, 0x0, _numPoints*sizeof(double));
74
75   replot();
76
77   _zoomer = new ConstellationDisplayZoomer(canvas());
78 #if QT_VERSION < 0x040000
79   _zoomer->setMousePattern(QwtEventPattern::MouseSelect2,
80                           Qt::RightButton, Qt::ControlModifier);
81 #else
82   _zoomer->setMousePattern(QwtEventPattern::MouseSelect2,
83                           Qt::RightButton, Qt::ControlModifier);
84 #endif
85   _zoomer->setMousePattern(QwtEventPattern::MouseSelect3,
86                           Qt::RightButton);
87
88   _panner = new QwtPlotPanner(canvas());
89   _panner->setAxisEnabled(QwtPlot::yRight, false);
90   _panner->setMouseButton(Qt::MidButton);
91
92   // Avoid jumping when labels with more/less digits
93   // appear/disappear when scrolling vertically
94
95   const QFontMetrics fm(axisWidget(QwtPlot::yLeft)->font());
96   QwtScaleDraw *sd = axisScaleDraw(QwtPlot::yLeft);
97   sd->setMinimumExtent( fm.width("100.00") );
98
99   const QColor c(Qt::darkRed);
100   _zoomer->setRubberBandPen(c);
101   _zoomer->setTrackerPen(c);
102
103   connect(this, SIGNAL( legendChecked(QwtPlotItem *, bool ) ), 
104           this, SLOT( LegendEntryChecked(QwtPlotItem *, bool ) ));
105 }
106
107 ConstellationDisplayPlot::~ConstellationDisplayPlot(){
108   delete[] _realDataPoints;
109   delete[] _imagDataPoints;
110
111   // _fft_plot_curves deleted when parent deleted
112   // _zoomer and _panner deleted when parent deleted
113 }
114
115
116
117 void ConstellationDisplayPlot::replot(){
118
119   const timespec startTime = get_highres_clock();
120   
121   QwtPlot::replot();
122
123   double differenceTime = (diff_timespec(get_highres_clock(), startTime));
124
125   differenceTime *= 99.0;
126   // Require at least a 10% duty cycle
127   if(differenceTime > (1.0/10.0)){
128     _displayIntervalTime = differenceTime;
129   }
130 }
131
132 void ConstellationDisplayPlot::PlotNewData(const double* realDataPoints, const double* imagDataPoints, const int64_t numDataPoints){
133   if(numDataPoints > 0){
134
135     if(numDataPoints != _numPoints){
136       _numPoints = numDataPoints;
137
138       delete[] _realDataPoints;
139       delete[] _imagDataPoints;
140       _realDataPoints = new double[_numPoints];
141       _imagDataPoints = new double[_numPoints];
142       
143       _plot_curve->setRawData(_realDataPoints, _imagDataPoints, _numPoints);
144     }
145     memcpy(_realDataPoints, realDataPoints, numDataPoints*sizeof(double));
146     memcpy(_imagDataPoints, imagDataPoints, numDataPoints*sizeof(double));
147
148   }
149
150   // Allow at least a 50% duty cycle
151   if(diff_timespec(get_highres_clock(), _lastReplot) > _displayIntervalTime){
152     // Only replot the screen if it is visible
153     if(isVisible()){
154       replot();
155     }
156     _lastReplot = get_highres_clock();
157   }
158 }
159
160 void ConstellationDisplayPlot::LegendEntryChecked(QwtPlotItem* plotItem, bool on){
161   plotItem->setVisible(!on);
162 }
163
164 #endif /* CONSTELLATION_DISPLAY_PLOT_C */