X-Git-Url: https://git.sven.stormbind.net/?a=blobdiff_plain;f=src%2Fdockeditor.h;fp=src%2Fdockeditor.h;h=d8027215a5594aaa0038e08fdcead94c846728d6;hb=d483bd8e6523c23c6f1d8908a2e0611c2bc9ff4f;hp=0000000000000000000000000000000000000000;hpb=7dfa3fe589d1722d49681f42cdb0bf1e6efb5223;p=sven%2Fvym.git diff --git a/src/dockeditor.h b/src/dockeditor.h new file mode 100644 index 0000000..d802721 --- /dev/null +++ b/src/dockeditor.h @@ -0,0 +1,23 @@ +#ifndef DOCKEDITOR_H +#define DOCKEDITOR_H + +#include + +class VymModel; + +class DockEditor : public QDockWidget { + Q_OBJECT + public: + DockEditor(); + DockEditor(QString title, QWidget *p = 0, VymModel *m = 0); + void init(); + + public slots: + void changeTopLevel(bool topLevel); + + private: + QString editorTitle; + VymModel *model; +}; + +#endif