OSDN Git Service

Update license.
[qt-creator-jp/qt-creator-jp.git] / src / plugins / qmlprojectmanager / qmlprojectrunconfigurationfactory.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 (info@qt.nokia.com)
8 **
9 **
10 ** GNU Lesser General Public License Usage
11 **
12 ** This file may be used under the terms of the GNU Lesser General Public
13 ** License version 2.1 as published by the Free Software Foundation and
14 ** appearing in the file LICENSE.LGPL included in the packaging of this file.
15 ** Please review the following information to ensure the GNU Lesser General
16 ** Public License version 2.1 requirements will be met:
17 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
18 **
19 ** In addition, as a special exception, Nokia gives you certain additional
20 ** rights. These rights are described in the Nokia Qt LGPL Exception
21 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
22 **
23 ** Other Usage
24 **
25 ** Alternatively, this file may be used in accordance with the terms and
26 ** conditions contained in a signed written agreement between you and Nokia.
27 **
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
30 **
31 **************************************************************************/
32
33 #include "qmlprojectmanagerconstants.h"
34 #include "qmlprojectrunconfiguration.h"
35 #include "qmlprojectrunconfigurationfactory.h"
36 #include "qmlprojecttarget.h"
37
38 #include <projectexplorer/projectconfiguration.h>
39 #include <projectexplorer/runconfiguration.h>
40
41 namespace QmlProjectManager {
42 namespace Internal {
43
44 QmlProjectRunConfigurationFactory::QmlProjectRunConfigurationFactory(QObject *parent) :
45     ProjectExplorer::IRunConfigurationFactory(parent)
46 {
47 }
48
49 QmlProjectRunConfigurationFactory::~QmlProjectRunConfigurationFactory()
50 {
51 }
52
53 QStringList QmlProjectRunConfigurationFactory::availableCreationIds(ProjectExplorer::Target *parent) const
54 {
55     if (!qobject_cast<QmlProjectTarget *>(parent))
56         return QStringList();
57     return QStringList() << QLatin1String(Constants::QML_RC_ID);
58 }
59
60 QString QmlProjectRunConfigurationFactory::displayNameForId(const QString &id) const
61 {
62     if (id == QLatin1String(Constants::QML_RC_ID))
63         return tr("Run QML Script");
64     return QString();
65 }
66
67 bool QmlProjectRunConfigurationFactory::canCreate(ProjectExplorer::Target *parent, const QString &id) const
68 {
69     if (!qobject_cast<QmlProjectTarget *>(parent))
70         return false;
71     return id == QLatin1String(Constants::QML_RC_ID);
72 }
73
74 ProjectExplorer::RunConfiguration *QmlProjectRunConfigurationFactory::create(ProjectExplorer::Target *parent, const QString &id)
75 {
76     if (!canCreate(parent, id))
77         return 0;
78     QmlProjectTarget *qmlparent = static_cast<QmlProjectTarget *>(parent);
79     return new QmlProjectRunConfiguration(qmlparent);
80 }
81
82 bool QmlProjectRunConfigurationFactory::canRestore(ProjectExplorer::Target *parent, const QVariantMap &map) const
83 {
84     QString id = ProjectExplorer::idFromMap(map);
85     return canCreate(parent, id);
86 }
87
88 ProjectExplorer::RunConfiguration *QmlProjectRunConfigurationFactory::restore(ProjectExplorer::Target *parent, const QVariantMap &map)
89 {
90     if (!canRestore(parent, map))
91         return 0;
92     QmlProjectTarget *qmlparent = static_cast<QmlProjectTarget *>(parent);
93     QmlProjectRunConfiguration *rc = new QmlProjectRunConfiguration(qmlparent);
94     if (rc->fromMap(map))
95         return rc;
96     delete rc;
97     return 0;
98 }
99
100 bool QmlProjectRunConfigurationFactory::canClone(ProjectExplorer::Target *parent, ProjectExplorer::RunConfiguration *source) const
101 {
102     return canCreate(parent, source->id());
103 }
104
105 ProjectExplorer::RunConfiguration *QmlProjectRunConfigurationFactory::clone(ProjectExplorer::Target *parent,
106                                                                      ProjectExplorer::RunConfiguration *source)
107 {
108     if (!canClone(parent, source))
109         return 0;
110     QmlProjectTarget *qmlparent = static_cast<QmlProjectTarget *>(parent);
111     return new QmlProjectRunConfiguration(qmlparent, qobject_cast<QmlProjectRunConfiguration *>(source));
112 }
113
114 } // namespace Internal
115 } // namespace QmlProjectManager
116