OSDN Git Service

4a29db59bc2cbc448ef80718cba684a0a9ff7ebf
[qt-creator-jp/qt-creator-jp.git] / src / plugins / qt4projectmanager / wizards / emptyprojectwizard.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 "emptyprojectwizard.h"
35
36 #include "emptyprojectwizarddialog.h"
37
38 #include <projectexplorer/projectexplorerconstants.h>
39
40 #include <QtGui/QIcon>
41
42 namespace Qt4ProjectManager {
43 namespace Internal {
44
45 EmptyProjectWizard::EmptyProjectWizard()
46   : QtWizard(QLatin1String("U.Qt4Empty"),
47              QLatin1String(ProjectExplorer::Constants::PROJECT_WIZARD_CATEGORY),
48              QLatin1String(ProjectExplorer::Constants::PROJECT_WIZARD_TR_SCOPE),
49              QLatin1String(ProjectExplorer::Constants::PROJECT_WIZARD_TR_CATEGORY),
50              tr("Empty Qt Project"),
51              tr("Creates a qmake-based project without any files. This allows you to create "
52                 "an application without any default classes."),
53              QIcon(QLatin1String(":/wizards/images/gui.png")))
54 {
55 }
56
57 QWizard *EmptyProjectWizard::createWizardDialog(QWidget *parent,
58                                               const QString &defaultPath,
59                                               const WizardPageList &extensionPages) const
60 {
61     EmptyProjectWizardDialog *dialog = new EmptyProjectWizardDialog(displayName(), icon(), extensionPages, parent);
62     dialog->setPath(defaultPath);
63     dialog->setProjectName(EmptyProjectWizardDialog::uniqueProjectName(defaultPath));
64     return dialog;
65 }
66
67 Core::GeneratedFiles
68         EmptyProjectWizard::generateFiles(const QWizard *w,
69                                         QString * /*errorMessage*/) const
70 {
71     const EmptyProjectWizardDialog *wizard = qobject_cast< const EmptyProjectWizardDialog *>(w);
72     const QtProjectParameters params = wizard->parameters();
73     const QString projectPath = params.projectPath();
74     const QString profileName = Core::BaseFileWizard::buildFileName(projectPath, params.fileName, profileSuffix());
75
76     Core::GeneratedFile profile(profileName);
77     profile.setAttributes(Core::GeneratedFile::OpenProjectAttribute | Core::GeneratedFile::OpenEditorAttribute);
78     return Core::GeneratedFiles() << profile;
79 }
80
81 } // namespace Internal
82 } // namespace Qt4ProjectManager