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

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

lic

File size: 566 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
16{
17 public:
18 TextEdit(Layout* parent,int row, int col,QString name);
19 ~TextEdit();
20
21 private:
22 QGridLayout *layout;
23 QPushButton *clear;
24 QTextEdit *text;
25 void XmlEvent(QDomElement dom);
26};
27
28#endif // TEXTEDIT_H
Note: See TracBrowser for help on using the repository browser.