2013-01-09 09:23:37 -05:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
2013-01-31 17:02:30 +01:00
|
|
|
** Copyright (C) 2011 - 2013 Research In Motion
|
2013-01-09 09:23:37 -05:00
|
|
|
**
|
|
|
|
|
** Contact: Research In Motion (blackberry-qt@qnx.com)
|
|
|
|
|
** Contact: KDAB (info@kdab.com)
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
|
**
|
|
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
** Alternatively, 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, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
|
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
2013-01-17 15:27:02 -02:00
|
|
|
#include "blackberryndksettingswidget.h"
|
|
|
|
|
#include "ui_blackberryndksettingswidget.h"
|
2013-01-09 09:23:37 -05:00
|
|
|
#include "qnxutils.h"
|
2013-04-12 17:09:11 -03:00
|
|
|
#include "blackberryutils.h"
|
|
|
|
|
#include "blackberrysetupwizard.h"
|
2013-01-09 09:23:37 -05:00
|
|
|
|
|
|
|
|
#include <utils/pathchooser.h>
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
|
|
|
|
|
#include <QMessageBox>
|
|
|
|
|
|
|
|
|
|
namespace Qnx {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2013-01-17 15:27:02 -02:00
|
|
|
BlackBerryNDKSettingsWidget::BlackBerryNDKSettingsWidget(QWidget *parent) :
|
2013-01-09 09:23:37 -05:00
|
|
|
QWidget(parent),
|
2013-01-17 15:27:02 -02:00
|
|
|
m_ui(new Ui_BlackBerryNDKSettingsWidget)
|
2013-01-09 09:23:37 -05:00
|
|
|
{
|
|
|
|
|
m_bbConfig = &BlackBerryConfiguration::instance();
|
|
|
|
|
m_ui->setupUi(this);
|
|
|
|
|
m_ui->sdkPath->setExpectedKind(Utils::PathChooser::ExistingDirectory);
|
|
|
|
|
m_ui->sdkPath->setPath(m_bbConfig->ndkPath());
|
2013-04-12 17:09:11 -03:00
|
|
|
m_hasValidSdkPath = QnxUtils::isValidNdkPath(m_ui->sdkPath->path());
|
2013-01-09 09:23:37 -05:00
|
|
|
|
|
|
|
|
initInfoTable();
|
|
|
|
|
|
2013-04-12 17:09:11 -03:00
|
|
|
connect(m_ui->wizardButton, SIGNAL(clicked()), this, SLOT(launchBlackBerrySetupWizard()));
|
2013-01-09 09:23:37 -05:00
|
|
|
connect(m_ui->sdkPath, SIGNAL(changed(QString)), this, SLOT(checkSdkPath()));
|
|
|
|
|
connect(m_ui->removeButton, SIGNAL(clicked()), this, SLOT(cleanConfiguration()));
|
|
|
|
|
connect(m_bbConfig, SIGNAL(updated()), this, SLOT(updateInfoTable()));
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-12 17:09:11 -03:00
|
|
|
void BlackBerryNDKSettingsWidget::setRemoveButtonVisible(bool visible)
|
|
|
|
|
{
|
|
|
|
|
m_ui->removeButton->setVisible(visible);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BlackBerryNDKSettingsWidget::setWizardMessageVisible(bool visible)
|
|
|
|
|
{
|
|
|
|
|
m_ui->wizardLabel->setVisible(visible);
|
|
|
|
|
m_ui->wizardButton->setVisible(visible);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString BlackBerryNDKSettingsWidget::sdkPath() const
|
|
|
|
|
{
|
|
|
|
|
return m_ui->sdkPath->path();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BlackBerryNDKSettingsWidget::launchBlackBerrySetupWizard() const
|
|
|
|
|
{
|
|
|
|
|
const bool alreadyConfigured = BlackBerryUtils::hasRegisteredKeys();
|
|
|
|
|
|
|
|
|
|
if (alreadyConfigured) {
|
|
|
|
|
QMessageBox::information(0, tr("Qt Creator"),
|
|
|
|
|
tr("It appears that your BlackBerry environment has already been configured."));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BlackBerrySetupWizard wizard;
|
|
|
|
|
wizard.exec();
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-17 15:27:02 -02:00
|
|
|
void BlackBerryNDKSettingsWidget::checkSdkPath()
|
2013-01-09 09:23:37 -05:00
|
|
|
{
|
|
|
|
|
if (!m_ui->sdkPath->path().isEmpty() &&
|
2013-04-12 17:09:11 -03:00
|
|
|
QnxUtils::isValidNdkPath(m_ui->sdkPath->path())) {
|
2013-01-17 16:06:13 -02:00
|
|
|
m_bbConfig->setupNdkConfiguration(m_ui->sdkPath->path());
|
2013-04-12 17:09:11 -03:00
|
|
|
m_hasValidSdkPath = true;
|
|
|
|
|
} else {
|
|
|
|
|
m_hasValidSdkPath = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
emit sdkPathChanged(m_ui->sdkPath->path());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool BlackBerryNDKSettingsWidget::hasValidSdkPath() const
|
|
|
|
|
{
|
|
|
|
|
return m_hasValidSdkPath;
|
2013-01-09 09:23:37 -05:00
|
|
|
}
|
|
|
|
|
|
2013-01-17 15:27:02 -02:00
|
|
|
void BlackBerryNDKSettingsWidget::updateInfoTable()
|
2013-01-09 09:23:37 -05:00
|
|
|
{
|
|
|
|
|
QMultiMap<QString, QString> env = m_bbConfig->qnxEnv();
|
|
|
|
|
|
|
|
|
|
if (env.isEmpty()) {
|
|
|
|
|
// clear
|
|
|
|
|
clearInfoTable();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
m_infoModel->clear();
|
|
|
|
|
m_infoModel->setHorizontalHeaderItem(0, new QStandardItem(QString(QLatin1String("Variable"))));
|
|
|
|
|
m_infoModel->setHorizontalHeaderItem(1, new QStandardItem(QString(QLatin1String("Value"))));
|
|
|
|
|
|
|
|
|
|
m_ui->ndkInfosTableView->horizontalHeader()->setResizeMode(0, QHeaderView::ResizeToContents);
|
|
|
|
|
m_ui->ndkInfosTableView->horizontalHeader()->setStretchLastSection(true);
|
|
|
|
|
|
|
|
|
|
QMultiMap<QString, QString>::const_iterator it;
|
|
|
|
|
QMultiMap<QString, QString>::const_iterator end(env.constEnd());
|
|
|
|
|
for (it = env.constBegin(); it != end; ++it) {
|
|
|
|
|
const QString key = it.key();
|
|
|
|
|
const QString value = it.value();
|
|
|
|
|
QList <QStandardItem*> row;
|
|
|
|
|
row << new QStandardItem(key) << new QStandardItem(value);
|
|
|
|
|
m_infoModel->appendRow(row);
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-01 15:09:10 +02:00
|
|
|
m_infoModel->appendRow( QList<QStandardItem*>() << new QStandardItem(QString(QLatin1String("QMAKE 4"))) << new QStandardItem(m_bbConfig->qmake4Path().toString()));
|
|
|
|
|
m_infoModel->appendRow( QList<QStandardItem*>() << new QStandardItem(QString(QLatin1String("QMAKE 5"))) << new QStandardItem(m_bbConfig->qmake5Path().toString()));
|
2013-01-09 09:23:37 -05:00
|
|
|
m_infoModel->appendRow( QList<QStandardItem*>() << new QStandardItem(QString(QLatin1String("COMPILER"))) << new QStandardItem(m_bbConfig->gccPath().toString()));
|
|
|
|
|
|
|
|
|
|
m_ui->removeButton->setEnabled(true);
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-17 15:27:02 -02:00
|
|
|
void BlackBerryNDKSettingsWidget::clearInfoTable()
|
2013-01-09 09:23:37 -05:00
|
|
|
{
|
|
|
|
|
m_infoModel->clear();
|
|
|
|
|
m_ui->sdkPath->setPath(QString());
|
|
|
|
|
m_ui->removeButton->setEnabled(false);
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-17 15:27:02 -02:00
|
|
|
void BlackBerryNDKSettingsWidget::cleanConfiguration()
|
2013-01-09 09:23:37 -05:00
|
|
|
{
|
|
|
|
|
QMessageBox::StandardButton button =
|
|
|
|
|
QMessageBox::question(Core::ICore::mainWindow(),
|
|
|
|
|
tr("Clean BlackBerry 10 Configuration"),
|
|
|
|
|
tr("Are you sure you want to remove the current BlackBerry configuration?"),
|
|
|
|
|
QMessageBox::Yes | QMessageBox::No);
|
|
|
|
|
|
|
|
|
|
if (button == QMessageBox::Yes)
|
2013-01-17 16:06:13 -02:00
|
|
|
m_bbConfig->cleanNdkConfiguration();
|
2013-01-09 09:23:37 -05:00
|
|
|
}
|
|
|
|
|
|
2013-01-17 15:27:02 -02:00
|
|
|
void BlackBerryNDKSettingsWidget::initInfoTable()
|
2013-01-09 09:23:37 -05:00
|
|
|
{
|
|
|
|
|
m_infoModel = new QStandardItemModel(this);
|
|
|
|
|
|
|
|
|
|
m_ui->ndkInfosTableView->setModel(m_infoModel);
|
|
|
|
|
m_ui->ndkInfosTableView->verticalHeader()->hide();
|
|
|
|
|
m_ui->ndkInfosTableView->setEditTriggers(QAbstractItemView::NoEditTriggers);
|
|
|
|
|
|
|
|
|
|
updateInfoTable();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Qnx
|
|
|
|
|
|