diff -r 000000000000 -r 4a84d7e444d8 showtextdialog.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/showtextdialog.h Thu Jan 21 11:56:57 2010 +0000 @@ -0,0 +1,19 @@ +#ifndef SHOWTEXTDIALOG_H +#define SHOWTEXTDIALOG_H + +#include "ui_showtextdialog.h" + +class ShowTextDialog:public QDialog +{ + Q_OBJECT +public: + ShowTextDialog (QWidget *parent=0); + void append (const QString &); + void setText (const QString &); + +private: + Ui::ShowTextDialog ui; +}; + +#endif // SHOWTEXTDIALOG_H +