source: flair-src/trunk/tools/FlairGCS/src/DataPlot1D.h@ 9

Last change on this file since 9 was 9, checked in by Sanahuja Guillaume, 8 years ago

gcs

File size: 673 bytes
Line 
1#ifndef DATAPLOT1D_H_INCLUDED
2#define DATAPLOT1D_H_INCLUDED
3
4#include "ScopeFixedStep.h"
5#include "DataRemote.h"
6
7
8class Layout;
9class QMouseEvent;
10
11class DataPlot1D : public ScopeFixedStep,public DataRemote
12{
13 public:
14 DataPlot1D(Layout* parent,int row, int col,QString title,float ymin, float ymax,bool enabled,int period);
15 ~DataPlot1D();
16
17 private:
18 void XmlEvent(QDomElement dom);
19 bool eventFilter(QObject *, QEvent *);
20 void BufEvent(char** buf,int *buf_size,uint16_t period,bool big_endian);
21 bool mouseEvent(QMouseEvent *event);
22 QList<QString> datas_type;
23
24};
25
26
27#endif // DATAPLOT1D_H_INCLUDED
Note: See TracBrowser for help on using the repository browser.