Line | |
---|
1 | #ifndef DATAPLOT1D_H_INCLUDED
|
---|
2 | #define DATAPLOT1D_H_INCLUDED
|
---|
3 |
|
---|
4 | #include "ScopeFixedStep.h"
|
---|
5 | #include "DataRemote.h"
|
---|
6 |
|
---|
7 |
|
---|
8 | class Layout;
|
---|
9 | class QMouseEvent;
|
---|
10 |
|
---|
11 | class 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.