1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
/*
* KDevelop outline view
* Copyright 2010, 2015 Alex Richardson <alex.richardson@gmx.de>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "outlinewidget.h"
#include <QAction>
#include <QVBoxLayout>
#include <QTreeView>
#include <QLineEdit>
#include <QIcon>
#include <QWidgetAction>
#include <KLocalizedString>
#include <KRecursiveFilterProxyModel>
#include "outlineviewplugin.h"
#include "outlinemodel.h"
using namespace KDevelop;
OutlineWidget::OutlineWidget(QWidget* parent, OutlineViewPlugin* plugin)
: QWidget(parent)
, m_plugin(plugin)
, m_model(new OutlineModel(this))
, m_tree(new QTreeView(this))
, m_proxy(new KRecursiveFilterProxyModel(this))
, m_filter(new QLineEdit(this))
{
setObjectName(QStringLiteral("Outline View"));
setWindowTitle(i18n("Outline"));
setWhatsThis(i18n("Outline View"));
setWindowIcon(QIcon::fromTheme(QStringLiteral("code-class"), windowIcon())); //TODO: better icon?
m_proxy->setSourceModel(m_model);
m_proxy->setFilterCaseSensitivity(Qt::CaseInsensitive);
m_proxy->setSortCaseSensitivity(Qt::CaseInsensitive);
m_proxy->setDynamicSortFilter(false);
m_tree->setModel(m_proxy);
m_tree->setHeaderHidden(true);
// sort action
m_sortAlphabeticallyAction = new QAction(QIcon::fromTheme(QStringLiteral("view-sort-ascending")),
i18n("Sort Alphabetically"), this);
m_sortAlphabeticallyAction->setToolTip(i18n("Sort items alphabetically"));
m_sortAlphabeticallyAction->setCheckable(true);
connect(m_sortAlphabeticallyAction, &QAction::triggered, this, [this](bool sort) {
// calling sort with -1 will restore the original order
m_proxy->sort(sort ? 0 : -1, Qt::AscendingOrder);
m_sortAlphabeticallyAction->setChecked(sort);
});
addAction(m_sortAlphabeticallyAction);
// filter
connect(m_filter, &QLineEdit::textChanged, m_proxy, &KRecursiveFilterProxyModel::setFilterFixedString);
connect(m_tree, &QTreeView::activated, this, &OutlineWidget::activated);
m_filter->setPlaceholderText(i18n("Filter..."));
auto filterAction = new QWidgetAction(this);
filterAction->setDefaultWidget(m_filter);
addAction(filterAction);
setFocusProxy(m_filter);
QVBoxLayout* vbox = new QVBoxLayout(this);
vbox->setMargin(0);
vbox->addWidget(m_tree);
setLayout(vbox);
expandFirstLevel();
connect(m_model, &QAbstractItemModel::modelReset, this, &OutlineWidget::expandFirstLevel);
}
void OutlineWidget::activated(const QModelIndex& index)
{
QModelIndex realIndex = m_proxy->mapToSource(index);
m_model->activate(realIndex);
}
OutlineWidget::~OutlineWidget()
{
}
void OutlineWidget::expandFirstLevel()
{
for (int i = 0; i < m_proxy->rowCount(); i++) {
m_tree->expand(m_proxy->index(i, 0));
}
}
|