- Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathastigscatterplot.h
More file actions
Latest commit
27 lines (26 loc) · 598 Bytes
/
Copy pathastigscatterplot.h
File metadata and controls
27 lines (26 loc) · 598 Bytes
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
#ifndef ASTIGSCATTERPLOT_H
#defineASTIGSCATTERPLOT_H
#include<qwt_plot.h>
#include<QPointF>
#include<QString>
#include<QVector>
#include<QObject>
classmyPlotPicker;
classQwtPlotMarker;
classQwtPlotCurve;
classastigScatterPlot : publicQwtPlot
{
Q_OBJECT
QwtPlotMarker *d_origin;
QwtPlotCurve *d_curve;
myPlotPicker *Picker;
double m_max;
public:
astigScatterPlot(QWidget *parent = 0);
voidaddValue(const QString &name, QPointF p);
signals:
voidwaveSeleted(QString m);
public slots:
voidselectedwave(const QString&);
};
#endif// ASTIGSCATTERPLOT_H