Opening up the time domain and constellations plots a bit and adding accessor functio...
[debian/gnuradio] / gr-qtgui / src / lib / ConstellationDisplayPlot.h
1 #ifndef CONSTELLATION_DISPLAY_PLOT_HPP
2 #define CONSTELLATION_DISPLAY_PLOT_HPP
3
4 #include <qwt_plot.h>
5 #include <qwt_painter.h>
6 #include <qwt_plot_canvas.h>
7 #include <qwt_plot_curve.h>
8 #include <qwt_scale_engine.h>
9 #include <qwt_scale_widget.h>
10 #include <qwt_plot_zoomer.h>
11 #include <qwt_plot_panner.h>
12 #include <qwt_plot_marker.h>
13 #include <highResTimeFunctions.h>
14 #include <qwt_symbol.h>
15
16 class ConstellationDisplayPlot:public QwtPlot{
17   Q_OBJECT
18
19 public:
20   ConstellationDisplayPlot(QWidget*);
21   virtual ~ConstellationDisplayPlot();
22
23   void PlotNewData(const double* realDataPoints, const double* imagDataPoints, 
24                    const int64_t numDataPoints);
25     
26   virtual void replot();
27
28   void set_xaxis(double min, double max);
29   void set_yaxis(double min, double max);
30   void set_axis(double xmin, double xmax,
31                 double ymin, double ymax);
32
33 protected slots:
34   void LegendEntryChecked(QwtPlotItem *plotItem, bool on);
35
36 protected:
37
38 private:
39   QwtPlotCurve* _plot_curve;
40
41   QwtPlotPanner* _panner;
42   QwtPlotZoomer* _zoomer;
43   
44   double* _realDataPoints;
45   double* _imagDataPoints;
46
47   timespec _lastReplot;
48
49   int64_t _numPoints;
50
51   double _displayIntervalTime;
52 };
53
54 #endif /* CONSTELLATION_DISPLAY_PLOT_HPP */