Last change
on this file since 172 was 15, checked in by Bayard Gildas, 9 years ago |
sources reformatted with flair-format-dir script
|
File size:
929 bytes
|
Rev | Line | |
---|
[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 |
|
---|
| 10 | class Layout;
|
---|
| 11 | class QDoubleSpinBox;
|
---|
| 12 |
|
---|
[15] | 13 | class DoubleSpinBox : public FormLayout {
|
---|
| 14 | Q_OBJECT
|
---|
[9] | 15 |
|
---|
[15] | 16 | public:
|
---|
| 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] | 22 | private:
|
---|
| 23 | QDoubleSpinBox *doublespinbox;
|
---|
| 24 | QString doublespinbox_value;
|
---|
| 25 | void SetUptodate(void);
|
---|
| 26 | void Reset(void);
|
---|
| 27 | void LoadEvent(QDomElement dom);
|
---|
| 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] | 33 | private slots:
|
---|
| 34 | void valuechanged(const QString &value);
|
---|
[9] | 35 | };
|
---|
| 36 |
|
---|
| 37 | #endif // DOUBLESPINBOX_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.