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

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

sources reformatted with flair-format-dir script

File size: 675 bytes
RevLine 
[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 LAYOUT_H
6#define LAYOUT_H
7
8#include "XmlWidget.h"
9
10class QWidget;
11class QGridLayout;
12
[15]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();
[9]21
[15]22 // QSplitter *splitter;
23private:
24 void Constructor(QString name);
25 void XmlEvent(QDomElement dom);
26 QGridLayout *qgridlayout;
[9]27};
28
29#endif // LAYOUT_H
Note: See TracBrowser for help on using the repository browser.