qmca  0.0.20
mcaplotcurve.h
Go to the documentation of this file.
1 #ifndef MCAPLOTCURVE_H
2 #define MCAPLOTCURVE_H
3 
4 #include <QObject>
5 #include <qwt_plot_curve.h>
6 
7 class QwtPlot;
8 class EpicsMCA;
9 class MCAController;
10 
11 class MCAPlotCurve : public QObject, public QwtPlotCurve
12 {
13  Q_OBJECT;
14 
15  public:
16  MCAPlotCurve(QObject *parent, const QString &title, MCAController *ctrl, QwtPlot *plot, EpicsMCA* mca);
17  virtual ~MCAPlotCurve();
18 
19  public slots:
20  void arrayValueChanged();
21 
22  private:
24  QwtPlot *m_Plot;
26 };
27 
28 #endif
MCAController * m_Controller
Definition: mcaplotcurve.h:23
EpicsMCA * m_MCA
Definition: mcaplotcurve.h:25
virtual ~MCAPlotCurve()
QwtPlot * m_Plot
Definition: mcaplotcurve.h:24
MCAPlotCurve(QObject *parent, const QString &title, MCAController *ctrl, QwtPlot *plot, EpicsMCA *mca)
Definition: mcaplotcurve.cpp:7
void arrayValueChanged()