forked from qt-creator/qt-creator
Change-Id: I370f72fcf7a24216ee189979ce6b5c8bfc5f4140 Reviewed-by: David Schulz <david.schulz@digia.com>
474 lines
15 KiB
C++
474 lines
15 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
|
** Contact: http://www.qt-project.org/legal
|
|
**
|
|
** This file is part of Qt Creator.
|
|
**
|
|
** Commercial License Usage
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
** accordance with the commercial license agreement provided with the
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
|
**
|
|
** GNU Lesser General Public License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
** General Public License version 2.1 as published by the Free Software
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
** packaging of this file. Please review the following information to
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
**
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
**
|
|
****************************************************************************/
|
|
|
|
#include "projecttreewidget.h"
|
|
|
|
#include "projectexplorer.h"
|
|
#include "projectnodes.h"
|
|
#include "project.h"
|
|
#include "session.h"
|
|
#include "projectmodels.h"
|
|
|
|
#include <coreplugin/actionmanager/command.h>
|
|
#include <coreplugin/coreconstants.h>
|
|
#include <coreplugin/icore.h>
|
|
#include <coreplugin/editormanager/editormanager.h>
|
|
#include <coreplugin/editormanager/ieditor.h>
|
|
|
|
#include <utils/navigationtreeview.h>
|
|
|
|
#include <QDebug>
|
|
#include <QSettings>
|
|
|
|
#include <QStyledItemDelegate>
|
|
#include <QVBoxLayout>
|
|
#include <QToolButton>
|
|
#include <QAction>
|
|
#include <QMenu>
|
|
|
|
using namespace Core;
|
|
using namespace ProjectExplorer;
|
|
using namespace ProjectExplorer::Internal;
|
|
|
|
namespace {
|
|
|
|
class ProjectTreeItemDelegate : public QStyledItemDelegate
|
|
{
|
|
public:
|
|
ProjectTreeItemDelegate(QObject *parent) : QStyledItemDelegate(parent)
|
|
{ }
|
|
|
|
void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const
|
|
{
|
|
QStyleOptionViewItem opt = option;
|
|
if (!index.data(ProjectExplorer::Project::EnabledRole).toBool())
|
|
opt.state &= ~QStyle::State_Enabled;
|
|
QStyledItemDelegate::paint(painter, opt, index);
|
|
}
|
|
};
|
|
|
|
bool debug = false;
|
|
}
|
|
|
|
class ProjectTreeView : public Utils::NavigationTreeView
|
|
{
|
|
public:
|
|
ProjectTreeView()
|
|
{
|
|
setEditTriggers(QAbstractItemView::EditKeyPressed);
|
|
setContextMenuPolicy(Qt::CustomContextMenu);
|
|
m_context = new IContext(this);
|
|
m_context->setContext(Context(ProjectExplorer::Constants::C_PROJECT_TREE));
|
|
m_context->setWidget(this);
|
|
ICore::addContextObject(m_context);
|
|
}
|
|
~ProjectTreeView()
|
|
{
|
|
ICore::removeContextObject(m_context);
|
|
delete m_context;
|
|
}
|
|
|
|
private:
|
|
IContext *m_context;
|
|
};
|
|
|
|
/*!
|
|
/class ProjectTreeWidget
|
|
|
|
Shows the projects in form of a tree.
|
|
*/
|
|
ProjectTreeWidget::ProjectTreeWidget(QWidget *parent)
|
|
: QWidget(parent),
|
|
m_explorer(ProjectExplorerPlugin::instance()),
|
|
m_view(0),
|
|
m_model(0),
|
|
m_filterProjectsAction(0),
|
|
m_autoSync(false),
|
|
m_autoExpand(true)
|
|
{
|
|
m_model = new FlatModel(SessionManager::sessionNode(), this);
|
|
Project *pro = SessionManager::startupProject();
|
|
if (pro)
|
|
m_model->setStartupProject(pro->rootProjectNode());
|
|
NodesWatcher *watcher = new NodesWatcher(this);
|
|
SessionManager::sessionNode()->registerWatcher(watcher);
|
|
|
|
connect(watcher, SIGNAL(foldersAboutToBeRemoved(FolderNode*,QList<FolderNode*>)),
|
|
this, SLOT(foldersAboutToBeRemoved(FolderNode*,QList<FolderNode*>)));
|
|
connect(watcher, SIGNAL(filesAboutToBeRemoved(FolderNode*,QList<FileNode*>)),
|
|
this, SLOT(filesAboutToBeRemoved(FolderNode*,QList<FileNode*>)));
|
|
|
|
m_view = new ProjectTreeView;
|
|
m_view->setModel(m_model);
|
|
m_view->setItemDelegate(new ProjectTreeItemDelegate(this));
|
|
setFocusProxy(m_view);
|
|
initView();
|
|
|
|
QVBoxLayout *layout = new QVBoxLayout();
|
|
layout->addWidget(m_view);
|
|
layout->setContentsMargins(0, 0, 0, 0);
|
|
setLayout(layout);
|
|
|
|
m_filterProjectsAction = new QAction(tr("Simplify Tree"), this);
|
|
m_filterProjectsAction->setCheckable(true);
|
|
m_filterProjectsAction->setChecked(false); // default is the traditional complex tree
|
|
connect(m_filterProjectsAction, SIGNAL(toggled(bool)), this, SLOT(setProjectFilter(bool)));
|
|
|
|
m_filterGeneratedFilesAction = new QAction(tr("Hide Generated Files"), this);
|
|
m_filterGeneratedFilesAction->setCheckable(true);
|
|
m_filterGeneratedFilesAction->setChecked(true);
|
|
connect(m_filterGeneratedFilesAction, SIGNAL(toggled(bool)), this, SLOT(setGeneratedFilesFilter(bool)));
|
|
|
|
// connections
|
|
connect(m_model, SIGNAL(modelReset()),
|
|
this, SLOT(initView()));
|
|
connect(m_view, SIGNAL(activated(QModelIndex)),
|
|
this, SLOT(openItem(QModelIndex)));
|
|
connect(m_view->selectionModel(), SIGNAL(currentChanged(QModelIndex,QModelIndex)),
|
|
this, SLOT(handleCurrentItemChange(QModelIndex)));
|
|
connect(m_view, SIGNAL(customContextMenuRequested(QPoint)),
|
|
this, SLOT(showContextMenu(QPoint)));
|
|
|
|
QObject *sessionManager = SessionManager::instance();
|
|
connect(sessionManager, SIGNAL(singleProjectAdded(ProjectExplorer::Project*)),
|
|
this, SLOT(handleProjectAdded(ProjectExplorer::Project*)));
|
|
connect(sessionManager, SIGNAL(startupProjectChanged(ProjectExplorer::Project*)),
|
|
this, SLOT(startupProjectChanged(ProjectExplorer::Project*)));
|
|
|
|
connect(sessionManager, SIGNAL(aboutToLoadSession(QString)),
|
|
this, SLOT(disableAutoExpand()));
|
|
connect(sessionManager, SIGNAL(sessionLoaded(QString)),
|
|
this, SLOT(loadExpandData()));
|
|
connect(sessionManager, SIGNAL(aboutToSaveSession()),
|
|
this, SLOT(saveExpandData()));
|
|
|
|
m_toggleSync = new QToolButton;
|
|
m_toggleSync->setIcon(QIcon(QLatin1String(Core::Constants::ICON_LINK)));
|
|
m_toggleSync->setCheckable(true);
|
|
m_toggleSync->setChecked(autoSynchronization());
|
|
m_toggleSync->setToolTip(tr("Synchronize with Editor"));
|
|
connect(m_toggleSync, SIGNAL(clicked(bool)), this, SLOT(toggleAutoSynchronization()));
|
|
|
|
setAutoSynchronization(true);
|
|
}
|
|
|
|
void ProjectTreeWidget::disableAutoExpand()
|
|
{
|
|
m_autoExpand = false;
|
|
}
|
|
|
|
void ProjectTreeWidget::loadExpandData()
|
|
{
|
|
m_autoExpand = true;
|
|
QStringList data = SessionManager::value(QLatin1String("ProjectTree.ExpandData")).toStringList();
|
|
recursiveLoadExpandData(m_view->rootIndex(), data.toSet());
|
|
}
|
|
|
|
void ProjectTreeWidget::recursiveLoadExpandData(const QModelIndex &index, const QSet<QString> &data)
|
|
{
|
|
if (data.contains(m_model->nodeForIndex(index)->path())) {
|
|
m_view->expand(index);
|
|
int count = m_model->rowCount(index);
|
|
for (int i = 0; i < count; ++i)
|
|
recursiveLoadExpandData(index.child(i, 0), data);
|
|
}
|
|
}
|
|
|
|
void ProjectTreeWidget::saveExpandData()
|
|
{
|
|
QStringList data;
|
|
recursiveSaveExpandData(m_view->rootIndex(), &data);
|
|
// TODO if there are multiple ProjectTreeWidgets, the last one saves the data
|
|
SessionManager::setValue(QLatin1String("ProjectTree.ExpandData"), data);
|
|
}
|
|
|
|
void ProjectTreeWidget::recursiveSaveExpandData(const QModelIndex &index, QStringList *data)
|
|
{
|
|
Q_ASSERT(data);
|
|
if (m_view->isExpanded(index)) {
|
|
data->append(m_model->nodeForIndex(index)->path());
|
|
int count = m_model->rowCount(index);
|
|
for (int i = 0; i < count; ++i)
|
|
recursiveSaveExpandData(index.child(i, 0), data);
|
|
}
|
|
}
|
|
|
|
void ProjectTreeWidget::foldersAboutToBeRemoved(FolderNode *, const QList<FolderNode*> &list)
|
|
{
|
|
Node *n = m_explorer->currentNode();
|
|
while (n) {
|
|
if (FolderNode *fn = qobject_cast<FolderNode *>(n)) {
|
|
if (list.contains(fn)) {
|
|
ProjectNode *pn = n->projectNode();
|
|
// Make sure the node we are switching too isn't going to be removed also
|
|
while (list.contains(pn))
|
|
pn = pn->parentFolderNode()->projectNode();
|
|
m_explorer->setCurrentNode(pn);
|
|
break;
|
|
}
|
|
}
|
|
n = n->parentFolderNode();
|
|
}
|
|
}
|
|
|
|
void ProjectTreeWidget::filesAboutToBeRemoved(FolderNode *, const QList<FileNode*> &list)
|
|
{
|
|
if (FileNode *fileNode = qobject_cast<FileNode *>(m_explorer->currentNode())) {
|
|
if (list.contains(fileNode))
|
|
m_explorer->setCurrentNode(fileNode->projectNode());
|
|
}
|
|
}
|
|
|
|
QToolButton *ProjectTreeWidget::toggleSync()
|
|
{
|
|
return m_toggleSync;
|
|
}
|
|
|
|
void ProjectTreeWidget::toggleAutoSynchronization()
|
|
{
|
|
setAutoSynchronization(!m_autoSync);
|
|
}
|
|
|
|
bool ProjectTreeWidget::autoSynchronization() const
|
|
{
|
|
return m_autoSync;
|
|
}
|
|
|
|
void ProjectTreeWidget::setAutoSynchronization(bool sync, bool syncNow)
|
|
{
|
|
m_toggleSync->setChecked(sync);
|
|
if (sync == m_autoSync)
|
|
return;
|
|
|
|
m_autoSync = sync;
|
|
|
|
if (debug)
|
|
qDebug() << (m_autoSync ? "Enabling auto synchronization" : "Disabling auto synchronization");
|
|
if (m_autoSync) {
|
|
connect(m_explorer, SIGNAL(currentNodeChanged(ProjectExplorer::Node*,ProjectExplorer::Project*)),
|
|
this, SLOT(setCurrentItem(ProjectExplorer::Node*,ProjectExplorer::Project*)));
|
|
if (syncNow)
|
|
setCurrentItem(m_explorer->currentNode(), ProjectExplorerPlugin::currentProject());
|
|
} else {
|
|
disconnect(m_explorer, SIGNAL(currentNodeChanged(ProjectExplorer::Node*,ProjectExplorer::Project*)),
|
|
this, SLOT(setCurrentItem(ProjectExplorer::Node*,ProjectExplorer::Project*)));
|
|
}
|
|
}
|
|
|
|
void ProjectTreeWidget::collapseAll()
|
|
{
|
|
m_view->collapseAll();
|
|
}
|
|
|
|
void ProjectTreeWidget::editCurrentItem()
|
|
{
|
|
if (m_view->selectionModel()->currentIndex().isValid())
|
|
m_view->edit(m_view->selectionModel()->currentIndex());
|
|
}
|
|
|
|
void ProjectTreeWidget::setCurrentItem(Node *node, Project *project)
|
|
{
|
|
if (debug)
|
|
qDebug() << "ProjectTreeWidget::setCurrentItem(" << (project ? project->displayName() : QLatin1String("0"))
|
|
<< ", " << (node ? node->path() : QLatin1String("0")) << ")";
|
|
|
|
if (!project)
|
|
return;
|
|
|
|
const QModelIndex mainIndex = m_model->indexForNode(node);
|
|
|
|
if (mainIndex.isValid()) {
|
|
if (mainIndex != m_view->selectionModel()->currentIndex()) {
|
|
m_view->setCurrentIndex(mainIndex);
|
|
m_view->scrollTo(mainIndex);
|
|
}
|
|
} else {
|
|
if (debug)
|
|
qDebug() << "clear selection";
|
|
m_view->clearSelection();
|
|
}
|
|
|
|
}
|
|
|
|
void ProjectTreeWidget::handleCurrentItemChange(const QModelIndex ¤t)
|
|
{
|
|
Node *node = m_model->nodeForIndex(current);
|
|
// node might be 0. that's okay
|
|
bool autoSync = autoSynchronization();
|
|
setAutoSynchronization(false);
|
|
m_explorer->setCurrentNode(node);
|
|
setAutoSynchronization(autoSync, false);
|
|
}
|
|
|
|
void ProjectTreeWidget::showContextMenu(const QPoint &pos)
|
|
{
|
|
QModelIndex index = m_view->indexAt(pos);
|
|
Node *node = m_model->nodeForIndex(index);
|
|
m_explorer->showContextMenu(this, m_view->mapToGlobal(pos), node);
|
|
}
|
|
|
|
void ProjectTreeWidget::handleProjectAdded(ProjectExplorer::Project *project)
|
|
{
|
|
Node *node = project->rootProjectNode();
|
|
QModelIndex idx = m_model->indexForNode(node);
|
|
if (m_autoExpand) // disabled while session restoring
|
|
m_view->setExpanded(idx, true);
|
|
m_view->setCurrentIndex(idx);
|
|
}
|
|
|
|
void ProjectTreeWidget::startupProjectChanged(ProjectExplorer::Project *project)
|
|
{
|
|
if (project) {
|
|
ProjectNode *node = project->rootProjectNode();
|
|
m_model->setStartupProject(node);
|
|
} else {
|
|
m_model->setStartupProject(0);
|
|
}
|
|
}
|
|
|
|
void ProjectTreeWidget::initView()
|
|
{
|
|
QModelIndex sessionIndex = m_model->index(0, 0);
|
|
|
|
// hide root folder
|
|
m_view->setRootIndex(sessionIndex);
|
|
|
|
while (m_model->canFetchMore(sessionIndex))
|
|
m_model->fetchMore(sessionIndex);
|
|
|
|
// expand top level projects
|
|
for (int i = 0; i < m_model->rowCount(sessionIndex); ++i)
|
|
m_view->expand(m_model->index(i, 0, sessionIndex));
|
|
|
|
setCurrentItem(m_explorer->currentNode(), ProjectExplorerPlugin::currentProject());
|
|
}
|
|
|
|
void ProjectTreeWidget::openItem(const QModelIndex &mainIndex)
|
|
{
|
|
Node *node = m_model->nodeForIndex(mainIndex);
|
|
if (node->nodeType() != FileNodeType)
|
|
return;
|
|
IEditor *editor = EditorManager::openEditor(node->path());
|
|
if (editor && node->line() >= 0)
|
|
editor->gotoLine(node->line());
|
|
}
|
|
|
|
void ProjectTreeWidget::setProjectFilter(bool filter)
|
|
{
|
|
m_model->setProjectFilterEnabled(filter);
|
|
m_filterProjectsAction->setChecked(filter);
|
|
}
|
|
|
|
void ProjectTreeWidget::setGeneratedFilesFilter(bool filter)
|
|
{
|
|
m_model->setGeneratedFilesFilterEnabled(filter);
|
|
m_filterGeneratedFilesAction->setChecked(filter);
|
|
}
|
|
|
|
bool ProjectTreeWidget::generatedFilesFilter()
|
|
{
|
|
return m_model->generatedFilesFilterEnabled();
|
|
}
|
|
|
|
bool ProjectTreeWidget::projectFilter()
|
|
{
|
|
return m_model->projectFilterEnabled();
|
|
}
|
|
|
|
|
|
ProjectTreeWidgetFactory::ProjectTreeWidgetFactory()
|
|
{
|
|
}
|
|
|
|
ProjectTreeWidgetFactory::~ProjectTreeWidgetFactory()
|
|
{
|
|
}
|
|
|
|
QString ProjectTreeWidgetFactory::displayName() const
|
|
{
|
|
return tr("Projects");
|
|
}
|
|
|
|
int ProjectTreeWidgetFactory::priority() const
|
|
{
|
|
return 100;
|
|
}
|
|
|
|
Id ProjectTreeWidgetFactory::id() const
|
|
{
|
|
return "Projects";
|
|
}
|
|
|
|
QKeySequence ProjectTreeWidgetFactory::activationSequence() const
|
|
{
|
|
return QKeySequence(UseMacShortcuts ? tr("Meta+X") : tr("Alt+X"));
|
|
}
|
|
|
|
NavigationView ProjectTreeWidgetFactory::createWidget()
|
|
{
|
|
NavigationView n;
|
|
ProjectTreeWidget *ptw = new ProjectTreeWidget;
|
|
n.widget = ptw;
|
|
|
|
QToolButton *filter = new QToolButton;
|
|
filter->setIcon(QIcon(QLatin1String(Core::Constants::ICON_FILTER)));
|
|
filter->setToolTip(tr("Filter Tree"));
|
|
filter->setPopupMode(QToolButton::InstantPopup);
|
|
filter->setProperty("noArrow", true);
|
|
QMenu *filterMenu = new QMenu(filter);
|
|
filterMenu->addAction(ptw->m_filterProjectsAction);
|
|
filterMenu->addAction(ptw->m_filterGeneratedFilesAction);
|
|
filter->setMenu(filterMenu);
|
|
|
|
n.dockToolBarWidgets << filter << ptw->toggleSync();
|
|
return n;
|
|
}
|
|
|
|
void ProjectTreeWidgetFactory::saveSettings(int position, QWidget *widget)
|
|
{
|
|
ProjectTreeWidget *ptw = qobject_cast<ProjectTreeWidget *>(widget);
|
|
Q_ASSERT(ptw);
|
|
QSettings *settings = ICore::settings();
|
|
const QString baseKey = QLatin1String("ProjectTreeWidget.") + QString::number(position);
|
|
settings->setValue(baseKey + QLatin1String(".ProjectFilter"), ptw->projectFilter());
|
|
settings->setValue(baseKey + QLatin1String(".GeneratedFilter"), ptw->generatedFilesFilter());
|
|
settings->setValue(baseKey + QLatin1String(".SyncWithEditor"), ptw->autoSynchronization());
|
|
}
|
|
|
|
void ProjectTreeWidgetFactory::restoreSettings(int position, QWidget *widget)
|
|
{
|
|
ProjectTreeWidget *ptw = qobject_cast<ProjectTreeWidget *>(widget);
|
|
Q_ASSERT(ptw);
|
|
QSettings *settings = ICore::settings();
|
|
const QString baseKey = QLatin1String("ProjectTreeWidget.") + QString::number(position);
|
|
ptw->setProjectFilter(settings->value(baseKey + QLatin1String(".ProjectFilter"), false).toBool());
|
|
ptw->setGeneratedFilesFilter(settings->value(baseKey + QLatin1String(".GeneratedFilter"), true).toBool());
|
|
ptw->setAutoSynchronization(settings->value(baseKey + QLatin1String(".SyncWithEditor"), true).toBool());
|
|
}
|