blob: 5525bbabe956bc2379c33426f0f28449056aff92 (
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
55
56
57
58
59
60
61
62
63
64
|
#ifndef TIME_DOMAIN_DISPLAY_PLOT_HPP
#define TIME_DOMAIN_DISPLAY_PLOT_HPP
#include <cstdio>
#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, const double timeInterval);
void SetImaginaryDataVisible(const bool);
virtual void replot();
void set_yaxis(double min, double max);
void set_xaxis(double min, double max);
public slots:
void resizeSlot( QSize *s );
void SetSampleRate(double sr, double units,
const std::string &strunits);
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;
double _sampleRate;
timespec _lastReplot;
int64_t _numPoints;
};
#endif /* TIME_DOMAIN_DISPLAY_PLOT_HPP */
|