2009-02-25 09:15:00 +01:00
|
|
|
/**************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2010-03-05 11:25:49 +01:00
|
|
|
** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-06-17 00:01:27 +10:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Commercial Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Licensees holding valid Qt Commercial licenses may use this file in
|
|
|
|
|
** accordance with the Qt Commercial License Agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Nokia.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01: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.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** If you are unsure which license is appropriate for your use, please
|
2009-08-14 09:30:56 +02:00
|
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
**************************************************************************/
|
2008-12-02 16:19:05 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "projectfilewizardextension.h"
|
|
|
|
|
#include "projectexplorer.h"
|
2009-09-25 11:35:44 +02:00
|
|
|
#include "session.h"
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "projectnodes.h"
|
|
|
|
|
#include "nodesvisitor.h"
|
|
|
|
|
#include "projectwizardpage.h"
|
|
|
|
|
|
2010-01-12 16:45:21 +01:00
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
#include <utils/stringutils.h>
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include <coreplugin/basefilewizard.h>
|
|
|
|
|
#include <coreplugin/dialogs/iwizard.h>
|
|
|
|
|
#include <coreplugin/filemanager.h>
|
|
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
#include <coreplugin/iversioncontrol.h>
|
|
|
|
|
#include <coreplugin/vcsmanager.h>
|
2010-01-12 16:45:21 +01:00
|
|
|
#include <extensionsystem/pluginmanager.h>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
#include <QtCore/QVariant>
|
2010-01-12 16:45:21 +01:00
|
|
|
#include <QtCore/QtAlgorithms>
|
2008-12-02 12:01:29 +01:00
|
|
|
#include <QtCore/QDebug>
|
|
|
|
|
#include <QtCore/QFileInfo>
|
|
|
|
|
#include <QtCore/QMultiMap>
|
2010-01-12 16:45:21 +01:00
|
|
|
#include <QtCore/QDir>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
enum { debugExtension = 0 };
|
|
|
|
|
|
|
|
|
|
namespace ProjectExplorer {
|
|
|
|
|
|
|
|
|
|
typedef QList<ProjectNode *> ProjectNodeList;
|
|
|
|
|
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2010-01-12 16:45:21 +01:00
|
|
|
// AllProjectNodesVisitor: Retrieve all projects (*.pri/*.pro).
|
2008-12-02 12:01:29 +01:00
|
|
|
class AllProjectNodesVisitor : public NodesVisitor
|
|
|
|
|
{
|
|
|
|
|
public:
|
2010-01-12 16:45:21 +01:00
|
|
|
static ProjectNodeList allProjects();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
virtual void visitProjectNode(ProjectNode *node);
|
|
|
|
|
|
|
|
|
|
private:
|
2010-01-12 16:45:21 +01:00
|
|
|
ProjectNodeList m_projectNodes;
|
2008-12-02 12:01:29 +01:00
|
|
|
};
|
|
|
|
|
|
2010-01-12 16:45:21 +01:00
|
|
|
ProjectNodeList AllProjectNodesVisitor::allProjects()
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2010-01-12 16:45:21 +01:00
|
|
|
AllProjectNodesVisitor visitor;
|
|
|
|
|
ProjectExplorerPlugin::instance()->session()->sessionNode()->accept(&visitor);
|
|
|
|
|
return visitor.m_projectNodes;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AllProjectNodesVisitor::visitProjectNode(ProjectNode *node)
|
|
|
|
|
{
|
|
|
|
|
if (node->supportedActions().contains(ProjectNode::AddFile))
|
2010-01-12 16:45:21 +01:00
|
|
|
m_projectNodes.push_back(node);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ProjectEntry: Context entry for a *.pri/*.pro file. Stores name and path
|
|
|
|
|
// for quick sort and path search, provides operator<() for maps.
|
|
|
|
|
struct ProjectEntry {
|
|
|
|
|
enum Type { ProFile, PriFile }; // Sort order: 'pro' before 'pri'
|
|
|
|
|
|
|
|
|
|
ProjectEntry() : node(0), type(ProFile) {}
|
|
|
|
|
explicit ProjectEntry(ProjectNode *node);
|
|
|
|
|
|
|
|
|
|
int compare(const ProjectEntry &rhs) const;
|
|
|
|
|
|
|
|
|
|
ProjectNode *node;
|
|
|
|
|
QString nativeDirectory; // For matching against wizards' files, which are native.
|
|
|
|
|
QString fileName;
|
|
|
|
|
QString baseName;
|
|
|
|
|
Type type;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
ProjectEntry::ProjectEntry(ProjectNode *n) :
|
|
|
|
|
node(n),
|
|
|
|
|
type(ProFile)
|
|
|
|
|
{
|
|
|
|
|
const QFileInfo fi(node->path());
|
|
|
|
|
fileName = fi.fileName();
|
|
|
|
|
baseName = fi.baseName();
|
|
|
|
|
if (fi.suffix() != QLatin1String("pro"))
|
2010-01-29 22:49:55 +01:00
|
|
|
type = PriFile;
|
2010-01-12 16:45:21 +01:00
|
|
|
nativeDirectory = QDir::toNativeSeparators(fi.absolutePath());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Sort helper that sorts by base name and puts '*.pro' before '*.pri'
|
|
|
|
|
int ProjectEntry::compare(const ProjectEntry &rhs) const
|
|
|
|
|
{
|
2010-03-15 15:37:08 +01:00
|
|
|
if (const int drc = nativeDirectory.compare(rhs.nativeDirectory))
|
|
|
|
|
return drc;
|
2010-01-12 16:45:21 +01:00
|
|
|
if (const int brc = baseName.compare(rhs.baseName))
|
|
|
|
|
return brc;
|
|
|
|
|
if (type < rhs.type)
|
|
|
|
|
return -1;
|
|
|
|
|
if (type > rhs.type)
|
|
|
|
|
return 1;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline bool operator<(const ProjectEntry &pe1, const ProjectEntry &pe2)
|
|
|
|
|
{
|
|
|
|
|
return pe1.compare(pe2) < 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QDebug operator<<(QDebug d, const ProjectEntry &e)
|
|
|
|
|
{
|
|
|
|
|
d.nospace() << e.nativeDirectory << ' ' << e.fileName << ' ' << e.type;
|
|
|
|
|
return d;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// --------- ProjectWizardContext
|
2009-01-20 15:31:33 +01:00
|
|
|
struct ProjectWizardContext
|
|
|
|
|
{
|
2010-01-12 16:45:21 +01:00
|
|
|
ProjectWizardContext();
|
|
|
|
|
void clear();
|
|
|
|
|
|
|
|
|
|
QList<Core::IVersionControl*> versionControls;
|
|
|
|
|
QList<ProjectEntry> projects;
|
2008-12-02 12:01:29 +01:00
|
|
|
ProjectWizardPage *page;
|
2010-01-12 16:45:21 +01:00
|
|
|
bool repositoryExists; // Is VCS 'add' sufficient, or should a repository be created?
|
|
|
|
|
QString commonDirectory;
|
2008-12-02 12:01:29 +01:00
|
|
|
};
|
|
|
|
|
|
2010-01-12 16:45:21 +01:00
|
|
|
ProjectWizardContext::ProjectWizardContext() :
|
|
|
|
|
page(0),
|
|
|
|
|
repositoryExists(false)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProjectWizardContext::clear()
|
|
|
|
|
{
|
|
|
|
|
versionControls.clear();
|
|
|
|
|
projects.clear();
|
|
|
|
|
commonDirectory.clear();
|
|
|
|
|
page = 0;
|
|
|
|
|
repositoryExists = false;
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
// ---- ProjectFileWizardExtension
|
2009-01-20 15:31:33 +01:00
|
|
|
ProjectFileWizardExtension::ProjectFileWizardExtension()
|
|
|
|
|
: m_context(0)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ProjectFileWizardExtension::~ProjectFileWizardExtension()
|
|
|
|
|
{
|
|
|
|
|
delete m_context;
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-12 16:45:21 +01:00
|
|
|
// Find the project the new files should be added to given their common
|
|
|
|
|
// path. Either a direct match on the directory or the directory with
|
|
|
|
|
// the longest matching path (list containing"/project/subproject1" matching
|
|
|
|
|
// common path "/project/subproject1/newuserpath").
|
|
|
|
|
// This relies on 'pro' occurring before 'pri' in the list.
|
|
|
|
|
static int findMatchingProject(const QList<ProjectEntry> &projects,
|
|
|
|
|
const QString &commonPath)
|
|
|
|
|
{
|
|
|
|
|
if (projects.isEmpty() || commonPath.isEmpty())
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
int bestMatch = -1;
|
|
|
|
|
int bestMatchLength = 0;
|
|
|
|
|
const int count = projects.size();
|
|
|
|
|
for (int p = 0; p < count; p++) {
|
|
|
|
|
// Direct match or better match? (note that the wizards' files are native).
|
|
|
|
|
const QString &projectDirectory = projects.at(p).nativeDirectory;
|
|
|
|
|
if (projectDirectory == commonPath)
|
|
|
|
|
return p;
|
|
|
|
|
if (projectDirectory.size() > bestMatchLength
|
|
|
|
|
&& commonPath.startsWith(projectDirectory)) {
|
|
|
|
|
bestMatchLength = projectDirectory.size();
|
|
|
|
|
bestMatch = p;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return bestMatch;
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
void ProjectFileWizardExtension::firstExtensionPageShown(const QList<Core::GeneratedFile> &files)
|
|
|
|
|
{
|
|
|
|
|
if (debugExtension)
|
|
|
|
|
qDebug() << Q_FUNC_INFO << files.size();
|
2010-01-12 16:45:21 +01:00
|
|
|
// Parametrize wizard page: find best project to add to, set up files display and
|
|
|
|
|
// version control depending on path
|
2008-12-02 12:01:29 +01:00
|
|
|
QStringList fileNames;
|
|
|
|
|
foreach (const Core::GeneratedFile &f, files)
|
|
|
|
|
fileNames.push_back(f.path());
|
2010-01-12 16:45:21 +01:00
|
|
|
m_context->commonDirectory = Utils::commonPath(fileNames);
|
|
|
|
|
m_context->page->setFilesDisplay(m_context->commonDirectory, fileNames);
|
|
|
|
|
// Find best project (Entry at 0 is 'None').
|
|
|
|
|
const int bestProjectIndex = findMatchingProject(m_context->projects, m_context->commonDirectory);
|
|
|
|
|
if (bestProjectIndex == -1) {
|
|
|
|
|
m_context->page->setCurrentProjectIndex(0);
|
|
|
|
|
} else {
|
|
|
|
|
m_context->page->setCurrentProjectIndex(bestProjectIndex + 1);
|
|
|
|
|
}
|
|
|
|
|
initializeVersionControlChoices();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2010-01-12 16:45:21 +01:00
|
|
|
void ProjectFileWizardExtension::initializeVersionControlChoices()
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2010-01-12 16:45:21 +01:00
|
|
|
// Figure out version control situation:
|
|
|
|
|
// 1) Directory is managed and VCS supports "Add" -> List it
|
|
|
|
|
// 2) Directory is managed and VCS does not support "Add" -> None available
|
|
|
|
|
// 3) Directory is not managed -> Offer all VCS that support "CreateRepository"
|
2010-04-01 16:11:27 +02:00
|
|
|
m_context->versionControls.clear();
|
2010-01-12 16:45:21 +01:00
|
|
|
if (!m_context->commonDirectory.isEmpty()) {
|
|
|
|
|
Core::IVersionControl *managingControl = Core::ICore::instance()->vcsManager()->findVersionControlForDirectory(m_context->commonDirectory);
|
|
|
|
|
if (managingControl) {
|
|
|
|
|
// Under VCS
|
|
|
|
|
if (managingControl->supportsOperation(Core::IVersionControl::AddOperation)) {
|
|
|
|
|
m_context->versionControls.push_back(managingControl);
|
|
|
|
|
m_context->repositoryExists = true;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// Create
|
|
|
|
|
foreach (Core::IVersionControl *vc, ExtensionSystem::PluginManager::instance()->getObjects<Core::IVersionControl>())
|
|
|
|
|
if (vc->supportsOperation(Core::IVersionControl::CreateRepositoryOperation))
|
|
|
|
|
m_context->versionControls.push_back(vc);
|
|
|
|
|
m_context->repositoryExists = false;
|
|
|
|
|
}
|
|
|
|
|
} // has a common root.
|
|
|
|
|
// Compile names
|
|
|
|
|
//: No version control system selected
|
|
|
|
|
QStringList versionControlChoices = QStringList(tr("<None>"));
|
|
|
|
|
foreach(const Core::IVersionControl *c, m_context->versionControls)
|
|
|
|
|
versionControlChoices.push_back(c->displayName());
|
|
|
|
|
m_context->page->setVersionControls(versionControlChoices);
|
|
|
|
|
// Enable adding to version control by default.
|
|
|
|
|
if (m_context->repositoryExists && versionControlChoices.size() >= 2)
|
|
|
|
|
m_context->page->setVersionControlIndex(1);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QList<QWizardPage *> ProjectFileWizardExtension::extensionPages(const Core::IWizard *wizard)
|
|
|
|
|
{
|
2010-01-12 16:45:21 +01:00
|
|
|
if (!m_context) {
|
2008-12-02 12:01:29 +01:00
|
|
|
m_context = new ProjectWizardContext;
|
2010-01-12 16:45:21 +01:00
|
|
|
} else {
|
|
|
|
|
m_context->clear();
|
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
// Init context with page and projects
|
|
|
|
|
m_context->page = new ProjectWizardPage;
|
2010-01-12 16:45:21 +01:00
|
|
|
// Project list remains the same over duration of wizard execution
|
|
|
|
|
// Note that projects cannot be added to projects.
|
|
|
|
|
initProjectChoices(wizard->kind() != Core::IWizard::ProjectWizard);
|
|
|
|
|
return QList<QWizardPage *>() << m_context->page;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProjectFileWizardExtension::initProjectChoices(bool enabled)
|
|
|
|
|
{
|
2008-12-02 12:01:29 +01:00
|
|
|
// Set up project list which remains the same over duration of wizard execution
|
2010-03-15 15:37:08 +01:00
|
|
|
// As tooltip, set the directory for disambiguation (should someone have
|
|
|
|
|
// duplicate base names in differing directories).
|
2010-01-12 16:45:21 +01:00
|
|
|
//: No project selected
|
|
|
|
|
QStringList projectChoices(tr("<None>"));
|
2010-03-15 15:37:08 +01:00
|
|
|
QStringList projectToolTips( QString::null ); // Do not use QString() - gcc-bug.
|
2010-01-12 16:45:21 +01:00
|
|
|
if (enabled) {
|
|
|
|
|
typedef QMap<ProjectEntry, bool> ProjectEntryMap;
|
|
|
|
|
// Sort by base name and purge duplicated entries (resulting from dependencies)
|
|
|
|
|
// via Map.
|
|
|
|
|
ProjectEntryMap entryMap;
|
|
|
|
|
foreach(ProjectNode *n, AllProjectNodesVisitor::allProjects())
|
|
|
|
|
entryMap.insert(ProjectEntry(n), true);
|
|
|
|
|
// Collect names
|
|
|
|
|
const ProjectEntryMap::const_iterator cend = entryMap.constEnd();
|
|
|
|
|
for (ProjectEntryMap::const_iterator it = entryMap.constBegin(); it != cend; ++it) {
|
|
|
|
|
m_context->projects.push_back(it.key());
|
|
|
|
|
projectChoices.push_back(it.key().fileName);
|
2010-03-15 15:37:08 +01:00
|
|
|
projectToolTips.push_back(it.key().nativeDirectory);
|
2010-01-12 16:45:21 +01:00
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2010-01-12 16:45:21 +01:00
|
|
|
m_context->page->setProjects(projectChoices);
|
2010-03-15 15:37:08 +01:00
|
|
|
m_context->page->setProjectToolTips(projectToolTips);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ProjectFileWizardExtension::process(const QList<Core::GeneratedFile> &files, QString *errorMessage)
|
2010-01-12 16:45:21 +01:00
|
|
|
{
|
|
|
|
|
return processProject(files, errorMessage) &&
|
|
|
|
|
processVersionControl(files, errorMessage);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Add files to project && version control
|
|
|
|
|
bool ProjectFileWizardExtension::processProject(const QList<Core::GeneratedFile> &files, QString *errorMessage)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
typedef QMultiMap<FileType, QString> TypeFileMap;
|
2010-01-12 16:45:21 +01:00
|
|
|
|
|
|
|
|
// Add files to project (Entry at 0 is 'None').
|
|
|
|
|
const int projectIndex = m_context->page->currentProjectIndex() - 1;
|
|
|
|
|
if (projectIndex < 0 || projectIndex >= m_context->projects.size())
|
|
|
|
|
return true;
|
|
|
|
|
ProjectNode *project = m_context->projects.at(projectIndex).node;
|
|
|
|
|
// Split into lists by file type and bulk-add them.
|
|
|
|
|
TypeFileMap typeFileMap;
|
|
|
|
|
const Core::MimeDatabase *mdb = Core::ICore::instance()->mimeDatabase();
|
|
|
|
|
foreach (const Core::GeneratedFile &generatedFile, files) {
|
|
|
|
|
const QString path = generatedFile.path();
|
|
|
|
|
typeFileMap.insert(typeForFileName(mdb, path), path);
|
|
|
|
|
}
|
|
|
|
|
foreach (FileType type, typeFileMap.uniqueKeys()) {
|
|
|
|
|
const QStringList files = typeFileMap.values(type);
|
|
|
|
|
if (!project->addFiles(type, files)) {
|
|
|
|
|
*errorMessage = tr("Failed to add one or more files to project\n'%1' (%2).").
|
|
|
|
|
arg(project->path(), files.join(QString(QLatin1Char(','))));
|
|
|
|
|
return false;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2010-01-12 16:45:21 +01:00
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ProjectFileWizardExtension::processVersionControl(const QList<Core::GeneratedFile> &files, QString *errorMessage)
|
|
|
|
|
{
|
|
|
|
|
// Add files to version control (Entry at 0 is 'None').
|
|
|
|
|
const int vcsIndex = m_context->page->versionControlIndex() - 1;
|
|
|
|
|
if (vcsIndex < 0 || vcsIndex >= m_context->versionControls.size())
|
|
|
|
|
return true;
|
|
|
|
|
QTC_ASSERT(!m_context->commonDirectory.isEmpty(), return false);
|
|
|
|
|
Core::IVersionControl *versionControl = m_context->versionControls.at(vcsIndex);
|
|
|
|
|
// Create repository?
|
|
|
|
|
if (!m_context->repositoryExists) {
|
|
|
|
|
QTC_ASSERT(versionControl->supportsOperation(Core::IVersionControl::CreateRepositoryOperation), return false);
|
|
|
|
|
if (!versionControl->vcsCreateRepository(m_context->commonDirectory)) {
|
|
|
|
|
*errorMessage = tr("A version control system repository could not be created in '%1'.").arg(m_context->commonDirectory);
|
|
|
|
|
return false;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
}
|
2010-01-12 16:45:21 +01:00
|
|
|
// Add files if supported.
|
|
|
|
|
if (versionControl->supportsOperation(Core::IVersionControl::AddOperation)) {
|
2008-12-02 12:01:29 +01:00
|
|
|
foreach (const Core::GeneratedFile &generatedFile, files) {
|
2010-01-12 16:45:21 +01:00
|
|
|
if (!versionControl->vcsAdd(generatedFile.path())) {
|
2008-12-02 12:01:29 +01:00
|
|
|
*errorMessage = tr("Failed to add '%1' to the version control system.").arg(generatedFile.path());
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 16:19:05 +01:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace ProjectExplorer
|