2010-01-14 14:48:06 +01:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2012-01-26 18:33:46 +01:00
|
|
|
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
|
2010-01-14 14:48:06 +01:00
|
|
|
**
|
2011-11-02 15:59:12 +01:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2010-01-14 14:48:06 +01:00
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** 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.
|
2010-01-14 14:48:06 +01:00
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2011-04-13 08:42:33 +02:00
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Other Usage
|
|
|
|
|
**
|
|
|
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
|
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
|
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** If you have questions regarding the use of this file, please contact
|
2011-11-02 15:59:12 +01:00
|
|
|
** Nokia at qt-info@nokia.com.
|
2010-01-14 14:48:06 +01:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "projectconfiguration.h"
|
|
|
|
|
|
|
|
|
|
using namespace ProjectExplorer;
|
|
|
|
|
|
2012-01-24 16:27:05 +01:00
|
|
|
const char CONFIGURATION_ID_KEY[] = "ProjectExplorer.ProjectConfiguration.Id";
|
|
|
|
|
const char DISPLAY_NAME_KEY[] = "ProjectExplorer.ProjectConfiguration.DisplayName";
|
|
|
|
|
const char DEFAULT_DISPLAY_NAME_KEY[] = "ProjectExplorer.ProjectConfiguration.DefaultDisplayName";
|
2010-01-14 14:48:06 +01:00
|
|
|
|
2010-07-16 14:00:41 +02:00
|
|
|
ProjectConfiguration::ProjectConfiguration(QObject *parent, const QString &id) :
|
|
|
|
|
QObject(parent),
|
2010-01-14 14:48:06 +01:00
|
|
|
m_id(id)
|
|
|
|
|
{
|
|
|
|
|
Q_ASSERT(!m_id.isEmpty());
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-16 14:00:41 +02:00
|
|
|
ProjectConfiguration::ProjectConfiguration(QObject *parent, const ProjectConfiguration *source) :
|
2010-08-19 12:26:21 +02:00
|
|
|
QObject(parent),
|
|
|
|
|
m_id(source->m_id),
|
|
|
|
|
m_defaultDisplayName(source->m_defaultDisplayName)
|
2010-01-14 14:48:06 +01:00
|
|
|
{
|
2010-07-16 14:00:41 +02:00
|
|
|
Q_ASSERT(source);
|
|
|
|
|
m_displayName = tr("Clone of %1").arg(source->displayName());
|
2010-01-14 14:48:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ProjectConfiguration::~ProjectConfiguration()
|
2010-07-16 14:00:41 +02:00
|
|
|
{ }
|
2010-01-14 14:48:06 +01:00
|
|
|
|
|
|
|
|
QString ProjectConfiguration::id() const
|
|
|
|
|
{
|
|
|
|
|
return m_id;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString ProjectConfiguration::displayName() const
|
|
|
|
|
{
|
2010-08-19 12:26:21 +02:00
|
|
|
if (!m_displayName.isEmpty())
|
|
|
|
|
return m_displayName;
|
|
|
|
|
return m_defaultDisplayName;
|
2010-01-14 14:48:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProjectConfiguration::setDisplayName(const QString &name)
|
|
|
|
|
{
|
2010-08-19 12:26:21 +02:00
|
|
|
if (displayName() == name)
|
2010-01-14 14:48:06 +01:00
|
|
|
return;
|
2011-05-20 12:52:59 +02:00
|
|
|
if (name == m_defaultDisplayName) {
|
|
|
|
|
m_displayName.clear();
|
|
|
|
|
} else {
|
|
|
|
|
m_displayName = name;
|
|
|
|
|
}
|
2010-01-14 14:48:06 +01:00
|
|
|
emit displayNameChanged();
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-19 12:26:21 +02:00
|
|
|
void ProjectConfiguration::setDefaultDisplayName(const QString &name)
|
|
|
|
|
{
|
|
|
|
|
if (m_defaultDisplayName == name)
|
|
|
|
|
return;
|
|
|
|
|
const QString originalName = displayName();
|
|
|
|
|
m_defaultDisplayName = name;
|
|
|
|
|
if (originalName != displayName())
|
|
|
|
|
emit displayNameChanged();
|
|
|
|
|
}
|
|
|
|
|
|
2011-05-20 12:52:59 +02:00
|
|
|
bool ProjectConfiguration::usesDefaultDisplayName() const
|
|
|
|
|
{
|
|
|
|
|
return m_displayName.isEmpty();
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-14 14:48:06 +01:00
|
|
|
QVariantMap ProjectConfiguration::toMap() const
|
|
|
|
|
{
|
|
|
|
|
QVariantMap map;
|
|
|
|
|
map.insert(QLatin1String(CONFIGURATION_ID_KEY), m_id);
|
|
|
|
|
map.insert(QLatin1String(DISPLAY_NAME_KEY), m_displayName);
|
2010-08-19 12:26:21 +02:00
|
|
|
map.insert(QLatin1String(DEFAULT_DISPLAY_NAME_KEY), m_defaultDisplayName);
|
2010-01-14 14:48:06 +01:00
|
|
|
return map;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ProjectConfiguration::fromMap(const QVariantMap &map)
|
|
|
|
|
{
|
|
|
|
|
m_id = map.value(QLatin1String(CONFIGURATION_ID_KEY), QString()).toString();
|
|
|
|
|
m_displayName = map.value(QLatin1String(DISPLAY_NAME_KEY), QString()).toString();
|
2010-11-23 12:17:54 +01:00
|
|
|
m_defaultDisplayName = map.value(QLatin1String(DEFAULT_DISPLAY_NAME_KEY),
|
|
|
|
|
m_defaultDisplayName.isEmpty() ?
|
|
|
|
|
m_displayName : m_defaultDisplayName).toString();
|
2010-01-14 14:48:06 +01:00
|
|
|
return !m_id.isEmpty();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString ProjectExplorer::idFromMap(const QVariantMap &map)
|
|
|
|
|
{
|
|
|
|
|
return map.value(QLatin1String(CONFIGURATION_ID_KEY), QString()).toString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString ProjectExplorer::displayNameFromMap(const QVariantMap &map)
|
|
|
|
|
{
|
|
|
|
|
return map.value(QLatin1String(DISPLAY_NAME_KEY), QString()).toString();
|
|
|
|
|
}
|