blob: 0a10be1741f256ec6dbc266d49cdaae0939703fe (
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
|
#ifndef TIME_DOMAIN_DISPLAY_PLOT_HPP
#define TIME_DOMAIN_DISPLAY_PLOT_HPP
#include <qwt_plot.h>
#include <qwt_painter.h>
#include <qwt_plot_canvas.h>
#include <qwt_plot_curve.h>
#include <qwt_scale_engine.h>
#include <qwt_scale_widget.h>
#include <qwt_plot_zoomer.h>
#include <qwt_plot_panner.h>
#include <qwt_plot_marker.h>
#include <highResTimeFunctions.h>
#include <qwt_symbol.h>
class TimeDomainDisplayPlot:public QwtPlot{
Q_OBJECT
public:
TimeDomainDisplayPlot(QWidget*);
virtual ~TimeDomainDisplayPlot();
void PlotNewData(const double* realDataPoints, const double* imagDataPoints, const int64_t numDataPoints);
void SetImaginaryDataVisible(const bool);
virtual void replot();
protected slots:
void LegendEntryChecked(QwtPlotItem *plotItem, bool on);
protected:
private:
void _resetXAxisPoints();
QwtPlotCurve* _real_plot_curve;
QwtPlotCurve* _imag_plot_curve;
QwtPlotPanner* _panner;
QwtPlotZoomer* _zoomer;
double* _realDataPoints;
double* _imagDataPoints;
double* _xAxisPoints;
timespec _lastReplot;
int64_t _numPoints;
double _displayIntervalTime;
};
#endif /* TIME_DOMAIN_DISPLAY_PLOT_HPP */
|