]> git.sven.stormbind.net Git - sven/vym.git/blob - scriptoutput.h
13af2ec5c20599fb5f38b747f1f705eb8e869d90
[sven/vym.git] / scriptoutput.h
1 #ifndef SCRIPTOUTPUT_H
2 #define SCRIPTOUTPUT_H
3
4 #include <QTextEdit>
5 #include <QVBoxLayout>
6
7 class ScriptOutput:public QWidget
8 {
9     Q_OBJECT
10 public:
11     ScriptOutput();
12     ~ScriptOutput();
13     void setText(const QString &text);
14     void append(const QString &text);
15
16 private:
17     QTextEdit *editor;
18     QVBoxLayout *layout;
19 };
20
21 #endif // SCRIPTOUTPUT_H