Imported Upstream version 3.2.2
[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 <cstdio>
5 #include <qwt_plot.h>
6 #include <qwt_painter.h>
7 #include <qwt_plot_canvas.h>
8 #include <qwt_plot_curve.h>
9 #include <qwt_scale_engine.h>
10 #include <qwt_scale_widget.h>
11 #include <qwt_plot_zoomer.h>
12 #include <qwt_plot_panner.h>
13 #include <qwt_plot_marker.h>
14 #include <highResTimeFunctions.h>
15 #include <qwt_symbol.h>
16
17 class TimeDomainDisplayPlot:public QwtPlot{
18   Q_OBJECT
19
20 public:
21   TimeDomainDisplayPlot(QWidget*);
22   virtual ~TimeDomainDisplayPlot();
23
24   void PlotNewData(const double* realDataPoints, const double* imagDataPoints, const int64_t numDataPoints);
25     
26   void SetImaginaryDataVisible(const bool);
27                                    
28   virtual void replot();
29
30   void set_yaxis(double min, double max);
31
32 protected slots:
33   void LegendEntryChecked(QwtPlotItem *plotItem, bool on);
34
35 protected:
36
37 private:
38   void _resetXAxisPoints();
39
40   QwtPlotCurve* _real_plot_curve;
41   QwtPlotCurve* _imag_plot_curve;
42
43   QwtPlotPanner* _panner;
44   QwtPlotZoomer* _zoomer;
45   
46   double* _realDataPoints;
47   double* _imagDataPoints;
48   double* _xAxisPoints;
49
50   timespec _lastReplot;
51
52   int64_t _numPoints;
53
54   double _displayIntervalTime;
55 };
56
57 #endif /* TIME_DOMAIN_DISPLAY_PLOT_HPP */