2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2013-01-28 17:12:19 +01:00
|
|
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2008-12-02 16:19:05 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "projectnodes.h"
|
2008-12-09 15:25:01 +01:00
|
|
|
|
|
|
|
|
#include "nodesvisitor.h"
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "projectexplorerconstants.h"
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/mimedatabase.h>
|
2010-03-10 13:56:57 +01:00
|
|
|
#include <coreplugin/fileiconprovider.h>
|
2012-11-07 21:17:11 +02:00
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
#include <coreplugin/iversioncontrol.h>
|
|
|
|
|
#include <coreplugin/vcsmanager.h>
|
2008-12-09 15:25:01 +01:00
|
|
|
#include <utils/qtcassert.h>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QFileInfo>
|
|
|
|
|
#include <QDir>
|
|
|
|
|
#include <QIcon>
|
|
|
|
|
#include <QStyle>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
using namespace ProjectExplorer;
|
|
|
|
|
|
|
|
|
|
/*!
|
2011-04-14 12:58:14 +02:00
|
|
|
\class ProjectExplorer::Node
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2013-06-05 14:29:24 +02:00
|
|
|
\brief The Node class is the base class of all nodes in the node hierarchy.
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2011-04-14 12:58:14 +02:00
|
|
|
The nodes are arranged in a tree where leaves are FileNodes and non-leaves are FolderNodes
|
|
|
|
|
A Project is a special Folder that manages the files and normal folders underneath it.
|
|
|
|
|
|
|
|
|
|
The Watcher emits signals for structural changes in the hierarchy.
|
|
|
|
|
A Visitor can be used to traverse all Projects and other Folders.
|
|
|
|
|
|
|
|
|
|
\sa ProjectExplorer::FileNode, ProjectExplorer::FolderNode, ProjectExplorer::ProjectNode
|
|
|
|
|
\sa ProjectExplorer::NodesWatcher, ProjectExplorer::NodesVisitor
|
2008-12-02 12:01:29 +01:00
|
|
|
*/
|
2011-04-14 12:58:14 +02:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
Node::Node(NodeType nodeType,
|
|
|
|
|
const QString &filePath)
|
|
|
|
|
: QObject(),
|
|
|
|
|
m_nodeType(nodeType),
|
|
|
|
|
m_projectNode(0),
|
|
|
|
|
m_folderNode(0),
|
|
|
|
|
m_path(filePath)
|
|
|
|
|
{
|
2010-03-10 16:55:37 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2013-02-01 12:20:15 +01:00
|
|
|
void Node::emitNodeSortKeyAboutToChange()
|
|
|
|
|
{
|
|
|
|
|
if (ProjectNode *project = projectNode()) {
|
|
|
|
|
foreach (NodesWatcher *watcher, project->watchers())
|
|
|
|
|
emit watcher->nodeSortKeyAboutToChange(this);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Node::emitNodeSortKeyChanged()
|
|
|
|
|
{
|
|
|
|
|
if (ProjectNode *project = projectNode()) {
|
|
|
|
|
foreach (NodesWatcher *watcher, project->watchers())
|
|
|
|
|
emit watcher->nodeSortKeyChanged();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-30 18:13:46 +01:00
|
|
|
/*!
|
|
|
|
|
* \brief The path of the file representing this node.
|
|
|
|
|
*
|
|
|
|
|
* This method does not emit any signals, that has to be done by the calling class!
|
|
|
|
|
*/
|
|
|
|
|
void Node::setPath(const QString &path)
|
|
|
|
|
{
|
2013-02-01 12:20:15 +01:00
|
|
|
if (m_path == path)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
emitNodeSortKeyAboutToChange();
|
2013-01-30 18:13:46 +01:00
|
|
|
m_path = path;
|
2013-02-01 12:20:15 +01:00
|
|
|
emitNodeSortKeyChanged();
|
|
|
|
|
emitNodeUpdated();
|
2013-01-30 18:13:46 +01:00
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
NodeType Node::nodeType() const
|
|
|
|
|
{
|
|
|
|
|
return m_nodeType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
2011-04-14 12:58:14 +02:00
|
|
|
\brief Project that owns & manages the node. It's the first project in list of ancestors.
|
2008-12-02 12:01:29 +01:00
|
|
|
*/
|
|
|
|
|
ProjectNode *Node::projectNode() const
|
|
|
|
|
{
|
|
|
|
|
return m_projectNode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
2011-04-14 12:58:14 +02:00
|
|
|
\brief Parent in node hierarchy.
|
2008-12-02 12:01:29 +01:00
|
|
|
*/
|
|
|
|
|
FolderNode *Node::parentFolderNode() const
|
|
|
|
|
{
|
|
|
|
|
return m_folderNode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
2011-04-14 12:58:14 +02:00
|
|
|
\brief Path of file or folder in the filesystem the node represents.
|
2008-12-02 12:01:29 +01:00
|
|
|
*/
|
|
|
|
|
QString Node::path() const
|
|
|
|
|
{
|
|
|
|
|
return m_path;
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-30 18:13:46 +01:00
|
|
|
int Node::line() const
|
|
|
|
|
{
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-04 11:49:37 +02:00
|
|
|
QString Node::displayName() const
|
|
|
|
|
{
|
|
|
|
|
return QFileInfo(path()).fileName();
|
|
|
|
|
}
|
|
|
|
|
|
2012-11-07 21:17:11 +02:00
|
|
|
QString Node::vcsTopic() const
|
|
|
|
|
{
|
|
|
|
|
return QString();
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-04 11:49:37 +02:00
|
|
|
QString Node::tooltip() const
|
|
|
|
|
{
|
|
|
|
|
return QDir::toNativeSeparators(path());
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-16 15:27:03 +01:00
|
|
|
bool Node::isEnabled() const
|
|
|
|
|
{
|
|
|
|
|
return parentFolderNode()->isEnabled();
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
void Node::setNodeType(NodeType type)
|
|
|
|
|
{
|
|
|
|
|
m_nodeType = type;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Node::setProjectNode(ProjectNode *project)
|
|
|
|
|
{
|
|
|
|
|
m_projectNode = project;
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-16 15:27:03 +01:00
|
|
|
void Node::emitNodeUpdated()
|
|
|
|
|
{
|
2013-02-01 12:20:15 +01:00
|
|
|
if (ProjectNode *node = projectNode())
|
|
|
|
|
foreach (NodesWatcher *watcher, node->watchers())
|
|
|
|
|
emit watcher->nodeUpdated(this);
|
2013-01-16 15:27:03 +01:00
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
void Node::setParentFolderNode(FolderNode *parentFolder)
|
|
|
|
|
{
|
|
|
|
|
m_folderNode = parentFolder;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
2011-04-14 12:58:14 +02:00
|
|
|
\class ProjectExplorer::FileNode
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2011-04-14 12:58:14 +02:00
|
|
|
\brief In-memory presentation of a file. All FileNode's are leaf nodes.
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2011-04-14 12:58:14 +02:00
|
|
|
\sa ProjectExplorer::FolderNode, ProjectExplorer::ProjectNode
|
2008-12-02 12:01:29 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
FileNode::FileNode(const QString &filePath,
|
|
|
|
|
const FileType fileType,
|
|
|
|
|
bool generated)
|
|
|
|
|
: Node(FileNodeType, filePath),
|
|
|
|
|
m_fileType(fileType),
|
|
|
|
|
m_generated(generated)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FileType FileNode::fileType() const
|
|
|
|
|
{
|
|
|
|
|
return m_fileType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
2011-04-14 12:58:14 +02:00
|
|
|
\brief Returns true if the file is automatically generated by a compile step.
|
2008-12-02 12:01:29 +01:00
|
|
|
*/
|
|
|
|
|
bool FileNode::isGenerated() const
|
|
|
|
|
{
|
|
|
|
|
return m_generated;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
2011-04-14 12:58:14 +02:00
|
|
|
\class ProjectExplorer::FolderNode
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
In-memory presentation of a folder. Note that the node itself + all children (files and folders) are "managed" by the owning project.
|
|
|
|
|
|
2011-04-14 12:58:14 +02:00
|
|
|
\sa ProjectExplorer::FileNode, ProjectExplorer::ProjectNode
|
2008-12-02 12:01:29 +01:00
|
|
|
*/
|
2012-05-04 11:49:37 +02:00
|
|
|
FolderNode::FolderNode(const QString &folderPath, NodeType nodeType) :
|
|
|
|
|
Node(nodeType, folderPath),
|
2010-07-07 12:16:09 +02:00
|
|
|
m_displayName(QDir::toNativeSeparators(folderPath))
|
2010-02-12 12:54:12 +01:00
|
|
|
{
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FolderNode::~FolderNode()
|
|
|
|
|
{
|
|
|
|
|
qDeleteAll(m_subFolderNodes);
|
|
|
|
|
qDeleteAll(m_fileNodes);
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-14 12:58:14 +02:00
|
|
|
/*!
|
|
|
|
|
\brief The display name that should be used in a view.
|
|
|
|
|
\sa setFolderName()
|
2008-12-02 12:01:29 +01:00
|
|
|
*/
|
2011-04-14 12:58:14 +02:00
|
|
|
|
2010-01-07 18:17:24 +01:00
|
|
|
QString FolderNode::displayName() const
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2010-02-24 15:03:54 +01:00
|
|
|
return m_displayName;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2011-04-14 12:58:14 +02:00
|
|
|
/*!
|
|
|
|
|
\brief The icon that should be used in a view. Default is the directory icon (QStyle::S_PDirIcon).
|
|
|
|
|
s\a setIcon()
|
2008-12-02 12:01:29 +01:00
|
|
|
*/
|
|
|
|
|
QIcon FolderNode::icon() const
|
|
|
|
|
{
|
2010-07-07 12:16:09 +02:00
|
|
|
// Instantiating the Icon provider is expensive.
|
|
|
|
|
if (m_icon.isNull())
|
|
|
|
|
m_icon = Core::FileIconProvider::instance()->icon(QFileIconProvider::Folder);
|
2008-12-02 12:01:29 +01:00
|
|
|
return m_icon;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QList<FileNode*> FolderNode::fileNodes() const
|
|
|
|
|
{
|
|
|
|
|
return m_fileNodes;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QList<FolderNode*> FolderNode::subFolderNodes() const
|
|
|
|
|
{
|
|
|
|
|
return m_subFolderNodes;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FolderNode::accept(NodesVisitor *visitor)
|
|
|
|
|
{
|
|
|
|
|
visitor->visitFolderNode(this);
|
|
|
|
|
foreach (FolderNode *subFolder, m_subFolderNodes)
|
|
|
|
|
subFolder->accept(visitor);
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-24 15:03:54 +01:00
|
|
|
void FolderNode::setDisplayName(const QString &name)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2013-02-01 12:20:15 +01:00
|
|
|
if (m_displayName == name)
|
|
|
|
|
return;
|
|
|
|
|
emitNodeSortKeyAboutToChange();
|
2010-02-24 15:03:54 +01:00
|
|
|
m_displayName = name;
|
2013-02-01 12:20:15 +01:00
|
|
|
emitNodeSortKeyChanged();
|
|
|
|
|
emitNodeUpdated();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FolderNode::setIcon(const QIcon &icon)
|
|
|
|
|
{
|
|
|
|
|
m_icon = icon;
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-30 18:13:46 +01:00
|
|
|
FileNode *FolderNode::findFile(const QString &path)
|
|
|
|
|
{
|
|
|
|
|
foreach (FileNode *n, fileNodes()) {
|
|
|
|
|
if (n->path() == path)
|
|
|
|
|
return n;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FolderNode *FolderNode::findSubFolder(const QString &path)
|
|
|
|
|
{
|
|
|
|
|
foreach (FolderNode *n, subFolderNodes()) {
|
|
|
|
|
if (n->path() == path)
|
|
|
|
|
return n;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-04 11:49:37 +02:00
|
|
|
/*!
|
|
|
|
|
\class ProjectExplorer::VirtualFolderNode
|
|
|
|
|
|
|
|
|
|
In-memory presentation of a virtual folder.
|
|
|
|
|
Note that the node itself + all children (files and folders) are "managed" by the owning project.
|
|
|
|
|
A virtual folder does not correspond to a actual folder on the file system. See for example the
|
|
|
|
|
sources, headers and forms folder the qt4projectmanager creates
|
|
|
|
|
VirtualFolderNodes are always sorted before FolderNodes and are sorted according to their priority.
|
|
|
|
|
|
|
|
|
|
\sa ProjectExplorer::FileNode, ProjectExplorer::ProjectNode
|
|
|
|
|
*/
|
|
|
|
|
VirtualFolderNode::VirtualFolderNode(const QString &folderPath, int priority)
|
|
|
|
|
: FolderNode(folderPath, VirtualFolderNodeType), m_priority(priority)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
VirtualFolderNode::~VirtualFolderNode()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int VirtualFolderNode::priority() const
|
|
|
|
|
{
|
|
|
|
|
return m_priority;
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
/*!
|
2011-04-14 12:58:14 +02:00
|
|
|
\class ProjectExplorer::ProjectNode
|
|
|
|
|
|
|
|
|
|
\brief In-memory presentation of a Project.
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
A concrete subclass must implement the "persistent" stuff
|
|
|
|
|
|
2011-04-14 12:58:14 +02:00
|
|
|
\sa ProjectExplorer::FileNode, ProjectExplorer::FolderNode
|
2008-12-02 12:01:29 +01:00
|
|
|
*/
|
|
|
|
|
|
2011-04-14 12:58:14 +02:00
|
|
|
/*!
|
|
|
|
|
\brief Creates uninitialized ProjectNode object.
|
2008-12-02 12:01:29 +01:00
|
|
|
*/
|
|
|
|
|
ProjectNode::ProjectNode(const QString &projectFilePath)
|
|
|
|
|
: FolderNode(projectFilePath)
|
|
|
|
|
{
|
|
|
|
|
setNodeType(ProjectNodeType);
|
|
|
|
|
// project node "manages" itself
|
|
|
|
|
setProjectNode(this);
|
2010-02-24 15:03:54 +01:00
|
|
|
setDisplayName(QFileInfo(projectFilePath).fileName());
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2013-08-30 17:13:29 +02:00
|
|
|
QString ProjectNode::vcsTopic() const
|
|
|
|
|
{
|
2012-11-07 21:17:11 +02:00
|
|
|
const QString dir = QFileInfo(path()).absolutePath();
|
|
|
|
|
|
|
|
|
|
if (Core::IVersionControl *const vc =
|
2013-08-30 17:13:29 +02:00
|
|
|
Core::VcsManager::findVersionControlForDirectory(dir))
|
2012-11-07 21:17:11 +02:00
|
|
|
return vc->vcsTopic(dir);
|
|
|
|
|
|
|
|
|
|
return QString();
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
QList<ProjectNode*> ProjectNode::subProjectNodes() const
|
|
|
|
|
{
|
|
|
|
|
return m_subProjectNodes;
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-18 17:31:30 +01:00
|
|
|
void ProjectNode::aboutToChangeHasBuildTargets()
|
|
|
|
|
{
|
|
|
|
|
foreach (NodesWatcher *watcher, watchers())
|
|
|
|
|
emit watcher->aboutToChangeHasBuildTargets(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProjectNode::hasBuildTargetsChanged()
|
|
|
|
|
{
|
|
|
|
|
foreach (NodesWatcher *watcher, watchers())
|
|
|
|
|
emit watcher->hasBuildTargetsChanged(this);
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
/*!
|
|
|
|
|
\function bool ProjectNode::addSubProjects(const QStringList &)
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\function bool ProjectNode::removeSubProjects(const QStringList &)
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\function bool ProjectNode::addFiles(const FileType, const QStringList &, QStringList *)
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\function bool ProjectNode::removeFiles(const FileType, const QStringList &, QStringList *)
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\function bool ProjectNode::renameFile(const FileType, const QString &, const QString &)
|
|
|
|
|
*/
|
|
|
|
|
|
2010-08-24 17:17:11 +02:00
|
|
|
bool ProjectNode::deploysFolder(const QString &folder) const
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(folder);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
QList<NodesWatcher*> ProjectNode::watchers() const
|
|
|
|
|
{
|
|
|
|
|
return m_watchers;
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-14 12:58:14 +02:00
|
|
|
/*!
|
|
|
|
|
\brief Registers a watcher for the current project & all sub projects
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
It does not take ownership of the watcher.
|
2011-04-14 12:58:14 +02:00
|
|
|
*/
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
void ProjectNode::registerWatcher(NodesWatcher *watcher)
|
|
|
|
|
{
|
|
|
|
|
if (!watcher)
|
|
|
|
|
return;
|
2012-03-05 22:30:59 +01:00
|
|
|
connect(watcher, SIGNAL(destroyed(QObject*)),
|
|
|
|
|
this, SLOT(watcherDestroyed(QObject*)));
|
2008-12-02 12:01:29 +01:00
|
|
|
m_watchers.append(watcher);
|
|
|
|
|
foreach (ProjectNode *subProject, m_subProjectNodes)
|
|
|
|
|
subProject->registerWatcher(watcher);
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-14 12:58:14 +02:00
|
|
|
/*!
|
|
|
|
|
\brief Removes a watcher for the current project & all sub projects.
|
2008-12-02 12:01:29 +01:00
|
|
|
*/
|
|
|
|
|
void ProjectNode::unregisterWatcher(NodesWatcher *watcher)
|
|
|
|
|
{
|
|
|
|
|
if (!watcher)
|
|
|
|
|
return;
|
|
|
|
|
m_watchers.removeOne(watcher);
|
|
|
|
|
foreach (ProjectNode *subProject, m_subProjectNodes)
|
|
|
|
|
subProject->unregisterWatcher(watcher);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProjectNode::accept(NodesVisitor *visitor)
|
|
|
|
|
{
|
|
|
|
|
visitor->visitProjectNode(this);
|
|
|
|
|
|
|
|
|
|
foreach (FolderNode *folder, m_subFolderNodes)
|
|
|
|
|
folder->accept(visitor);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
2011-04-14 12:58:14 +02:00
|
|
|
\brief Adds project nodes to the hierarchy and emits the corresponding signals.
|
2008-12-02 12:01:29 +01:00
|
|
|
*/
|
|
|
|
|
void ProjectNode::addProjectNodes(const QList<ProjectNode*> &subProjects)
|
|
|
|
|
{
|
|
|
|
|
if (!subProjects.isEmpty()) {
|
|
|
|
|
QList<FolderNode*> folderNodes;
|
|
|
|
|
foreach (ProjectNode *projectNode, subProjects)
|
|
|
|
|
folderNodes << projectNode;
|
|
|
|
|
|
|
|
|
|
foreach (NodesWatcher *watcher, m_watchers)
|
|
|
|
|
emit watcher->foldersAboutToBeAdded(this, folderNodes);
|
|
|
|
|
|
|
|
|
|
foreach (ProjectNode *project, subProjects) {
|
2010-05-20 16:02:24 +02:00
|
|
|
QTC_ASSERT(!project->parentFolderNode() || project->parentFolderNode() == this,
|
|
|
|
|
qDebug("Project node has already a parent"));
|
2008-12-02 12:01:29 +01:00
|
|
|
project->setParentFolderNode(this);
|
|
|
|
|
foreach (NodesWatcher *watcher, m_watchers)
|
|
|
|
|
project->registerWatcher(watcher);
|
|
|
|
|
m_subFolderNodes.append(project);
|
|
|
|
|
m_subProjectNodes.append(project);
|
|
|
|
|
}
|
2012-05-04 11:49:37 +02:00
|
|
|
qSort(m_subFolderNodes.begin(), m_subFolderNodes.end());
|
|
|
|
|
qSort(m_subProjectNodes.begin(), m_subProjectNodes.end());
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
foreach (NodesWatcher *watcher, m_watchers)
|
|
|
|
|
emit watcher->foldersAdded();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
2011-04-14 12:58:14 +02:00
|
|
|
\brief Remove project nodes from the hierarchy and emits the corresponding signals.
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
All objects in the argument list are deleted.
|
2011-04-14 12:58:14 +02:00
|
|
|
*/
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
void ProjectNode::removeProjectNodes(const QList<ProjectNode*> &subProjects)
|
|
|
|
|
{
|
|
|
|
|
if (!subProjects.isEmpty()) {
|
|
|
|
|
QList<FolderNode*> toRemove;
|
|
|
|
|
foreach (ProjectNode *projectNode, subProjects)
|
|
|
|
|
toRemove << projectNode;
|
2012-05-04 11:49:37 +02:00
|
|
|
qSort(toRemove.begin(), toRemove.end());
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
foreach (NodesWatcher *watcher, m_watchers)
|
|
|
|
|
emit watcher->foldersAboutToBeRemoved(this, toRemove);
|
|
|
|
|
|
|
|
|
|
QList<FolderNode*>::const_iterator toRemoveIter = toRemove.constBegin();
|
|
|
|
|
QList<FolderNode*>::iterator folderIter = m_subFolderNodes.begin();
|
|
|
|
|
QList<ProjectNode*>::iterator projectIter = m_subProjectNodes.begin();
|
|
|
|
|
for (; toRemoveIter != toRemove.constEnd(); ++toRemoveIter) {
|
2012-05-04 11:49:37 +02:00
|
|
|
while (*projectIter != *toRemoveIter) {
|
2008-12-02 12:01:29 +01:00
|
|
|
++projectIter;
|
2008-12-09 16:18:28 +01:00
|
|
|
QTC_ASSERT(projectIter != m_subProjectNodes.end(),
|
|
|
|
|
qDebug("Project to remove is not part of specified folder!"));
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2012-05-04 11:49:37 +02:00
|
|
|
while (*folderIter != *toRemoveIter) {
|
2008-12-02 12:01:29 +01:00
|
|
|
++folderIter;
|
2008-12-09 16:18:28 +01:00
|
|
|
QTC_ASSERT(folderIter != m_subFolderNodes.end(),
|
|
|
|
|
qDebug("Project to remove is not part of specified folder!"));
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
delete *projectIter;
|
|
|
|
|
projectIter = m_subProjectNodes.erase(projectIter);
|
|
|
|
|
folderIter = m_subFolderNodes.erase(folderIter);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach (NodesWatcher *watcher, m_watchers)
|
|
|
|
|
emit watcher->foldersRemoved();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
2011-04-14 12:58:14 +02:00
|
|
|
\brief Adds folder nodes to the hierarchy and emits the corresponding signals.
|
|
|
|
|
*/
|
2008-12-02 12:01:29 +01:00
|
|
|
void ProjectNode::addFolderNodes(const QList<FolderNode*> &subFolders, FolderNode *parentFolder)
|
|
|
|
|
{
|
2008-12-17 15:51:48 +01:00
|
|
|
Q_ASSERT(parentFolder);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
if (!subFolders.isEmpty()) {
|
|
|
|
|
const bool emitSignals = (parentFolder->projectNode() == this);
|
|
|
|
|
|
|
|
|
|
if (emitSignals)
|
|
|
|
|
foreach (NodesWatcher *watcher, m_watchers)
|
|
|
|
|
watcher->foldersAboutToBeAdded(parentFolder, subFolders);
|
|
|
|
|
|
|
|
|
|
foreach (FolderNode *folder, subFolders) {
|
2008-12-09 16:18:28 +01:00
|
|
|
QTC_ASSERT(!folder->parentFolderNode(),
|
|
|
|
|
qDebug("Project node has already a parent folder"));
|
2008-12-02 12:01:29 +01:00
|
|
|
folder->setParentFolderNode(parentFolder);
|
|
|
|
|
folder->setProjectNode(this);
|
2009-03-13 13:55:59 +01:00
|
|
|
|
|
|
|
|
// Find the correct place to insert
|
2012-05-04 11:49:37 +02:00
|
|
|
if (parentFolder->m_subFolderNodes.count() == 0
|
|
|
|
|
|| parentFolder->m_subFolderNodes.last() < folder) {
|
2009-03-13 13:55:59 +01:00
|
|
|
// empty list or greater then last node
|
|
|
|
|
parentFolder->m_subFolderNodes.append(folder);
|
|
|
|
|
} else {
|
|
|
|
|
// Binary Search for insertion point
|
2012-05-04 11:49:37 +02:00
|
|
|
QList<FolderNode*>::iterator it
|
|
|
|
|
= qLowerBound(parentFolder->m_subFolderNodes.begin(),
|
|
|
|
|
parentFolder->m_subFolderNodes.end(),
|
|
|
|
|
folder);
|
|
|
|
|
parentFolder->m_subFolderNodes.insert(it, folder);
|
2009-03-13 13:55:59 +01:00
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
// project nodes have to be added via addProjectNodes
|
2008-12-09 16:18:28 +01:00
|
|
|
QTC_ASSERT(folder->nodeType() != ProjectNodeType,
|
|
|
|
|
qDebug("project nodes have to be added via addProjectNodes"));
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (emitSignals)
|
|
|
|
|
foreach (NodesWatcher *watcher, m_watchers)
|
|
|
|
|
emit watcher->foldersAdded();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
2011-04-14 12:58:14 +02:00
|
|
|
\brief Remove file nodes from the hierarchy and emits the corresponding signals.
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
All objects in the subFolders list are deleted.
|
2011-04-14 12:58:14 +02:00
|
|
|
*/
|
2008-12-02 12:01:29 +01:00
|
|
|
void ProjectNode::removeFolderNodes(const QList<FolderNode*> &subFolders,
|
|
|
|
|
FolderNode *parentFolder)
|
|
|
|
|
{
|
2008-12-17 15:51:48 +01:00
|
|
|
Q_ASSERT(parentFolder);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
if (!subFolders.isEmpty()) {
|
|
|
|
|
const bool emitSignals = (parentFolder->projectNode() == this);
|
|
|
|
|
|
|
|
|
|
QList<FolderNode*> toRemove = subFolders;
|
2012-05-04 11:49:37 +02:00
|
|
|
qSort(toRemove.begin(), toRemove.end());
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
if (emitSignals)
|
|
|
|
|
foreach (NodesWatcher *watcher, m_watchers)
|
|
|
|
|
emit watcher->foldersAboutToBeRemoved(parentFolder, toRemove);
|
|
|
|
|
|
|
|
|
|
QList<FolderNode*>::const_iterator toRemoveIter = toRemove.constBegin();
|
|
|
|
|
QList<FolderNode*>::iterator folderIter = parentFolder->m_subFolderNodes.begin();
|
|
|
|
|
for (; toRemoveIter != toRemove.constEnd(); ++toRemoveIter) {
|
2008-12-09 16:18:28 +01:00
|
|
|
QTC_ASSERT((*toRemoveIter)->nodeType() != ProjectNodeType,
|
|
|
|
|
qDebug("project nodes have to be removed via removeProjectNodes"));
|
2012-05-04 11:49:37 +02:00
|
|
|
while (*folderIter != *toRemoveIter) {
|
2008-12-02 12:01:29 +01:00
|
|
|
++folderIter;
|
2008-12-09 16:18:28 +01:00
|
|
|
QTC_ASSERT(folderIter != parentFolder->m_subFolderNodes.end(),
|
|
|
|
|
qDebug("Folder to remove is not part of specified folder!"));
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
delete *folderIter;
|
|
|
|
|
folderIter = parentFolder->m_subFolderNodes.erase(folderIter);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (emitSignals)
|
|
|
|
|
foreach (NodesWatcher *watcher, m_watchers)
|
|
|
|
|
emit watcher->foldersRemoved();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
2011-04-14 12:58:14 +02:00
|
|
|
\brief Adds file nodes to the internal list and emits the corresponding signals.
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
This method should be called within an implementation of the public method addFiles.
|
2011-04-14 12:58:14 +02:00
|
|
|
*/
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
void ProjectNode::addFileNodes(const QList<FileNode*> &files, FolderNode *folder)
|
|
|
|
|
{
|
2008-12-17 15:51:48 +01:00
|
|
|
Q_ASSERT(folder);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
if (!files.isEmpty()) {
|
|
|
|
|
const bool emitSignals = (folder->projectNode() == this);
|
|
|
|
|
|
|
|
|
|
if (emitSignals)
|
|
|
|
|
foreach (NodesWatcher *watcher, m_watchers)
|
|
|
|
|
emit watcher->filesAboutToBeAdded(folder, files);
|
|
|
|
|
|
|
|
|
|
foreach (FileNode *file, files) {
|
2008-12-09 16:18:28 +01:00
|
|
|
QTC_ASSERT(!file->parentFolderNode(),
|
|
|
|
|
qDebug("File node has already a parent folder"));
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
file->setParentFolderNode(folder);
|
|
|
|
|
file->setProjectNode(this);
|
2009-03-13 13:55:59 +01:00
|
|
|
// Now find the correct place to insert file
|
2012-05-04 11:49:37 +02:00
|
|
|
if (folder->m_fileNodes.count() == 0
|
|
|
|
|
|| folder->m_fileNodes.last() < file) {
|
2009-03-13 13:55:59 +01:00
|
|
|
// empty list or greater then last node
|
|
|
|
|
folder->m_fileNodes.append(file);
|
|
|
|
|
} else {
|
2012-05-04 11:49:37 +02:00
|
|
|
QList<FileNode *>::iterator it
|
|
|
|
|
= qLowerBound(folder->m_fileNodes.begin(),
|
|
|
|
|
folder->m_fileNodes.end(),
|
|
|
|
|
file);
|
|
|
|
|
folder->m_fileNodes.insert(it, file);
|
2009-03-13 13:55:59 +01:00
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (emitSignals)
|
|
|
|
|
foreach (NodesWatcher *watcher, m_watchers)
|
|
|
|
|
emit watcher->filesAdded();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
2011-04-14 12:58:14 +02:00
|
|
|
\brief Remove file nodes from the internal list and emits the corresponding signals.
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
All objects in the argument list are deleted.
|
|
|
|
|
This method should be called within an implementation of the public method removeFiles.
|
2011-04-14 12:58:14 +02:00
|
|
|
*/
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
void ProjectNode::removeFileNodes(const QList<FileNode*> &files, FolderNode *folder)
|
|
|
|
|
{
|
2008-12-17 15:51:48 +01:00
|
|
|
Q_ASSERT(folder);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
if (!files.isEmpty()) {
|
|
|
|
|
const bool emitSignals = (folder->projectNode() == this);
|
|
|
|
|
|
|
|
|
|
QList<FileNode*> toRemove = files;
|
2012-05-04 11:49:37 +02:00
|
|
|
qSort(toRemove.begin(), toRemove.end());
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
if (emitSignals)
|
|
|
|
|
foreach (NodesWatcher *watcher, m_watchers)
|
|
|
|
|
emit watcher->filesAboutToBeRemoved(folder, toRemove);
|
|
|
|
|
|
|
|
|
|
QList<FileNode*>::const_iterator toRemoveIter = toRemove.constBegin();
|
|
|
|
|
QList<FileNode*>::iterator filesIter = folder->m_fileNodes.begin();
|
|
|
|
|
for (; toRemoveIter != toRemove.constEnd(); ++toRemoveIter) {
|
2012-05-04 11:49:37 +02:00
|
|
|
while (*filesIter != *toRemoveIter) {
|
2008-12-02 12:01:29 +01:00
|
|
|
++filesIter;
|
2008-12-09 16:18:28 +01:00
|
|
|
QTC_ASSERT(filesIter != folder->m_fileNodes.end(),
|
|
|
|
|
qDebug("File to remove is not part of specified folder!"));
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
delete *filesIter;
|
|
|
|
|
filesIter = folder->m_fileNodes.erase(filesIter);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (emitSignals)
|
|
|
|
|
foreach (NodesWatcher *watcher, m_watchers)
|
|
|
|
|
emit watcher->filesRemoved();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProjectNode::watcherDestroyed(QObject *watcher)
|
|
|
|
|
{
|
|
|
|
|
// cannot use qobject_cast here
|
|
|
|
|
unregisterWatcher(static_cast<NodesWatcher*>(watcher));
|
|
|
|
|
}
|
|
|
|
|
|
2009-08-17 17:59:57 +02:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
/*!
|
2011-04-14 12:58:14 +02:00
|
|
|
\class ProjectExplorer::SessionNode
|
2008-12-02 12:01:29 +01:00
|
|
|
*/
|
|
|
|
|
|
2012-01-31 13:40:59 +01:00
|
|
|
SessionNode::SessionNode(QObject *parentObject)
|
|
|
|
|
: FolderNode(QLatin1String("session"))
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
setParent(parentObject);
|
|
|
|
|
setNodeType(SessionNodeType);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QList<NodesWatcher*> SessionNode::watchers() const
|
|
|
|
|
{
|
|
|
|
|
return m_watchers;
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-14 12:58:14 +02:00
|
|
|
/*!
|
|
|
|
|
\brief Registers a watcher for the complete session tree.
|
2008-12-02 12:01:29 +01:00
|
|
|
It does not take ownership of the watcher.
|
|
|
|
|
*/
|
2011-04-14 12:58:14 +02:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
void SessionNode::registerWatcher(NodesWatcher *watcher)
|
|
|
|
|
{
|
|
|
|
|
if (!watcher)
|
|
|
|
|
return;
|
|
|
|
|
connect(watcher, SIGNAL(destroyed(QObject*)),
|
|
|
|
|
this, SLOT(watcherDestroyed(QObject*)));
|
|
|
|
|
m_watchers.append(watcher);
|
|
|
|
|
foreach (ProjectNode *project, m_projectNodes)
|
|
|
|
|
project->registerWatcher(watcher);
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-14 12:58:14 +02:00
|
|
|
/*!
|
|
|
|
|
\brief Removes a watcher from the complete session tree
|
2008-12-02 12:01:29 +01:00
|
|
|
*/
|
2011-04-14 12:58:14 +02:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
void SessionNode::unregisterWatcher(NodesWatcher *watcher)
|
|
|
|
|
{
|
|
|
|
|
if (!watcher)
|
|
|
|
|
return;
|
|
|
|
|
m_watchers.removeOne(watcher);
|
|
|
|
|
foreach (ProjectNode *project, m_projectNodes)
|
|
|
|
|
project->unregisterWatcher(watcher);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SessionNode::accept(NodesVisitor *visitor)
|
|
|
|
|
{
|
|
|
|
|
visitor->visitSessionNode(this);
|
|
|
|
|
foreach (ProjectNode *project, m_projectNodes)
|
|
|
|
|
project->accept(visitor);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QList<ProjectNode*> SessionNode::projectNodes() const
|
|
|
|
|
{
|
|
|
|
|
return m_projectNodes;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SessionNode::addProjectNodes(const QList<ProjectNode*> &projectNodes)
|
|
|
|
|
{
|
|
|
|
|
if (!projectNodes.isEmpty()) {
|
|
|
|
|
QList<FolderNode*> folderNodes;
|
|
|
|
|
foreach (ProjectNode *projectNode, projectNodes)
|
|
|
|
|
folderNodes << projectNode;
|
|
|
|
|
|
|
|
|
|
foreach (NodesWatcher *watcher, m_watchers)
|
|
|
|
|
emit watcher->foldersAboutToBeAdded(this, folderNodes);
|
|
|
|
|
|
|
|
|
|
foreach (ProjectNode *project, projectNodes) {
|
2008-12-09 16:18:28 +01:00
|
|
|
QTC_ASSERT(!project->parentFolderNode(),
|
|
|
|
|
qDebug("Project node has already a parent folder"));
|
2008-12-02 12:01:29 +01:00
|
|
|
project->setParentFolderNode(this);
|
|
|
|
|
foreach (NodesWatcher *watcher, m_watchers)
|
|
|
|
|
project->registerWatcher(watcher);
|
|
|
|
|
m_subFolderNodes.append(project);
|
|
|
|
|
m_projectNodes.append(project);
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-04 11:49:37 +02:00
|
|
|
qSort(m_subFolderNodes);
|
|
|
|
|
qSort(m_projectNodes);
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
foreach (NodesWatcher *watcher, m_watchers)
|
|
|
|
|
emit watcher->foldersAdded();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SessionNode::removeProjectNodes(const QList<ProjectNode*> &projectNodes)
|
|
|
|
|
{
|
|
|
|
|
if (!projectNodes.isEmpty()) {
|
|
|
|
|
QList<FolderNode*> toRemove;
|
|
|
|
|
foreach (ProjectNode *projectNode, projectNodes)
|
|
|
|
|
toRemove << projectNode;
|
|
|
|
|
|
2012-05-04 11:49:37 +02:00
|
|
|
qSort(toRemove);
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
foreach (NodesWatcher *watcher, m_watchers)
|
|
|
|
|
emit watcher->foldersAboutToBeRemoved(this, toRemove);
|
|
|
|
|
|
|
|
|
|
QList<FolderNode*>::const_iterator toRemoveIter = toRemove.constBegin();
|
|
|
|
|
QList<FolderNode*>::iterator folderIter = m_subFolderNodes.begin();
|
|
|
|
|
QList<ProjectNode*>::iterator projectIter = m_projectNodes.begin();
|
|
|
|
|
for (; toRemoveIter != toRemove.constEnd(); ++toRemoveIter) {
|
2012-05-04 11:49:37 +02:00
|
|
|
while (*projectIter != *toRemoveIter) {
|
2008-12-02 12:01:29 +01:00
|
|
|
++projectIter;
|
2008-12-09 16:18:28 +01:00
|
|
|
QTC_ASSERT(projectIter != m_projectNodes.end(),
|
|
|
|
|
qDebug("Project to remove is not part of specified folder!"));
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2012-05-04 11:49:37 +02:00
|
|
|
while (*folderIter != *toRemoveIter) {
|
2008-12-02 12:01:29 +01:00
|
|
|
++folderIter;
|
2008-12-09 16:18:28 +01:00
|
|
|
QTC_ASSERT(folderIter != m_subFolderNodes.end(),
|
|
|
|
|
qDebug("Project to remove is not part of specified folder!"));
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
projectIter = m_projectNodes.erase(projectIter);
|
|
|
|
|
folderIter = m_subFolderNodes.erase(folderIter);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach (NodesWatcher *watcher, m_watchers)
|
|
|
|
|
emit watcher->foldersRemoved();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SessionNode::watcherDestroyed(QObject *watcher)
|
|
|
|
|
{
|
|
|
|
|
// cannot use qobject_cast here
|
|
|
|
|
unregisterWatcher(static_cast<NodesWatcher*>(watcher));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
2011-04-14 12:58:14 +02:00
|
|
|
\class ProjectExplorer::NodesWatcher
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2011-04-14 12:58:14 +02:00
|
|
|
\brief NodesWatcher lets you keep track of changes in the tree.
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
Add a watcher by calling ProjectNode::registerWatcher() or
|
|
|
|
|
SessionNode::registerWatcher(). Whenever the tree underneath the
|
|
|
|
|
ProectNode or SessionNode changes (e.g. nodes are added/removed),
|
|
|
|
|
the corresponding signals of the NodesWatcher are emitted.
|
|
|
|
|
Watchers can be removed from the complete tree or a subtree
|
|
|
|
|
by calling ProjectNode::unregisterWatcher and
|
|
|
|
|
SessionNode::unregisterWatcher().
|
|
|
|
|
|
2012-11-28 20:28:42 +02:00
|
|
|
The NodesWatcher is similar to the Observer in the
|
2008-12-02 12:01:29 +01:00
|
|
|
well-known Observer pattern (Booch et al).
|
2011-04-14 12:58:14 +02:00
|
|
|
|
|
|
|
|
\sa ProjectExplorer::Node
|
2008-12-02 12:01:29 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
NodesWatcher::NodesWatcher(QObject *parent)
|
|
|
|
|
: QObject(parent)
|
|
|
|
|
{
|
|
|
|
|
}
|