OSDN Git Service

7bfaeb97099ae92c7ad9bf8514b12b8c1b17a00c
[qt-creator-jp/qt-creator-jp.git] / src / plugins / qt4projectmanager / wizards / qtquickappwizardpages.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 "qtquickappwizardpages.h"
35 #include "ui_qtquickappwizardsourcespage.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 QtQuickAppWizardSourcesPagePrivate
47 {
48     Ui::QtQuickAppWizardSourcesPage ui;
49     friend class QtQuickAppWizardSourcesPage;
50 };
51
52 QtQuickAppWizardSourcesPage::QtQuickAppWizardSourcesPage(QWidget *parent)
53     : QWizardPage(parent)
54     , m_d(new QtQuickAppWizardSourcesPagePrivate)
55 {
56     m_d->ui.setupUi(this);
57     m_d->ui.importLineEdit->setExpectedKind(Utils::PathChooser::File);
58     m_d->ui.importLineEdit->setPromptDialogFilter(QLatin1String("*.qml"));
59     m_d->ui.importLineEdit->setPromptDialogTitle(tr("Select QML File"));
60     connect(m_d->ui.importLineEdit, SIGNAL(changed(QString)), SIGNAL(completeChanged()));
61     connect(m_d->ui.importRadioButton,
62             SIGNAL(toggled(bool)), SIGNAL(completeChanged()));
63     connect(m_d->ui.generateRadioButton, SIGNAL(toggled(bool)),
64             m_d->ui.importLineEdit, SLOT(setDisabled(bool)));
65     m_d->ui.generateRadioButton->setChecked(true);
66 }
67
68 QtQuickAppWizardSourcesPage::~QtQuickAppWizardSourcesPage()
69 {
70     delete m_d;
71 }
72
73 QtQuickApp::Mode QtQuickAppWizardSourcesPage::mainQmlMode() const
74 {
75     return  m_d->ui.generateRadioButton->isChecked() ? QtQuickApp::ModeGenerate
76                                                      : QtQuickApp::ModeImport;
77 }
78
79 QString QtQuickAppWizardSourcesPage::mainQmlFile() const
80 {
81     return mainQmlMode() == QtQuickApp::ModeImport ?
82                 m_d->ui.importLineEdit->path() : QString();
83 }
84
85 bool QtQuickAppWizardSourcesPage::isComplete() const
86 {
87     return mainQmlMode() != QtQuickApp::ModeImport
88             || m_d->ui.importLineEdit->isValid();
89 }
90
91 } // namespace Internal
92 } // namespace Qt4ProjectManager