source: flair-src/trunk/tools/FlairGCS/src/FormLayout.h

Last change on this file was 15, checked in by Bayard Gildas, 8 years ago

sources reformatted with flair-format-dir script

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