#ifndef TREEEDITOR_H #define TREEEDITOR_H #include 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