OSDN Git Service

d83604069042462d09c39138fbf90f45e844d4e5
[qt-creator-jp/qt-creator-jp.git] / src / plugins / qt4projectmanager / qt-s60 / s60publishingwizardfactories.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 "s60publishingwizardfactories.h"
35 #include "s60publishingwizardovi.h"
36
37 #include "qmakestep.h"
38 #include "qt4project.h"
39 #include "qt4projectmanagerconstants.h"
40
41 #include <projectexplorer/target.h>
42
43 using namespace ProjectExplorer;
44
45 namespace Qt4ProjectManager {
46 namespace Internal {
47 S60PublishingWizardFactoryOvi::S60PublishingWizardFactoryOvi(QObject *parent)
48     : IPublishingWizardFactory(parent)
49 {}
50
51 QString S60PublishingWizardFactoryOvi::displayName() const
52 {
53     return tr("Publish Qt Symbian Applications to Ovi Store");
54 }
55
56 QString S60PublishingWizardFactoryOvi::description() const
57 {
58     return tr("This wizard checks "
59               "your project file to make sure it complies with "
60               "Ovi Store submission criteria.\n\n"
61               "The wizard creates SIS files that can be submitted "
62               "to Publish to Ovi.\n\n"
63               "You cannot use it if you use application UIDs from Symbian Signed.\n\n"
64               "You cannot use it for the Certified Signed and Manufacturer level capabilities:\n"
65               "NetworkControl, MultimediaDD, CommDD, DiskAdmin, AllFiles, DRM and TCB.\n\n"
66               "Your application will also be rejected by Ovi QA if you choose "
67               "an unreleased Qt version on the next page.");
68 }
69
70 bool S60PublishingWizardFactoryOvi::canCreateWizard(const Project *project) const
71 {
72     if (!qobject_cast<const Qt4Project *>(project))
73         return false;
74     foreach (const Target *const target, project->targets()) {
75         if (target->id() == QLatin1String(Constants::S60_DEVICE_TARGET_ID))
76             return true;
77     }
78     return false;
79 }
80
81 QWizard *S60PublishingWizardFactoryOvi::createWizard(const Project *project) const
82 {
83     Q_ASSERT(canCreateWizard(project));
84     return new S60PublishingWizardOvi(project);
85 }
86
87 } // namespace Internal
88 } // namespace Qt4ProjectManager
89