2010-08-10 11:59:02 +02:00
|
|
|
#include "qmljsoutlinetreeview.h"
|
2010-08-10 14:33:13 +02:00
|
|
|
#include "qmloutlinemodel.h"
|
|
|
|
|
|
2010-10-06 15:23:05 +02:00
|
|
|
#include <utils/annotateditemdelegate.h>
|
2010-12-20 09:15:49 +01:00
|
|
|
#include <QtGui/QMenu>
|
2010-08-10 11:59:02 +02:00
|
|
|
|
|
|
|
|
namespace QmlJSEditor {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
QmlJSOutlineTreeView::QmlJSOutlineTreeView(QWidget *parent) :
|
|
|
|
|
Utils::NavigationTreeView(parent)
|
|
|
|
|
{
|
|
|
|
|
// see also CppOutlineTreeView
|
|
|
|
|
setFocusPolicy(Qt::NoFocus);
|
|
|
|
|
setExpandsOnDoubleClick(false);
|
|
|
|
|
|
|
|
|
|
setDragEnabled(true);
|
|
|
|
|
viewport()->setAcceptDrops(true);
|
|
|
|
|
setDropIndicatorShown(true);
|
|
|
|
|
setDragDropMode(InternalMove);
|
2010-08-10 14:33:13 +02:00
|
|
|
|
2010-08-12 15:20:44 +02:00
|
|
|
setRootIsDecorated(false);
|
|
|
|
|
|
2010-10-06 15:23:05 +02:00
|
|
|
Utils::AnnotatedItemDelegate *itemDelegate = new Utils::AnnotatedItemDelegate(this);
|
|
|
|
|
itemDelegate->setDelimiter(QLatin1String(" "));
|
|
|
|
|
itemDelegate->setAnnotationRole(QmlOutlineModel::AnnotationRole);
|
2010-08-10 14:33:13 +02:00
|
|
|
setItemDelegateForColumn(0, itemDelegate);
|
2010-08-10 11:59:02 +02:00
|
|
|
}
|
|
|
|
|
|
2010-12-20 09:15:49 +01:00
|
|
|
void QmlJSOutlineTreeView::contextMenuEvent(QContextMenuEvent *event)
|
|
|
|
|
{
|
|
|
|
|
if (!event)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
QMenu contextMenu;
|
|
|
|
|
|
|
|
|
|
contextMenu.addAction(tr("Expand All"), this, SLOT(expandAll()));
|
|
|
|
|
contextMenu.addAction(tr("Collapse All"), this, SLOT(collapseAllExceptRoot()));
|
|
|
|
|
|
|
|
|
|
contextMenu.exec(event->globalPos());
|
|
|
|
|
|
|
|
|
|
event->accept();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QmlJSOutlineTreeView::collapseAllExceptRoot()
|
|
|
|
|
{
|
|
|
|
|
if (!model())
|
|
|
|
|
return;
|
|
|
|
|
const QModelIndex rootElementIndex = model()->index(0, 0, rootIndex());
|
|
|
|
|
int rowCount = model()->rowCount(rootElementIndex);
|
|
|
|
|
for (int i = 0; i < rowCount; ++i) {
|
|
|
|
|
collapse(model()->index(i, 0, rootElementIndex));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-10 11:59:02 +02:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace QmlJSEditor
|