/************************************************************************** ** ** This file is part of Qt Creator ** ** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies). ** ** Contact: http://www.qt-project.org/ ** ** ** GNU Lesser General Public License Usage ** ** This file may be used under the terms of the GNU Lesser General Public ** License version 2.1 as published by the Free Software Foundation and ** appearing in the file LICENSE.LGPL included in the packaging of this file. ** Please review the following information to ensure the GNU Lesser General ** Public License version 2.1 requirements will be met: ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain additional ** rights. These rights are described in the Nokia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** Other Usage ** ** Alternatively, this file may be used in accordance with the terms and ** conditions contained in a signed written agreement between you and Nokia. ** ** **************************************************************************/ #include "mobileappwizardpages.h" #include "ui_mobileappwizardgenericoptionspage.h" #include "ui_mobileappwizardmaemooptionspage.h" #include "ui_mobileappwizardharmattanoptionspage.h" #include "ui_mobileappwizardsymbianoptionspage.h" #include #include #include #include #include #include #include namespace Qt4ProjectManager { namespace Internal { class MobileAppWizardGenericOptionsPagePrivate { Ui::MobileAppWizardGenericOptionsPage ui; friend class MobileAppWizardGenericOptionsPage; }; class MobileAppWizardSymbianOptionsPagePrivate { Ui::MobileAppWizardSymbianOptionsPage ui; QString svgIcon; friend class MobileAppWizardSymbianOptionsPage; }; class MobileAppWizardMaemoOptionsPagePrivate { Ui::MobileAppWizardMaemoOptionsPage ui; QSize iconSize; QString pngIcon; friend class MobileAppWizardMaemoOptionsPage; }; class MobileAppWizardHarmattanOptionsPagePrivate { Ui::MobileAppWizardHarmattanOptionsPage ui; QSize iconSize; QString pngIcon; friend class MobileAppWizardHarmattanOptionsPage; }; MobileAppWizardGenericOptionsPage::MobileAppWizardGenericOptionsPage(QWidget *parent) : QWizardPage(parent) , d(new MobileAppWizardGenericOptionsPagePrivate) { d->ui.setupUi(this); d->ui.orientationBehaviorComboBox->addItem(tr("Automatically Rotate Orientation"), AbstractMobileApp::ScreenOrientationAuto); d->ui.orientationBehaviorComboBox->addItem(tr("Lock to Landscape Orientation"), AbstractMobileApp::ScreenOrientationLockLandscape); d->ui.orientationBehaviorComboBox->addItem(tr("Lock to Portrait Orientation"), AbstractMobileApp::ScreenOrientationLockPortrait); } MobileAppWizardGenericOptionsPage::~MobileAppWizardGenericOptionsPage() { delete d; } void MobileAppWizardGenericOptionsPage::setOrientation(AbstractMobileApp::ScreenOrientation orientation) { QComboBox *const comboBox = d->ui.orientationBehaviorComboBox; for (int i = 0; i < comboBox->count(); ++i) { if (comboBox->itemData(i).toInt() == static_cast(orientation)) { comboBox->setCurrentIndex(i); break; } } } AbstractMobileApp::ScreenOrientation MobileAppWizardGenericOptionsPage::orientation() const { QComboBox *const comboBox = d->ui.orientationBehaviorComboBox; const int index = comboBox->currentIndex(); return static_cast(comboBox->itemData(index).toInt()); } MobileAppWizardSymbianOptionsPage::MobileAppWizardSymbianOptionsPage(QWidget *parent) : QWizardPage(parent) , d(new MobileAppWizardSymbianOptionsPagePrivate) { d->ui.setupUi(this); const QIcon open = QApplication::style()->standardIcon(QStyle::SP_DirOpenIcon); d->ui.appIconLoadToolButton->setIcon(open); connect(d->ui.appIconLoadToolButton, SIGNAL(clicked()), SLOT(openSvgIcon())); } MobileAppWizardSymbianOptionsPage::~MobileAppWizardSymbianOptionsPage() { delete d; } QString MobileAppWizardSymbianOptionsPage::svgIcon() const { return d->svgIcon; } void MobileAppWizardSymbianOptionsPage::setSvgIcon(const QString &icon) { QPixmap iconPixmap(icon); if (!iconPixmap.isNull()) { const int symbianIconSize = 44; if (iconPixmap.height() > symbianIconSize || iconPixmap.width() > symbianIconSize) iconPixmap = iconPixmap.scaledToHeight(symbianIconSize, Qt::SmoothTransformation); d->ui.appIconPreview->setPixmap(iconPixmap); d->svgIcon = icon; } } QString MobileAppWizardSymbianOptionsPage::symbianUid() const { return d->ui.uid3LineEdit->text(); } void MobileAppWizardSymbianOptionsPage::setSymbianUid(const QString &uid) { d->ui.uid3LineEdit->setText(uid); } void MobileAppWizardSymbianOptionsPage::setNetworkEnabled(bool enableIt) { d->ui.enableNetworkCheckBox->setChecked(enableIt); } bool MobileAppWizardSymbianOptionsPage::networkEnabled() const { return d->ui.enableNetworkCheckBox->isChecked(); } void MobileAppWizardSymbianOptionsPage::openSvgIcon() { const QString svgIcon = QFileDialog::getOpenFileName( this, d->ui.appIconLabel->text(), QDesktopServices::storageLocation(QDesktopServices::PicturesLocation), QLatin1String("*.svg")); if (!svgIcon.isEmpty()) setSvgIcon(svgIcon); } MobileAppWizardMaemoOptionsPage::MobileAppWizardMaemoOptionsPage(QWidget *parent) : QWizardPage(parent) , d(new MobileAppWizardMaemoOptionsPagePrivate) { d->ui.setupUi(this); d->iconSize = QSize(64, 64); d->ui.pngIconButton->setIconSize(d->iconSize); connect(d->ui.pngIconButton, SIGNAL(clicked()), this, SLOT(openPngIcon())); } MobileAppWizardMaemoOptionsPage::~MobileAppWizardMaemoOptionsPage() { delete d; } QString MobileAppWizardMaemoOptionsPage::pngIcon() const { return d->pngIcon; } class PngIconScaler : public QObject { Q_OBJECT public: PngIconScaler(const QSize &expectedSize, const QString &iconPath) : m_expectedSize(expectedSize) , m_iconPath(iconPath) , m_pixmap(iconPath) { } bool hasRightSize() const { return m_expectedSize == m_pixmap.size(); } QPixmap pixmap() const { return m_pixmap; } bool scale(QString *newPath) { const QMessageBox::StandardButton button = QMessageBox::warning(QApplication::activeWindow(), tr("Wrong Icon Size"), tr("The icon needs to be %1x%2 pixels big, " "but is not. Do you want Qt Creator to scale it?") .arg(m_expectedSize.width()).arg(m_expectedSize.height()), QMessageBox::Ok | QMessageBox::Cancel); if (button != QMessageBox::Ok) return false; m_pixmap = m_pixmap.scaled(m_expectedSize); Utils::TempFileSaver saver; saver.setAutoRemove(false); if (!saver.hasError()) saver.setResult(m_pixmap.save( saver.file(), QFileInfo(m_iconPath).suffix().toAscii().constData())); if (!saver.finalize()) { QMessageBox::critical(QApplication::activeWindow(), tr("File Error"), tr("Could not copy icon file: %1").arg(saver.errorString())); return false; } *newPath = saver.fileName(); return true; } private: QSize m_expectedSize; QString m_iconPath; QPixmap m_pixmap; }; void MobileAppWizardMaemoOptionsPage::setPngIcon(const QString &icon) { QString actualIconPath; PngIconScaler scaler(d->iconSize, icon); if (scaler.hasRightSize()) { actualIconPath = icon; } else { if (!scaler.scale(&actualIconPath)) return; } d->ui.pngIconButton->setIcon(scaler.pixmap()); d->pngIcon = actualIconPath; } void MobileAppWizardMaemoOptionsPage::openPngIcon() { const QString iconPath = QFileDialog::getOpenFileName(this, d->ui.appIconLabel->text(), d->pngIcon, QLatin1String("*.png")); if (!iconPath.isEmpty()) setPngIcon(iconPath); } MobileAppWizardHarmattanOptionsPage::MobileAppWizardHarmattanOptionsPage(QWidget *parent) : QWizardPage(parent) , d(new MobileAppWizardHarmattanOptionsPagePrivate) { d->ui.setupUi(this); d->iconSize = QSize(80, 80); d->ui.pngIconButton->setIconSize(d->iconSize); connect(d->ui.pngIconButton, SIGNAL(clicked()), this, SLOT(openPngIcon())); } MobileAppWizardHarmattanOptionsPage::~MobileAppWizardHarmattanOptionsPage() { delete d; } QString MobileAppWizardHarmattanOptionsPage::pngIcon() const { return d->pngIcon; } void MobileAppWizardHarmattanOptionsPage::setPngIcon(const QString &icon) { QString actualIconPath; PngIconScaler scaler(d->iconSize, icon); if (scaler.hasRightSize()) { actualIconPath = icon; } else { if (!scaler.scale(&actualIconPath)) return; } d->ui.pngIconButton->setIcon(scaler.pixmap()); d->pngIcon = actualIconPath; } void MobileAppWizardHarmattanOptionsPage::openPngIcon() { const QString iconPath = QFileDialog::getOpenFileName(this, d->ui.appIconLabel->text(), d->pngIcon, QLatin1String("*.png")); if (!iconPath.isEmpty()) setPngIcon(iconPath); } void MobileAppWizardHarmattanOptionsPage::setBoosterOptionEnabled(bool enable) { d->ui.makeBoostableCheckBox->setEnabled(enable); d->ui.makeBoostableCheckBox->setChecked(enable); } bool MobileAppWizardHarmattanOptionsPage::supportsBooster() const { return d->ui.makeBoostableCheckBox->isChecked(); } } // namespace Internal } // namespace Qt4ProjectManager #include "mobileappwizardpages.moc"