showtextdialog.h
changeset 379 a62478df8d46
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/showtextdialog.h	Wed Sep 06 12:47:06 2006 +0000
     1.3 @@ -0,0 +1,19 @@
     1.4 +#ifndef SHOWTEXTDIALOG_H
     1.5 +#define SHOWTEXTDIALOG_H
     1.6 +
     1.7 +#include "ui_showtextdialog.h"
     1.8 +
     1.9 +class ShowTextDialog:public QDialog
    1.10 +{
    1.11 +	Q_OBJECT
    1.12 +public:
    1.13 +	ShowTextDialog (QWidget *parent=0);
    1.14 +	void append     (const QString &);
    1.15 +	void setText    (const QString &);
    1.16 +	
    1.17 +private:
    1.18 +	Ui::ShowTextDialog ui;
    1.19 +};
    1.20 +
    1.21 +#endif // SHOWTEXTDIALOG_H
    1.22 +