[324] | 1 | // %flair:license{
|
---|
| 2 | // This file is part of the Flair framework distributed under the
|
---|
| 3 | // CECILL-C License, Version 1.0.
|
---|
| 4 | // %flair:license}
|
---|
| 5 | #ifndef DATAPLOT2D_H_INCLUDED
|
---|
| 6 | #define DATAPLOT2D_H_INCLUDED
|
---|
| 7 |
|
---|
| 8 | #include "DataRemote.h"
|
---|
| 9 | #include <stdint.h>
|
---|
| 10 | #include <QPen>
|
---|
| 11 |
|
---|
| 12 | class Layout;
|
---|
| 13 | class QwtPlot;
|
---|
| 14 | class QwtPlotCurve;
|
---|
| 15 | class QwtPlotItem;
|
---|
| 16 | class QMouseEvent;
|
---|
| 17 |
|
---|
| 18 | class DataPlot2D : public DataRemote {
|
---|
| 19 | Q_OBJECT
|
---|
| 20 |
|
---|
| 21 | public:
|
---|
| 22 | DataPlot2D(Layout *parent, int row, int col, QString plot_name,
|
---|
| 23 | QString x_name, QString y_name, float xmin, float xmax, float ymin,
|
---|
| 24 | float ymax, bool enabled, int period);
|
---|
| 25 | ~DataPlot2D();
|
---|
| 26 | void addCurve(QPen pen, QString legend, QString type);
|
---|
| 27 |
|
---|
| 28 | protected:
|
---|
| 29 | void mousePressEvent(QMouseEvent *event);
|
---|
| 30 |
|
---|
| 31 | private:
|
---|
| 32 | QwtPlot *plot;
|
---|
| 33 | void XmlEvent(QDomElement *dom);
|
---|
| 34 | void alignScales(void);
|
---|
| 35 | void plot_data(double data_x, double data_y, int index);
|
---|
| 36 | float xmin_orig, xmax_orig, ymin_orig, ymax_orig;
|
---|
| 37 |
|
---|
| 38 | QList<QwtPlotCurve *> *datas;
|
---|
| 39 | QList<QString> *datas_type;
|
---|
| 40 | QList<bool> datas_first_update;
|
---|
| 41 | QList<double *> d_x;
|
---|
| 42 | QList<double *> d_y;
|
---|
| 43 | double view_size; // en s
|
---|
| 44 |
|
---|
| 45 | bool eventFilter(QObject *, QEvent *);
|
---|
| 46 | void setYAxisScale(float ymin, float ymax);
|
---|
| 47 | void setXAxisScale(float xmin, float xmax);
|
---|
| 48 | void BufEvent(char **buf, int *buf_size, uint16_t period, bool big_endian);
|
---|
| 49 | void showCurve(QwtPlotItem *item, bool on);
|
---|
| 50 |
|
---|
| 51 | private slots:
|
---|
| 52 | void legendChecked(const QVariant &itemInfo, bool on);
|
---|
| 53 | };
|
---|
| 54 |
|
---|
| 55 | #endif // DATAPLOT2D_H_INCLUDED
|
---|