Last change
on this file since 218 was 15, checked in by Bayard Gildas, 9 years ago |
sources reformatted with flair-format-dir script
|
File size:
567 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 LABELWIDGET_H
|
---|
| 6 | #define LABELWIDGET_H
|
---|
| 7 |
|
---|
| 8 | #include "XmlWidget.h"
|
---|
| 9 |
|
---|
| 10 | class QFormLayout;
|
---|
| 11 | class Layout;
|
---|
| 12 |
|
---|
[15] | 13 | class FormLayout : public XmlWidget {
|
---|
[9] | 14 |
|
---|
[15] | 15 | public:
|
---|
| 16 | FormLayout(Layout *parent, int row, int col, QString name, QString type);
|
---|
| 17 | ~FormLayout();
|
---|
[9] | 18 |
|
---|
[15] | 19 | private:
|
---|
| 20 | bool IsUptodate(void);
|
---|
| 21 | virtual void SetUptodate(void) = 0;
|
---|
| 22 | bool eventFilter(QObject *o, QEvent *e);
|
---|
[9] | 23 |
|
---|
[15] | 24 | protected:
|
---|
| 25 | QFormLayout *object_layout;
|
---|
[9] | 26 | };
|
---|
| 27 |
|
---|
| 28 | #endif // LABELWIDGET_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.