author | insilmaril |
Tue Jul 07 09:34:24 2009 +0000 (2009-07-07) | |
changeset 779 | 1fb50e79661c |
permissions | -rw-r--r-- |
1 #ifndef SHOWTEXTDIALOG_H
2 #define SHOWTEXTDIALOG_H
4 #include "ui_showtextdialog.h"
6 class ShowTextDialog:public QDialog
7 {
8 Q_OBJECT
9 public:
10 ShowTextDialog (QWidget *parent=0);
11 void append (const QString &);
12 void setText (const QString &);
14 private:
15 Ui::ShowTextDialog ui;
16 };
18 #endif // SHOWTEXTDIALOG_H