]> git.sven.stormbind.net Git - sven/vym.git/blob - showtextdialog.h
Import Upstream version 2.6.11
[sven/vym.git] / showtextdialog.h
1 #ifndef SHOWTEXTDIALOG_H
2 #define SHOWTEXTDIALOG_H
3
4 #include "ui_showtextdialog.h"
5
6 // #include <QLayout>
7 // #include <QTextBrowser>
8
9 class ShowTextDialog:public QDialog
10 {
11     Q_OBJECT
12 public:
13     ShowTextDialog (QWidget *parent=0);
14     void append     (const QString &);
15     void setHtml    (const QString &);
16     void setText    (const QString &);
17     void useFixedFont (bool);
18     
19 private:
20     Ui::ShowTextDialog ui;
21 };
22
23 #endif // SHOWTEXTDIALOG_H
24