]> git.sven.stormbind.net Git - sven/vym.git/blob - src/showtextdialog.h
Replace Pierre as the maintainer
[sven/vym.git] / src / 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     Q_OBJECT
11   public:
12     ShowTextDialog(QWidget *parent = 0);
13     void append(const QString &);
14     void setHtml(const QString &);
15     void setText(const QString &);
16     void useFixedFont(bool);
17
18   private:
19     Ui::ShowTextDialog ui;
20 };
21
22 #endif // SHOWTEXTDIALOG_H