2010-07-08 11:26:33 +02:00
|
|
|
#include "cppoutline.h"
|
|
|
|
|
|
|
|
|
|
#include <TranslationUnit.h>
|
|
|
|
|
#include <Symbol.h>
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/ifile.h>
|
|
|
|
|
#include <cplusplus/OverviewModel.h>
|
|
|
|
|
|
|
|
|
|
#include <QtCore/QDebug>
|
2010-07-08 15:47:59 +02:00
|
|
|
#include <QtGui/QVBoxLayout>
|
|
|
|
|
#include <QtCore/QTimer>
|
2010-07-08 11:26:33 +02:00
|
|
|
|
|
|
|
|
using namespace CppEditor::Internal;
|
|
|
|
|
|
|
|
|
|
enum {
|
|
|
|
|
debug = false
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
CppOutlineTreeView::CppOutlineTreeView(QWidget *parent) :
|
|
|
|
|
QTreeView(parent)
|
|
|
|
|
{
|
|
|
|
|
// see also QmlJSOutlineTreeView
|
|
|
|
|
setFocusPolicy(Qt::NoFocus);
|
|
|
|
|
setFrameStyle(QFrame::NoFrame);
|
|
|
|
|
setAttribute(Qt::WA_MacShowFocusRect, false);
|
|
|
|
|
setUniformRowHeights(true);
|
|
|
|
|
setHeaderHidden(true);
|
|
|
|
|
setTextElideMode(Qt::ElideNone);
|
|
|
|
|
setIndentation(20);
|
|
|
|
|
setExpandsOnDoubleClick(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CppOutlineFilterModel::CppOutlineFilterModel(QObject *parent) :
|
|
|
|
|
QSortFilterProxyModel(parent)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool CppOutlineFilterModel::filterAcceptsRow(int sourceRow,
|
|
|
|
|
const QModelIndex &sourceParent) const
|
|
|
|
|
{
|
|
|
|
|
// ignore artifical "<Select Symbol>" entry
|
|
|
|
|
if (!sourceParent.isValid() && sourceRow == 0) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return QSortFilterProxyModel::filterAcceptsRow(sourceRow, sourceParent);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CppOutlineWidget::CppOutlineWidget(CPPEditor *editor) :
|
|
|
|
|
TextEditor::IOutlineWidget(),
|
|
|
|
|
m_editor(editor),
|
|
|
|
|
m_treeView(new CppOutlineTreeView(this)),
|
2010-07-08 15:47:59 +02:00
|
|
|
m_model(m_editor->overviewModel()),
|
2010-07-08 11:26:33 +02:00
|
|
|
m_proxyModel(new CppOutlineFilterModel(this)),
|
|
|
|
|
m_enableCursorSync(true),
|
|
|
|
|
m_blockCursorSync(false)
|
|
|
|
|
{
|
|
|
|
|
QVBoxLayout *layout = new QVBoxLayout;
|
|
|
|
|
layout->setMargin(0);
|
|
|
|
|
layout->setSpacing(0);
|
|
|
|
|
layout->addWidget(m_treeView);
|
|
|
|
|
setLayout(layout);
|
|
|
|
|
|
|
|
|
|
m_proxyModel->setSourceModel(m_model);
|
|
|
|
|
m_treeView->setModel(m_proxyModel);
|
|
|
|
|
|
2010-07-08 15:47:59 +02:00
|
|
|
connect(m_model, SIGNAL(modelReset()), this, SLOT(modelUpdated()));
|
|
|
|
|
modelUpdated();
|
2010-07-08 11:26:33 +02:00
|
|
|
|
2010-07-08 16:00:41 +02:00
|
|
|
connect(m_editor, SIGNAL(overviewModelIndexChanged(QModelIndex)),
|
|
|
|
|
this, SLOT(updateSelectionInTree(QModelIndex)));
|
2010-07-08 11:26:33 +02:00
|
|
|
connect(m_treeView->selectionModel(), SIGNAL(selectionChanged(QItemSelection,QItemSelection)),
|
|
|
|
|
this, SLOT(updateSelectionInText(QItemSelection)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CppOutlineWidget::setCursorSynchronization(bool syncWithCursor)
|
|
|
|
|
{
|
|
|
|
|
m_enableCursorSync = syncWithCursor;
|
|
|
|
|
if (m_enableCursorSync)
|
2010-07-08 16:00:41 +02:00
|
|
|
updateSelectionInTree(m_editor->overviewModelIndex());
|
2010-07-08 11:26:33 +02:00
|
|
|
}
|
|
|
|
|
|
2010-07-08 15:47:59 +02:00
|
|
|
void CppOutlineWidget::modelUpdated()
|
2010-07-08 11:26:33 +02:00
|
|
|
{
|
2010-07-08 15:47:59 +02:00
|
|
|
m_treeView->expandAll();
|
2010-07-08 16:00:41 +02:00
|
|
|
updateSelectionInTree(m_editor->overviewModelIndex());
|
2010-07-08 11:26:33 +02:00
|
|
|
}
|
|
|
|
|
|
2010-07-08 16:00:41 +02:00
|
|
|
void CppOutlineWidget::updateSelectionInTree(const QModelIndex &index)
|
2010-07-08 11:26:33 +02:00
|
|
|
{
|
|
|
|
|
if (!syncCursor())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
QModelIndex proxyIndex = m_proxyModel->mapFromSource(index);
|
|
|
|
|
|
|
|
|
|
m_blockCursorSync = true;
|
|
|
|
|
if (debug)
|
|
|
|
|
qDebug() << "CppOutline - updating selection due to cursor move";
|
|
|
|
|
|
|
|
|
|
m_treeView->selectionModel()->select(proxyIndex, QItemSelectionModel::ClearAndSelect);
|
|
|
|
|
m_blockCursorSync = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CppOutlineWidget::updateSelectionInText(const QItemSelection &selection)
|
|
|
|
|
{
|
|
|
|
|
if (!syncCursor())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (!selection.indexes().isEmpty()) {
|
|
|
|
|
QModelIndex proxyIndex = selection.indexes().first();
|
|
|
|
|
QModelIndex index = m_proxyModel->mapToSource(proxyIndex);
|
|
|
|
|
CPlusPlus::Symbol *symbol = m_model->symbolFromIndex(index);
|
|
|
|
|
if (symbol) {
|
|
|
|
|
m_blockCursorSync = true;
|
|
|
|
|
unsigned line, column;
|
2010-07-08 15:47:59 +02:00
|
|
|
|
|
|
|
|
m_model->document()->translationUnit()->getPosition(symbol->startOffset(), &line, &column);
|
2010-07-08 11:26:33 +02:00
|
|
|
|
|
|
|
|
if (debug)
|
|
|
|
|
qDebug() << "CppOutline - moving cursor to" << line << column - 1;
|
|
|
|
|
|
|
|
|
|
// line has to be 1 based, column 0 based!
|
|
|
|
|
m_editor->gotoLine(line, column - 1);
|
|
|
|
|
m_blockCursorSync = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool CppOutlineWidget::syncCursor()
|
|
|
|
|
{
|
|
|
|
|
return m_enableCursorSync && !m_blockCursorSync;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool CppOutlineWidgetFactory::supportsEditor(Core::IEditor *editor) const
|
|
|
|
|
{
|
|
|
|
|
if (qobject_cast<CPPEditorEditable*>(editor))
|
|
|
|
|
return true;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TextEditor::IOutlineWidget *CppOutlineWidgetFactory::createWidget(Core::IEditor *editor)
|
|
|
|
|
{
|
|
|
|
|
CPPEditorEditable *cppEditable = qobject_cast<CPPEditorEditable*>(editor);
|
|
|
|
|
CPPEditor *cppEditor = qobject_cast<CPPEditor*>(cppEditable->widget());
|
|
|
|
|
Q_ASSERT(cppEditor);
|
|
|
|
|
|
|
|
|
|
CppOutlineWidget *widget = new CppOutlineWidget(cppEditor);
|
|
|
|
|
|
|
|
|
|
return widget;
|
|
|
|
|
}
|