Opening up the time domain and constellations plots a bit and adding accessor functio...
[debian/gnuradio] / gr-qtgui / src / lib / TimeDomainDisplayPlot.h
1 #ifndef TIME_DOMAIN_DISPLAY_PLOT_HPP
2 #define TIME_DOMAIN_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 TimeDomainDisplayPlot:public QwtPlot{
17   Q_OBJECT
18
19 public:
20   TimeDomainDisplayPlot(QWidget*);
21   virtual ~TimeDomainDisplayPlot();
22
23   void PlotNewData(const double* realDataPoints, const double* imagDataPoints, const int64_t numDataPoints);
24     
25   void SetImaginaryDataVisible(const bool);
26                                    
27   virtual void replot();
28
29   void set_yaxis(double min, double max);
30
31 protected slots:
32   void LegendEntryChecked(QwtPlotItem *plotItem, bool on);
33
34 protected:
35
36 private:
37   void _resetXAxisPoints();
38
39   QwtPlotCurve* _real_plot_curve;
40   QwtPlotCurve* _imag_plot_curve;
41
42   QwtPlotPanner* _panner;
43   QwtPlotZoomer* _zoomer;
44   
45   double* _realDataPoints;
46   double* _imagDataPoints;
47   double* _xAxisPoints;
48
49   timespec _lastReplot;
50
51   int64_t _numPoints;
52
53   double _displayIntervalTime;
54 };
55
56 #endif /* TIME_DOMAIN_DISPLAY_PLOT_HPP */