]> git.sven.stormbind.net Git - sven/vym.git/blobdiff - treeeditor.h
New upstream version 2.9.22
[sven/vym.git] / treeeditor.h
diff --git a/treeeditor.h b/treeeditor.h
deleted file mode 100644 (file)
index f5c0c14..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-#ifndef TREEEDITOR_H
-#define TREEEDITOR_H
-
-#include <QTreeView>
-
-class VymModel;
-
-/*! \brief TreeView widget in vym to display and edit a map, based on
- * QTreeView */
-
-
-class TreeEditor : public QTreeView {  
-    Q_OBJECT
-
-public:
-    TreeEditor(VymModel *m=NULL);
-    ~TreeEditor();
-    void init();
-    QModelIndex getSelectedIndex();
-private slots:
-    void cursorUp();
-    void cursorDown();
-
-private:
-    VymModel *model;
-};
-
-#endif
-