showtextdialog.h
author insilmaril
Thu, 14 Sep 2006 11:38:17 +0000
changeset 386 142e0f1e61d5
parent 379 a62478df8d46
permissions -rw-r--r--
1.8.57 - more changes in history window, Note Editor is QT4 now
     1 #ifndef SHOWTEXTDIALOG_H
     2 #define SHOWTEXTDIALOG_H
     3 
     4 #include "ui_showtextdialog.h"
     5 
     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 &);
    13 	
    14 private:
    15 	Ui::ShowTextDialog ui;
    16 };
    17 
    18 #endif // SHOWTEXTDIALOG_H
    19