Last change
on this file since 112 was 15, checked in by Bayard Gildas, 9 years ago |
sources reformatted with flair-format-dir script
|
File size:
638 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 |
|
---|
10 | class Layout;
|
---|
11 | class QCheckBox;
|
---|
12 |
|
---|
13 | class CheckBox : public FormLayout {
|
---|
14 | Q_OBJECT
|
---|
15 |
|
---|
16 | public:
|
---|
17 | CheckBox(Layout *parent, int row, int col, QString name, bool value);
|
---|
18 | ~CheckBox();
|
---|
19 |
|
---|
20 | private:
|
---|
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 |
|
---|
30 | private slots:
|
---|
31 | void valuechanged(bool value);
|
---|
32 | };
|
---|
33 |
|
---|
34 | #endif // CHECKBOX_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.