source: flair-src/trunk/tools/FlairGCS/src/DoubleSpinBox.h@ 395

Last change on this file since 395 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: 930 bytes
RevLine 
[10]1// %flair:license{
[15]2// This file is part of the Flair framework distributed under the
3// CECILL-C License, Version 1.0.
[10]4// %flair:license}
[9]5#ifndef DOUBLESPINBOX_H
6#define DOUBLESPINBOX_H
7
8#include "FormLayout.h"
9
10class Layout;
11class QDoubleSpinBox;
12
[15]13class DoubleSpinBox : public FormLayout {
14 Q_OBJECT
[9]15
[15]16public:
17 // handle value as string, becouse double value are not exact
18 DoubleSpinBox(Layout *parent, int row, int col, QString name, QString suffix,
19 QString value, float min, float max, float step, int decimals);
20 ~DoubleSpinBox();
[9]21
[15]22private:
23 QDoubleSpinBox *doublespinbox;
24 QString doublespinbox_value;
25 void SetUptodate(void);
26 void Reset(void);
[269]27 void LoadEvent(QDomElement *dom);
[15]28 void ui_to_var(void);
29 void ui_to_xml(void);
30 bool eventFilter(QObject *o, QEvent *e);
31 void adjust_decimals(QString value);
[9]32
[15]33private slots:
34 void valuechanged(const QString &value);
[9]35};
36
37#endif // DOUBLESPINBOX_H
Note: See TracBrowser for help on using the repository browser.