blob: d7604ea84535ddaf74c6b63f8f335a9e7495dabc (
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
|
#ifndef CONSTELLATION_DISPLAY_PLOT_HPP
#define CONSTELLATION_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 ConstellationDisplayPlot:public QwtPlot{
Q_OBJECT
public:
ConstellationDisplayPlot(QWidget*);
virtual ~ConstellationDisplayPlot();
void PlotNewData(const double* realDataPoints, const double* imagDataPoints,
const int64_t numDataPoints);
virtual void replot();
protected slots:
void LegendEntryChecked(QwtPlotItem *plotItem, bool on);
protected:
private:
QwtPlotCurve* _plot_curve;
QwtPlotPanner* _panner;
QwtPlotZoomer* _zoomer;
double* _realDataPoints;
double* _imagDataPoints;
timespec _lastReplot;
int64_t _numPoints;
double _displayIntervalTime;
};
#endif /* CONSTELLATION_DISPLAY_PLOT_HPP */
|