Last change
on this file since 388 was 269, checked in by Sanahuja Guillaume, 6 years ago |
flairgcs:
speed up processing time when receiving datas from uav
triger watchdog while receiving datas from uav
(avoids connection lost in uav)
|
File size:
676 bytes
|
Rev | Line | |
---|
[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 |
|
---|
| 10 | class QWidget;
|
---|
| 11 | class QGridLayout;
|
---|
| 12 |
|
---|
[15] | 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();
|
---|
[9] | 21 |
|
---|
[15] | 22 | // QSplitter *splitter;
|
---|
| 23 | private:
|
---|
| 24 | void Constructor(QString name);
|
---|
[269] | 25 | void XmlEvent(QDomElement *dom);
|
---|
[15] | 26 | QGridLayout *qgridlayout;
|
---|
[9] | 27 | };
|
---|
| 28 |
|
---|
| 29 | #endif // LAYOUT_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.