source: flair-src/trunk/tools/FlairGCS/src/CheckBox.h@ 304

Last change on this file since 304 was 269, checked in by Sanahuja Guillaume, 6 years ago

flairgcs:
speed up processing time when receiving datas from uav
triger watchdog while receiving datas from uav
(avoids connection lost in uav)

File size: 639 bytes
Line 
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 CHECKBOX_H
6#define CHECKBOX_H
7
8#include "FormLayout.h"
9
10class Layout;
11class QCheckBox;
12
13class CheckBox : public FormLayout {
14 Q_OBJECT
15
16public:
17 CheckBox(Layout *parent, int row, int col, QString name, bool value);
18 ~CheckBox();
19
20private:
21 QCheckBox *checkbox;
22 bool checkbox_value;
23 void SetUptodate(void);
24 void Reset(void);
25 void LoadEvent(QDomElement *dom);
26
27 void ui_to_var(void);
28 void ui_to_xml(void);
29
30private slots:
31 void valuechanged(bool value);
32};
33
34#endif // CHECKBOX_H
Note: See TracBrowser for help on using the repository browser.