Rev | Line | |
---|
[10] | 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}
|
---|
[9] | 5 | #ifndef LABELWIDGET_H
|
---|
| 6 | #define LABELWIDGET_H
|
---|
| 7 |
|
---|
| 8 | #include "XmlWidget.h"
|
---|
| 9 |
|
---|
| 10 | class QFormLayout;
|
---|
| 11 | class Layout;
|
---|
| 12 |
|
---|
| 13 | class FormLayout: public XmlWidget
|
---|
| 14 | {
|
---|
| 15 |
|
---|
| 16 | public:
|
---|
| 17 | FormLayout(Layout* parent,int row, int col,QString name,QString type);
|
---|
| 18 | ~FormLayout();
|
---|
| 19 |
|
---|
| 20 | private:
|
---|
| 21 | bool IsUptodate(void);
|
---|
| 22 | virtual void SetUptodate(void)=0;
|
---|
| 23 | bool eventFilter(QObject *o, QEvent *e);
|
---|
| 24 |
|
---|
| 25 | protected:
|
---|
| 26 | QFormLayout* object_layout;
|
---|
| 27 | };
|
---|
| 28 |
|
---|
| 29 | #endif // LABELWIDGET_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.