OSDN Git Service

464345a5e0b4cbce2780bf3ce6675b3f021423eb
[qt-creator-jp/qt-creator-jp.git] / src / plugins / qt4projectmanager / qt-maemo / maemopublishingbuildsettingspagefremantlefree.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 #include "maemopublishingbuildsettingspagefremantlefree.h"
34 #include "ui_maemopublishingbuildsettingspagefremantlefree.h"
35
36 #include "maemoglobal.h"
37 #include "maemopublisherfremantlefree.h"
38
39 #include <projectexplorer/project.h>
40 #include <projectexplorer/target.h>
41 #include <qt4projectmanager/qt4buildconfiguration.h>
42 #include <qt4projectmanager/qt4projectmanagerconstants.h>
43 #include <utils/qtcassert.h>
44
45 using namespace ProjectExplorer;
46
47 namespace Qt4ProjectManager {
48 namespace Internal {
49
50 MaemoPublishingBuildSettingsPageFremantleFree::MaemoPublishingBuildSettingsPageFremantleFree(const Project *project,
51     MaemoPublisherFremantleFree *publisher, QWidget *parent) :
52     QWizardPage(parent),
53     m_publisher(publisher),
54     ui(new Ui::MaemoPublishingWizardPageFremantleFree)
55 {
56     ui->setupUi(this);
57     collectBuildConfigurations(project);
58     QTC_ASSERT(!m_buildConfigs.isEmpty(), return);
59     foreach (const Qt4BuildConfiguration * const bc, m_buildConfigs) {
60         ui->buildConfigComboBox->addItem(bc->displayName());
61     }
62     ui->buildConfigComboBox->setSizeAdjustPolicy(QComboBox::AdjustToContentsOnFirstShow);
63     ui->buildConfigComboBox->setCurrentIndex(0);
64     connect(ui->skipUploadCheckBox, SIGNAL(toggled(bool)),
65         SLOT(handleNoUploadSettingChanged()));
66 }
67
68 MaemoPublishingBuildSettingsPageFremantleFree::~MaemoPublishingBuildSettingsPageFremantleFree()
69 {
70     delete ui;
71 }
72
73 void MaemoPublishingBuildSettingsPageFremantleFree::collectBuildConfigurations(const Project *project)
74 {
75     foreach (const Target *const target, project->targets()) {
76         if (target->id() != QLatin1String(Constants::MAEMO5_DEVICE_TARGET_ID))
77             continue;
78         foreach (BuildConfiguration * const bc, target->buildConfigurations()) {
79             Qt4BuildConfiguration * const qt4Bc
80                 = qobject_cast<Qt4BuildConfiguration *>(bc);
81             if (!qt4Bc)
82                 continue;
83             if (MaemoGlobal::version(qt4Bc->qtVersion()) == MaemoGlobal::Maemo5)
84                 m_buildConfigs << qt4Bc;
85         }
86         break;
87     }
88 }
89
90 void MaemoPublishingBuildSettingsPageFremantleFree::initializePage()
91 {
92     ui->skipUploadCheckBox->setChecked(true);
93 }
94
95 bool MaemoPublishingBuildSettingsPageFremantleFree::validatePage()
96 {
97     m_publisher->setBuildConfiguration(m_buildConfigs.at(ui->buildConfigComboBox->currentIndex()));
98     m_publisher->setDoUpload(!skipUpload());
99     return true;
100 }
101
102 void MaemoPublishingBuildSettingsPageFremantleFree::handleNoUploadSettingChanged()
103 {
104     setCommitPage(skipUpload());
105 }
106
107 bool MaemoPublishingBuildSettingsPageFremantleFree::skipUpload() const
108 {
109     return ui->skipUploadCheckBox->isChecked();
110 }
111
112 } // namespace Internal
113 } // namespace Qt4ProjectManager