Last change
on this file since 218 was 15, checked in by Bayard Gildas, 9 years ago |
sources reformatted with flair-format-dir script
|
File size:
523 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 TEXTEDIT_H
|
---|
| 6 | #define TEXTEDIT_H
|
---|
| 7 |
|
---|
| 8 | #include "XmlWidget.h"
|
---|
| 9 |
|
---|
| 10 | class QTextEdit;
|
---|
| 11 | class QPushButton;
|
---|
| 12 | class QGridLayout;
|
---|
| 13 | class Layout;
|
---|
| 14 |
|
---|
[15] | 15 | class TextEdit : public XmlWidget {
|
---|
| 16 | public:
|
---|
| 17 | TextEdit(Layout *parent, int row, int col, QString name);
|
---|
| 18 | ~TextEdit();
|
---|
[9] | 19 |
|
---|
[15] | 20 | private:
|
---|
| 21 | QGridLayout *layout;
|
---|
| 22 | QPushButton *clear;
|
---|
| 23 | QTextEdit *text;
|
---|
| 24 | void XmlEvent(QDomElement dom);
|
---|
[9] | 25 | };
|
---|
| 26 |
|
---|
| 27 | #endif // TEXTEDIT_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.