Last change
on this file since 70 was 15, checked in by Bayard Gildas, 9 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 |
|
---|
10 | class QWidget;
|
---|
11 | class QGridLayout;
|
---|
12 |
|
---|
13 | class Layout : public XmlWidget {
|
---|
14 | public:
|
---|
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;
|
---|
23 | private:
|
---|
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.