~bzoltan/kubuntu-packaging/decouple_cmake_plugin

« back to all changes in this revision

Viewing changes to src/plugins/qt4projectmanager/wizards/emptyprojectwizard.cpp

  • Committer: Timo Jyrinki
  • Date: 2013-12-02 09:16:15 UTC
  • mfrom: (1.1.29)
  • Revision ID: timo.jyrinki@canonical.com-20131202091615-xbj1os1f604ber1m
New upstream release candidate.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/****************************************************************************
2
 
**
3
 
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
4
 
** Contact: http://www.qt-project.org/legal
5
 
**
6
 
** This file is part of Qt Creator.
7
 
**
8
 
** Commercial License Usage
9
 
** Licensees holding valid commercial Qt licenses may use this file in
10
 
** accordance with the commercial license agreement provided with the
11
 
** Software or, alternatively, in accordance with the terms contained in
12
 
** a written agreement between you and Digia.  For licensing terms and
13
 
** conditions see http://qt.digia.com/licensing.  For further information
14
 
** use the contact form at http://qt.digia.com/contact-us.
15
 
**
16
 
** GNU Lesser General Public License Usage
17
 
** Alternatively, this file may be used under the terms of the GNU Lesser
18
 
** General Public License version 2.1 as published by the Free Software
19
 
** Foundation and appearing in the file LICENSE.LGPL included in the
20
 
** packaging of this file.  Please review the following information to
21
 
** ensure the GNU Lesser General Public License version 2.1 requirements
22
 
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23
 
**
24
 
** In addition, as a special exception, Digia gives you certain additional
25
 
** rights.  These rights are described in the Digia Qt LGPL Exception
26
 
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
27
 
**
28
 
****************************************************************************/
29
 
 
30
 
#include "emptyprojectwizard.h"
31
 
 
32
 
#include "emptyprojectwizarddialog.h"
33
 
 
34
 
#include <projectexplorer/projectexplorerconstants.h>
35
 
#include <qtsupport/qtsupportconstants.h>
36
 
 
37
 
#include <QCoreApplication>
38
 
 
39
 
namespace QmakeProjectManager {
40
 
namespace Internal {
41
 
 
42
 
EmptyProjectWizard::EmptyProjectWizard()
43
 
{
44
 
    setId(QLatin1String("U.Qt4Empty"));
45
 
    setCategory(QLatin1String(ProjectExplorer::Constants::QT_PROJECT_WIZARD_CATEGORY));
46
 
    setDisplayCategory(QCoreApplication::translate("ProjectExplorer",
47
 
             ProjectExplorer::Constants::QT_PROJECT_WIZARD_CATEGORY_DISPLAY));
48
 
    setDisplayName(tr("Empty Qt Project"));
49
 
    setDescription(tr("Creates a qmake-based project without any files. This allows you to create "
50
 
                "an application without any default classes."));
51
 
    setIcon(QIcon(QLatin1String(":/wizards/images/gui.png")));
52
 
    setRequiredFeatures(Core::Feature(QtSupport::Constants::FEATURE_QT));
53
 
}
54
 
 
55
 
QWizard *EmptyProjectWizard::createWizardDialog(QWidget *parent,
56
 
                                                const Core::WizardDialogParameters &wizardDialogParameters) const
57
 
{
58
 
    EmptyProjectWizardDialog *dialog = new EmptyProjectWizardDialog(displayName(), icon(), parent, wizardDialogParameters);
59
 
    dialog->setProjectName(EmptyProjectWizardDialog::uniqueProjectName(wizardDialogParameters.defaultPath()));
60
 
    return dialog;
61
 
}
62
 
 
63
 
Core::GeneratedFiles
64
 
        EmptyProjectWizard::generateFiles(const QWizard *w,
65
 
                                        QString * /*errorMessage*/) const
66
 
{
67
 
    const EmptyProjectWizardDialog *wizard = qobject_cast< const EmptyProjectWizardDialog *>(w);
68
 
    const QtProjectParameters params = wizard->parameters();
69
 
    const QString projectPath = params.projectPath();
70
 
    const QString profileName = Core::BaseFileWizard::buildFileName(projectPath, params.fileName, profileSuffix());
71
 
 
72
 
    Core::GeneratedFile profile(profileName);
73
 
    profile.setAttributes(Core::GeneratedFile::OpenProjectAttribute | Core::GeneratedFile::OpenEditorAttribute);
74
 
    return Core::GeneratedFiles() << profile;
75
 
}
76
 
 
77
 
} // namespace Internal
78
 
} // namespace QmakeProjectManager