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

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

sources reformatted with flair-format-dir script

File size: 675 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 LAYOUT_H
6#define LAYOUT_H
7
8#include "XmlWidget.h"
9
10class QWidget;
11class QGridLayout;
12
13class Layout : public XmlWidget {
14public:
15 Layout(QWidget *parent, XmlWidget *xml, QString name, QString type);
16 Layout(Layout *parent, QString name, QString type);
17 ~Layout();
18 bool IsUptodate(void);
19 void addWidget(QWidget *, int row, int column);
20 QGridLayout *getQGridLayout();
21
22 // QSplitter *splitter;
23private:
24 void Constructor(QString name);
25 void XmlEvent(QDomElement dom);
26 QGridLayout *qgridlayout;
27};
28
29#endif // LAYOUT_H
Note: See TracBrowser for help on using the repository browser.