diff -r 000000000000 -r a6931cd6309a treeeditor.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/treeeditor.h Fri May 15 15:22:15 2009 +0000 @@ -0,0 +1,28 @@ +#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); + ~TreeEditor(); + +private slots: + void cursorUp(); + void cursorDown(); + +private: + VymModel *model; +}; + +#endif +