diff -r 1ab7353f8f44 -r a62478df8d46 showtextdialog.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/showtextdialog.h Wed Sep 06 12:47:06 2006 +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 +