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

Last change on this file since 9 was 9, checked in by Sanahuja Guillaume, 8 years ago

gcs

File size: 426 bytes
Line 
1#ifndef TEXTEDIT_H
2#define TEXTEDIT_H
3
4#include "XmlWidget.h"
5
6class QTextEdit;
7class QPushButton;
8class QGridLayout;
9class Layout;
10
11class TextEdit: public XmlWidget
12{
13 public:
14 TextEdit(Layout* parent,int row, int col,QString name);
15 ~TextEdit();
16
17 private:
18 QGridLayout *layout;
19 QPushButton *clear;
20 QTextEdit *text;
21 void XmlEvent(QDomElement dom);
22};
23
24#endif // TEXTEDIT_H
Note: See TracBrowser for help on using the repository browser.