]> git.sven.stormbind.net Git - sven/vym.git/blobdiff - vymview.h
New upstream version 2.9.22
[sven/vym.git] / vymview.h
diff --git a/vymview.h b/vymview.h
deleted file mode 100644 (file)
index ed84196..0000000
--- a/vymview.h
+++ /dev/null
@@ -1,56 +0,0 @@
-#ifndef VYMVIEW_H 
-#define VYMVIEW_H
-
-#include <QItemSelectionModel>
-#include <QMainWindow>
-#include <QWidget>
-
-class DockEditor;
-class VymModel;
-class MapEditor;
-class SlideEditor;
-class TreeEditor;
-class QTreeView;
-
-class VymView:public QMainWindow
-{
-    Q_OBJECT
-public:
-    VymView(VymModel *model);
-    ~VymView();
-    void readSettings();
-    VymModel* getModel();
-    MapEditor* getMapEditor();
-    bool treeEditorIsVisible();
-    bool slideEditorIsVisible();
-    void initFocus();
-    void nextSlide();
-    void previousSlide();
-
-public slots:
-    void changeSelection (const QItemSelection &newSel, const QItemSelection &delSel);
-    void updateDockWidgetTitles();
-    void expandAll ();
-    void expandOneLevel ();
-    void collapseOneLevel ();
-    void collapseUnselected();
-    void showSelection ();
-    void toggleTreeEditor();
-    void toggleSlideEditor();
-    void setFocusMapEditor();
-
-private:
-    VymModel *model;
-    TreeEditor *treeEditor;
-    DockEditor *treeEditorDE;
-    SlideEditor *slideEditor;
-    DockEditor  *slideEditorDE;
-
-    MapEditor *mapEditor;
-    //DockEditor *mapEditorDE;
-    QItemSelectionModel *selModel;
-};
-
-
-#endif
-