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

Last change on this file since 9 was 9, checked in by Sanahuja Guillaume, 8 years ago

gcs

File size: 471 bytes
Line 
1#ifndef LABELWIDGET_H
2#define LABELWIDGET_H
3
4#include "XmlWidget.h"
5
6class QFormLayout;
7class Layout;
8
9class FormLayout: public XmlWidget
10{
11
12 public:
13 FormLayout(Layout* parent,int row, int col,QString name,QString type);
14 ~FormLayout();
15
16 private:
17 bool IsUptodate(void);
18 virtual void SetUptodate(void)=0;
19 bool eventFilter(QObject *o, QEvent *e);
20
21 protected:
22 QFormLayout* object_layout;
23};
24
25#endif // LABELWIDGET_H
Note: See TracBrowser for help on using the repository browser.