From 22e31ceb5b7eece44e7207ba068a95cd18c220a2 Mon Sep 17 00:00:00 2001 From: Simjees Abraham <simjees.abraham@nokia.com> Date: Mon, 4 Jun 2012 12:52:49 +0200 Subject: [PATCH] Qml Editor: Modified the file structure outline. The file structure outline now displays the id and the property values. Task-number: QTCREATORBUG-6209 Change-Id: I33efe20aab71647bc863cff5b5434c47e8d452a4 Reviewed-by: Christiaan Janssen <christiaan.janssen@nokia.com> --- src/plugins/qmljseditor/qmljseditor.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/plugins/qmljseditor/qmljseditor.cpp b/src/plugins/qmljseditor/qmljseditor.cpp index b22de6a47d9..a3f9bd55424 100644 --- a/src/plugins/qmljseditor/qmljseditor.cpp +++ b/src/plugins/qmljseditor/qmljseditor.cpp @@ -75,6 +75,7 @@ #include <utils/changeset.h> #include <utils/uncommentselection.h> #include <utils/qtcassert.h> +#include <utils/annotateditemdelegate.h> #include <QFileInfo> #include <QSignalMapper> @@ -1070,6 +1071,12 @@ void QmlJSTextEditorWidget::createToolBar(QmlJSEditorEditable *editor) m_outlineCombo->setModel(m_outlineModel); QTreeView *treeView = new QTreeView; + + Utils::AnnotatedItemDelegate *itemDelegate = new Utils::AnnotatedItemDelegate(this); + itemDelegate->setDelimiter(QLatin1String(" ")); + itemDelegate->setAnnotationRole(QmlOutlineModel::AnnotationRole); + treeView->setItemDelegateForColumn(0, itemDelegate); + treeView->header()->hide(); treeView->setItemsExpandable(false); treeView->setRootIsDecorated(false); -- GitLab