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

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

gcs

File size: 599 bytes
Line 
1#ifndef LAYOUT_H
2#define LAYOUT_H
3
4#include "XmlWidget.h"
5
6class QWidget;
7class QGridLayout;
8
9class Layout: public XmlWidget
10{
11 public:
12 Layout(QWidget* parent,XmlWidget* xml,QString name,QString type);
13 Layout(Layout* parent,QString name,QString type);
14 ~Layout();
15 bool IsUptodate(void);
16 void addWidget(QWidget *, int row, int column);
17 QGridLayout* getQGridLayout();
18
19 //QSplitter *splitter;
20 private:
21 void Constructor(QString name);
22 void XmlEvent(QDomElement dom);
23 QGridLayout* qgridlayout;
24};
25
26#endif // LAYOUT_H
Note: See TracBrowser for help on using the repository browser.