]> git.sven.stormbind.net Git - sven/vym.git/blob - src/dockeditor.h
Replace Pierre as the maintainer
[sven/vym.git] / src / dockeditor.h
1 #ifndef DOCKEDITOR_H
2 #define DOCKEDITOR_H
3
4 #include <QDockWidget>
5
6 class VymModel;
7
8 class DockEditor : public QDockWidget {
9     Q_OBJECT
10   public:
11     DockEditor();
12     DockEditor(QString title, QWidget *p = 0, VymModel *m = 0);
13     void init();
14
15   public slots:
16     void changeTopLevel(bool topLevel);
17
18   private:
19     QString editorTitle;
20     VymModel *model;
21 };
22
23 #endif