OSDN Git Service

dc3b45518e77b6078198528605d0c7d998bf9543
[qt-creator-jp/qt-creator-jp.git] / src / plugins / projectexplorer / projectconfiguration.cpp
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Contact: Nokia Corporation (qt-info@nokia.com)
8 **
9 ** No Commercial Usage
10 **
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 **
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Nokia gives you certain additional
26 ** rights.  These rights are described in the Nokia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** If you have questions regarding the use of this file, please contact
30 ** Nokia at qt-info@nokia.com.
31 **
32 **************************************************************************/
33
34 #include "projectconfiguration.h"
35
36 using namespace ProjectExplorer;
37
38 namespace {
39 const char * const CONFIGURATION_ID_KEY("ProjectExplorer.ProjectConfiguration.Id");
40 const char * const DISPLAY_NAME_KEY("ProjectExplorer.ProjectConfiguration.DisplayName");
41 const char * const DEFAULT_DISPLAY_NAME_KEY("ProjectExplorer.ProjectConfiguration.DefaultDisplayName");
42 }
43
44 ProjectConfiguration::ProjectConfiguration(QObject *parent, const QString &id) :
45     QObject(parent),
46     m_id(id)
47 {
48     Q_ASSERT(!m_id.isEmpty());
49 }
50
51 ProjectConfiguration::ProjectConfiguration(QObject *parent, const ProjectConfiguration *source) :
52     QObject(parent),
53     m_id(source->m_id),
54     m_defaultDisplayName(source->m_defaultDisplayName)
55 {
56     Q_ASSERT(source);
57     m_displayName = tr("Clone of %1").arg(source->displayName());
58 }
59
60 ProjectConfiguration::~ProjectConfiguration()
61 { }
62
63 QString ProjectConfiguration::id() const
64 {
65     return m_id;
66 }
67
68 QString ProjectConfiguration::displayName() const
69 {
70     if (!m_displayName.isEmpty())
71         return m_displayName;
72     return m_defaultDisplayName;
73 }
74
75 void ProjectConfiguration::setDisplayName(const QString &name)
76 {
77     if (displayName() == name)
78         return;
79     m_displayName = name;
80     emit displayNameChanged();
81 }
82
83 void ProjectConfiguration::setDefaultDisplayName(const QString &name)
84 {
85     if (m_defaultDisplayName == name)
86         return;
87     const QString originalName = displayName();
88     m_defaultDisplayName = name;
89     if (originalName != displayName())
90         emit displayNameChanged();
91 }
92
93 QVariantMap ProjectConfiguration::toMap() const
94 {
95     QVariantMap map;
96     map.insert(QLatin1String(CONFIGURATION_ID_KEY), m_id);
97     map.insert(QLatin1String(DISPLAY_NAME_KEY), m_displayName);
98     map.insert(QLatin1String(DEFAULT_DISPLAY_NAME_KEY), m_defaultDisplayName);
99     return map;
100 }
101
102 bool ProjectConfiguration::fromMap(const QVariantMap &map)
103 {
104     m_id = map.value(QLatin1String(CONFIGURATION_ID_KEY), QString()).toString();
105     m_displayName = map.value(QLatin1String(DISPLAY_NAME_KEY), QString()).toString();
106     m_defaultDisplayName = map.value(QLatin1String(DEFAULT_DISPLAY_NAME_KEY),
107                                      m_defaultDisplayName.isEmpty() ?
108                                          m_displayName : m_defaultDisplayName).toString();
109     return !m_id.isEmpty();
110 }
111
112 QString ProjectExplorer::idFromMap(const QVariantMap &map)
113 {
114     return map.value(QLatin1String(CONFIGURATION_ID_KEY), QString()).toString();
115 }
116
117 QString ProjectExplorer::displayNameFromMap(const QVariantMap &map)
118 {
119     return map.value(QLatin1String(DISPLAY_NAME_KEY), QString()).toString();
120 }