summaryrefslogtreecommitdiffstats
path: root/mappingtreewidget.h
diff options
context:
space:
mode:
authorArno <am@disconnect.de>2012-03-02 20:08:40 +0100
committerArno <am@disconnect.de>2012-03-02 20:08:40 +0100
commitee29bb41dc9c4d4dd6fc9bfd3fb9ad5cc3bd1569 (patch)
tree4801c4b23215259cec9620a32593c656fdfd8ede /mappingtreewidget.h
parent11bf52b6cf1c27a75715a8379e7893b8d1e16bf0 (diff)
downloadSheMov-ee29bb41dc9c4d4dd6fc9bfd3fb9ad5cc3bd1569.tar.gz
SheMov-ee29bb41dc9c4d4dd6fc9bfd3fb9ad5cc3bd1569.tar.bz2
SheMov-ee29bb41dc9c4d4dd6fc9bfd3fb9ad5cc3bd1569.zip
Make it possible to move mappings
Move mappings by context menu. Select new parent by QComboBox with available paths, items separated by "/". Note that hell will break loose if a mapping name contains "/". Will be fixed later. Since mapping views don't have setSortingEnabled(), make SmTreeModel::addRow() sort items. This fixes a long standing bug in SmTreeModel::reparent(): Since it alters the model, newParent has to be a QPersistentModelIndex to stay consistent.
Diffstat (limited to 'mappingtreewidget.h')
-rw-r--r--mappingtreewidget.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/mappingtreewidget.h b/mappingtreewidget.h
index 7050743..76e7585 100644
--- a/mappingtreewidget.h
+++ b/mappingtreewidget.h
@@ -10,11 +10,13 @@
#include <QWidget>
#include <QTreeView>
+#include <QDialog>
class MappingTreeView;
class MappingTreeModel;
class QComboBox;
class QPushButton;
+class QLabel;
class QSortFilterProxyModel;
class QStringListModel;
class QAction;
@@ -41,6 +43,7 @@ class MappingTreeWidget : public QWidget {
void typeChanged(QString type);
void editChild();
void selectionChanged();
+ void moveChild();
signals:
void mappingChanged(int);
@@ -59,6 +62,7 @@ class MappingTreeWidget : public QWidget {
QLineEdit *mEdit;
QAction *mDeleteChildA;
QAction *mEditChildA;
+ QAction *mMoveChildA;
};
class MappingTreeView : public QTreeView {