Qml Outline: Support rearrangement of the items via drag&drop

This commit is contained in:
Kai Koehne
2010-07-19 14:28:53 +02:00
parent 2e949c7015
commit e708eb3d83
3 changed files with 316 additions and 16 deletions

View File

@@ -25,6 +25,11 @@ QmlJSOutlineTreeView::QmlJSOutlineTreeView(QWidget *parent) :
// see also CppOutlineTreeView
setFocusPolicy(Qt::NoFocus);
setExpandsOnDoubleClick(false);
setDragEnabled(true);
viewport()->setAcceptDrops(true);
setDropIndicatorShown(true);
setDragDropMode(InternalMove);
}
QmlJSOutlineFilterModel::QmlJSOutlineFilterModel(QObject *parent) :