Rev | Line | |
---|
[4662] | 1 | #ifndef ELEPLOT_H
|
---|
| 2 | #define ELEPLOT_H
|
---|
[4659] | 3 |
|
---|
| 4 | #include <QtCore>
|
---|
| 5 | #include <qwt_plot.h>
|
---|
| 6 | #include <qwt_symbol.h>
|
---|
| 7 | #include <qwt_plot_curve.h>
|
---|
[6269] | 8 | #include "t_prn.h"
|
---|
[6272] | 9 | #include "reqcanalyze.h"
|
---|
[4659] | 10 |
|
---|
| 11 | class t_availData;
|
---|
| 12 |
|
---|
[4662] | 13 | class t_elePlot: public QwtPlot {
|
---|
[4659] | 14 | Q_OBJECT
|
---|
| 15 |
|
---|
| 16 | public:
|
---|
[6272] | 17 | t_elePlot(QWidget* parent, const QMap<t_prn, t_plotData>& plotDataMap);
|
---|
[4659] | 18 |
|
---|
| 19 | private:
|
---|
| 20 | QwtPlotCurve* addCurve(const QString& name, const QwtSymbol& symbol,
|
---|
| 21 | const QVector<double>& xData,
|
---|
| 22 | const QVector<double>& yData);
|
---|
| 23 | };
|
---|
| 24 |
|
---|
| 25 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.