X-Git-Url: https://git.sven.stormbind.net/?a=blobdiff_plain;f=slideeditor.h;fp=slideeditor.h;h=0000000000000000000000000000000000000000;hb=d483bd8e6523c23c6f1d8908a2e0611c2bc9ff4f;hp=6a753779a1a0480bea83c7b6d83aa3bad8b07dd4;hpb=7dfa3fe589d1722d49681f42cdb0bf1e6efb5223;p=sven%2Fvym.git diff --git a/slideeditor.h b/slideeditor.h deleted file mode 100644 index 6a75377..0000000 --- a/slideeditor.h +++ /dev/null @@ -1,37 +0,0 @@ -#ifndef SLIDEEDITOR_H -#define SLIDEEDITOR_H - -#include -#include - -class SlideModel; -class QTreeView; -class SlideControlWidget; -class VymModel; - -class SlideEditor: public QWidget -{ - Q_OBJECT - -public: - SlideEditor (VymModel *); - -public slots: - void previousSlide(); - void nextSlide(); - void addSlide(); - void editSlide(); - void deleteSlide(); - void moveSlideUp(); - void moveSlideDown(); - void updateSelection(QItemSelection ,QItemSelection); - -private: - VymModel *vymModel; - SlideModel *slideModel; - QTreeView *view; - SlideControlWidget *slideControl; -}; - -#endif -