OSDN Git Service

It's 2011 now.
[qt-creator-jp/qt-creator-jp.git] / src / plugins / qt4projectmanager / wizards / qmlstandaloneappwizardpages.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 "qmlstandaloneappwizardpages.h"
35 #include "ui_qmlstandaloneappwizardsourcespage.h"
36 #include <coreplugin/coreconstants.h>
37
38 #include <QtGui/QDesktopServices>
39 #include <QtGui/QFileDialog>
40 #include <QtGui/QFileDialog>
41 #include <QtGui/QMessageBox>
42
43 namespace Qt4ProjectManager {
44 namespace Internal {
45
46 class QmlStandaloneAppWizardSourcesPagePrivate
47 {
48     Ui::QmlStandaloneAppWizardSourcesPage ui;
49     friend class QmlStandaloneAppWizardSourcesPage;
50 };
51
52 QmlStandaloneAppWizardSourcesPage::QmlStandaloneAppWizardSourcesPage(QWidget *parent)
53     : QWizardPage(parent)
54     , m_d(new QmlStandaloneAppWizardSourcesPagePrivate)
55 {
56     m_d->ui.setupUi(this);
57     m_d->ui.mainQmlFileLineEdit->setExpectedKind(Utils::PathChooser::File);
58     m_d->ui.mainQmlFileLineEdit->setPromptDialogFilter(QLatin1String("*.qml"));
59     m_d->ui.mainQmlFileLineEdit->setPromptDialogTitle(tr("Select QML File"));
60     connect(m_d->ui.mainQmlFileLineEdit, SIGNAL(changed(QString)), SIGNAL(completeChanged()));
61     connect(m_d->ui.importExistingQmlRadioButton,
62             SIGNAL(toggled(bool)), SIGNAL(completeChanged()));
63     connect(m_d->ui.newQmlRadioButton, SIGNAL(toggled(bool)),
64             m_d->ui.mainQmlFileLineEdit, SLOT(setDisabled(bool)));
65     m_d->ui.newQmlRadioButton->setChecked(true);
66 }
67
68 QmlStandaloneAppWizardSourcesPage::~QmlStandaloneAppWizardSourcesPage()
69 {
70     delete m_d;
71 }
72
73 QString QmlStandaloneAppWizardSourcesPage::mainQmlFile() const
74 {
75     return m_d->ui.importExistingQmlRadioButton->isChecked() ?
76                 m_d->ui.mainQmlFileLineEdit->path() : QString();
77 }
78
79 bool QmlStandaloneAppWizardSourcesPage::isComplete() const
80 {
81     return !m_d->ui.importExistingQmlRadioButton->isChecked()
82             || m_d->ui.mainQmlFileLineEdit->isValid();
83 }
84
85 } // namespace Internal
86 } // namespace Qt4ProjectManager