source: flair-src/trunk/tools/FlairGCS/src/TextEdit.h@ 305

Last change on this file since 305 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: 524 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 TEXTEDIT_H
6#define TEXTEDIT_H
7
8#include "XmlWidget.h"
9
10class QTextEdit;
11class QPushButton;
12class QGridLayout;
13class Layout;
14
15class TextEdit : public XmlWidget {
16public:
17 TextEdit(Layout *parent, int row, int col, QString name);
18 ~TextEdit();
19
20private:
21 QGridLayout *layout;
22 QPushButton *clear;
23 QTextEdit *text;
24 void XmlEvent(QDomElement *dom);
25};
26
27#endif // TEXTEDIT_H
Note: See TracBrowser for help on using the repository browser.