blob: a441a8bfe81168a2f1e60c6c9e52b7eebedb8f0a (
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
|
#ifndef CONSTELLATION_DISPLAY_PLOT_HPP
#define CONSTELLATION_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 ConstellationDisplayPlot : public QwtPlot
{
Q_OBJECT
public:
ConstellationDisplayPlot(QWidget*);
virtual ~ConstellationDisplayPlot();
void PlotNewData(const double* realDataPoints,
const double* imagDataPoints,
const int64_t numDataPoints,
const double timeInterval);
virtual void replot();
void set_xaxis(double min, double max);
void set_yaxis(double min, double max);
void set_axis(double xmin, double xmax,
double ymin, double ymax);
void set_pen_size(int size);
public slots:
void resizeSlot( QSize *s );
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;
int64_t _penSize;
};
#endif /* CONSTELLATION_DISPLAY_PLOT_HPP */
|