2012-04-18 20:30:57 +03:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
2014-01-07 13:27:11 +01:00
|
|
|
** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com>
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2012-04-18 20:30:57 +03:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2012-04-18 20:30:57 +03:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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.
|
2012-04-18 20:30:57 +03:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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
|
2012-04-18 20:30:57 +03:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2012-04-18 20:30:57 +03:00
|
|
|
|
|
|
|
|
#include "androidsettingswidget.h"
|
|
|
|
|
|
|
|
|
|
#include "ui_androidsettingswidget.h"
|
|
|
|
|
|
|
|
|
|
#include "androidconfigurations.h"
|
|
|
|
|
#include "androidconstants.h"
|
2013-02-14 15:51:59 +01:00
|
|
|
#include "androidtoolchain.h"
|
2012-04-18 20:30:57 +03:00
|
|
|
|
2013-11-19 17:25:32 +01:00
|
|
|
#include <utils/environment.h>
|
2012-08-23 15:53:58 +02:00
|
|
|
#include <utils/hostosinfo.h>
|
2014-03-03 12:05:01 +01:00
|
|
|
#include <utils/pathchooser.h>
|
2013-02-14 15:51:59 +01:00
|
|
|
#include <projectexplorer/toolchainmanager.h>
|
|
|
|
|
#include <projectexplorer/kitmanager.h>
|
|
|
|
|
#include <projectexplorer/kitinformation.h>
|
|
|
|
|
#include <qtsupport/qtkitinformation.h>
|
|
|
|
|
#include <qtsupport/qtversionmanager.h>
|
2012-08-23 15:53:58 +02:00
|
|
|
|
2012-04-18 20:30:57 +03:00
|
|
|
#include <QFile>
|
|
|
|
|
#include <QTextStream>
|
|
|
|
|
#include <QProcess>
|
|
|
|
|
|
2014-02-18 20:20:32 +01:00
|
|
|
#include <QDesktopServices>
|
2012-04-18 20:30:57 +03:00
|
|
|
#include <QFileDialog>
|
|
|
|
|
#include <QMessageBox>
|
|
|
|
|
#include <QModelIndex>
|
2014-02-18 20:20:32 +01:00
|
|
|
#include <QtCore/QUrl>
|
2012-04-18 20:30:57 +03:00
|
|
|
|
|
|
|
|
namespace Android {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2012-08-09 01:56:51 +02:00
|
|
|
void AvdModel::setAvdList(const QVector<AndroidDeviceInfo> &list)
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
2012-09-20 10:31:34 +02:00
|
|
|
beginResetModel();
|
2012-04-18 20:30:57 +03:00
|
|
|
m_list = list;
|
2012-09-20 10:31:34 +02:00
|
|
|
endResetModel();
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
|
2012-08-09 01:56:51 +02:00
|
|
|
QString AvdModel::avdName(const QModelIndex &index)
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
|
|
|
|
return m_list[index.row()].serialNumber;
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-09 01:56:51 +02:00
|
|
|
QVariant AvdModel::data(const QModelIndex &index, int role) const
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
|
|
|
|
if (role != Qt::DisplayRole || !index.isValid())
|
|
|
|
|
return QVariant();
|
|
|
|
|
switch (index.column()) {
|
|
|
|
|
case 0:
|
|
|
|
|
return m_list[index.row()].serialNumber;
|
|
|
|
|
case 1:
|
|
|
|
|
return QString::fromLatin1("API %1").arg(m_list[index.row()].sdk);
|
2013-10-15 13:44:11 +02:00
|
|
|
case 2: {
|
|
|
|
|
QStringList cpuAbis = m_list[index.row()].cpuAbi;
|
|
|
|
|
return cpuAbis.isEmpty() ? QVariant() : QVariant(cpuAbis.first());
|
|
|
|
|
}
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
return QVariant();
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-09 01:56:51 +02:00
|
|
|
QVariant AvdModel::headerData(int section, Qt::Orientation orientation, int role) const
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
|
|
|
|
if (orientation == Qt::Horizontal && role == Qt::DisplayRole) {
|
|
|
|
|
switch (section) {
|
|
|
|
|
case 0:
|
2012-08-01 15:25:05 +02:00
|
|
|
//: AVD - Android Virtual Device
|
2012-04-18 20:30:57 +03:00
|
|
|
return tr("AVD Name");
|
|
|
|
|
case 1:
|
|
|
|
|
return tr("AVD Target");
|
|
|
|
|
case 2:
|
|
|
|
|
return tr("CPU/ABI");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return QAbstractItemModel::headerData(section, orientation, role );
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-09 01:56:51 +02:00
|
|
|
int AvdModel::rowCount(const QModelIndex &/*parent*/) const
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
|
|
|
|
return m_list.size();
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-09 01:56:51 +02:00
|
|
|
int AvdModel::columnCount(const QModelIndex &/*parent*/) const
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
|
|
|
|
return 3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AndroidSettingsWidget::AndroidSettingsWidget(QWidget *parent)
|
|
|
|
|
: QWidget(parent),
|
2013-12-16 20:19:07 +01:00
|
|
|
m_sdkState(NotSet),
|
|
|
|
|
m_ndkState(NotSet),
|
|
|
|
|
m_javaState(NotSet),
|
2012-04-18 20:30:57 +03:00
|
|
|
m_ui(new Ui_AndroidSettingsWidget),
|
2013-12-16 20:19:07 +01:00
|
|
|
m_androidConfig(AndroidConfigurations::currentConfig())
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
2013-12-16 20:19:07 +01:00
|
|
|
m_ui->setupUi(this);
|
2012-04-18 20:30:57 +03:00
|
|
|
|
2013-12-16 20:19:07 +01:00
|
|
|
m_ui->SDKLocationLineEdit->setText(m_androidConfig.sdkLocation().toUserOutput());
|
|
|
|
|
m_ui->NDKLocationLineEdit->setText(m_androidConfig.ndkLocation().toUserOutput());
|
2012-04-18 20:30:57 +03:00
|
|
|
|
2013-12-16 20:19:07 +01:00
|
|
|
m_ui->AntLocationLineEdit->setText(m_androidConfig.antLocation().toUserOutput());
|
|
|
|
|
m_ui->OpenJDKLocationLineEdit->setText(m_androidConfig.openJDKLocation().toUserOutput());
|
|
|
|
|
m_ui->DataPartitionSizeSpinBox->setValue(m_androidConfig.partitionSize());
|
|
|
|
|
m_ui->CreateKitCheckBox->setChecked(m_androidConfig.automaticKitCreation());
|
2012-04-18 20:30:57 +03:00
|
|
|
m_ui->AVDTableView->setModel(&m_AVDModel);
|
2013-12-16 20:19:07 +01:00
|
|
|
m_AVDModel.setAvdList(m_androidConfig.androidVirtualDevices());
|
2012-04-18 20:30:57 +03:00
|
|
|
m_ui->AVDTableView->horizontalHeader()->setResizeMode(QHeaderView::Stretch);
|
|
|
|
|
m_ui->AVDTableView->horizontalHeader()->setResizeMode(1, QHeaderView::ResizeToContents);
|
2013-12-16 20:19:07 +01:00
|
|
|
|
2014-02-18 20:20:32 +01:00
|
|
|
m_ui->downloadAntToolButton->setVisible(Utils::HostOsInfo::isWindowsHost());
|
|
|
|
|
m_ui->downloadOpenJDKToolButton->setVisible(Utils::HostOsInfo::isWindowsHost());
|
2013-12-16 20:19:07 +01:00
|
|
|
|
2014-03-03 12:05:01 +01:00
|
|
|
m_ui->SDKLocationPushButton->setText(Utils::PathChooser::browseButtonLabel());
|
|
|
|
|
m_ui->NDKLocationPushButton->setText(Utils::PathChooser::browseButtonLabel());
|
|
|
|
|
m_ui->AntLocationPushButton->setText(Utils::PathChooser::browseButtonLabel());
|
|
|
|
|
m_ui->OpenJDKLocationPushButton->setText(Utils::PathChooser::browseButtonLabel());
|
|
|
|
|
|
2013-12-16 20:19:07 +01:00
|
|
|
check(All);
|
|
|
|
|
applyToUi(All);
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
|
2013-12-16 20:19:07 +01:00
|
|
|
AndroidSettingsWidget::~AndroidSettingsWidget()
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
2013-12-16 20:19:07 +01:00
|
|
|
delete m_ui;
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
|
2013-12-16 20:19:07 +01:00
|
|
|
void AndroidSettingsWidget::check(AndroidSettingsWidget::Mode mode)
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
2013-12-16 20:19:07 +01:00
|
|
|
if (mode & Sdk) {
|
|
|
|
|
m_sdkState = Okay;
|
2014-03-04 23:38:21 +01:00
|
|
|
if (m_androidConfig.sdkLocation().isEmpty())
|
2013-12-16 20:19:07 +01:00
|
|
|
m_sdkState = NotSet;
|
2014-03-04 23:38:21 +01:00
|
|
|
else if (!(sdkLocationIsValid() && sdkPlatformToolsInstalled()))
|
|
|
|
|
m_sdkState = Error;
|
2013-08-01 14:48:16 +02:00
|
|
|
}
|
2013-12-16 20:19:07 +01:00
|
|
|
|
|
|
|
|
if (mode & Ndk) {
|
|
|
|
|
m_ndkState = Okay;
|
|
|
|
|
Utils::FileName platformPath = m_androidConfig.ndkLocation();
|
|
|
|
|
Utils::FileName toolChainPath = m_androidConfig.ndkLocation();
|
|
|
|
|
Utils::FileName sourcesPath = m_androidConfig.ndkLocation();
|
|
|
|
|
if (m_androidConfig.ndkLocation().isEmpty()) {
|
|
|
|
|
m_ndkState = NotSet;
|
|
|
|
|
} else if (!platformPath.appendPath(QLatin1String("platforms")).toFileInfo().exists()
|
|
|
|
|
|| !toolChainPath.appendPath(QLatin1String("toolchains")).toFileInfo().exists()
|
|
|
|
|
|| !sourcesPath.appendPath(QLatin1String("sources/cxx-stl")).toFileInfo().exists()) {
|
|
|
|
|
m_ndkState = Error;
|
2014-03-18 15:55:22 +01:00
|
|
|
m_ndkErrorMessage = tr("\"%1\" does not seem to be an Android NDK top folder.")
|
|
|
|
|
.arg(m_androidConfig.ndkLocation().toUserOutput());
|
|
|
|
|
} else if (platformPath.toString().contains(QLatin1String(" "))) {
|
|
|
|
|
m_ndkState = Error;
|
|
|
|
|
m_ndkErrorMessage = tr("The Android NDK cannot be installed into a path with spaces.");
|
2013-12-16 20:19:07 +01:00
|
|
|
} else {
|
|
|
|
|
QList<AndroidToolChainFactory::AndroidToolChainInformation> compilerPaths
|
|
|
|
|
= AndroidToolChainFactory::toolchainPathsForNdk(m_androidConfig.ndkLocation());
|
|
|
|
|
m_ndkCompilerCount = compilerPaths.count();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// See if we have qt versions for those toolchains
|
|
|
|
|
QSet<ProjectExplorer::Abi::Architecture> toolchainsForArch;
|
|
|
|
|
foreach (const AndroidToolChainFactory::AndroidToolChainInformation &ati, compilerPaths)
|
|
|
|
|
toolchainsForArch.insert(ati.architecture);
|
|
|
|
|
|
|
|
|
|
QSet<ProjectExplorer::Abi::Architecture> qtVersionsForArch;
|
|
|
|
|
foreach (QtSupport::BaseQtVersion *qtVersion, QtSupport::QtVersionManager::versions()) {
|
|
|
|
|
if (qtVersion->type() != QLatin1String(Constants::ANDROIDQT) || qtVersion->qtAbis().isEmpty())
|
|
|
|
|
continue;
|
|
|
|
|
qtVersionsForArch.insert(qtVersion->qtAbis().first().architecture());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QSet<ProjectExplorer::Abi::Architecture> missingQtArchs = toolchainsForArch.subtract(qtVersionsForArch);
|
|
|
|
|
if (missingQtArchs.isEmpty()) {
|
|
|
|
|
m_ndkMissingQtArchs.clear();
|
|
|
|
|
} else {
|
|
|
|
|
if (missingQtArchs.count() == 1) {
|
|
|
|
|
m_ndkMissingQtArchs = tr("Qt version for architecture %1 is missing.\n"
|
|
|
|
|
"To add the Qt version, select Options > Build & Run > Qt Versions.")
|
|
|
|
|
.arg(ProjectExplorer::Abi::toString((*missingQtArchs.constBegin())));
|
|
|
|
|
} else {
|
|
|
|
|
QStringList missingArchs;
|
|
|
|
|
foreach (ProjectExplorer::Abi::Architecture arch, missingQtArchs)
|
|
|
|
|
missingArchs.append(ProjectExplorer::Abi::toString(arch));
|
|
|
|
|
m_ndkMissingQtArchs = tr("Qt versions for architectures %1 are missing.\n"
|
|
|
|
|
"To add the Qt versions, select Options > Build & Run > Qt Versions.")
|
|
|
|
|
.arg(missingArchs.join(QLatin1String(", ")));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
|
2013-12-16 20:19:07 +01:00
|
|
|
if (mode & Java) {
|
|
|
|
|
m_javaState = Okay;
|
|
|
|
|
if (m_androidConfig.openJDKLocation().isEmpty()) {
|
|
|
|
|
m_javaState = NotSet;
|
|
|
|
|
} else {
|
|
|
|
|
Utils::FileName bin = m_androidConfig.openJDKLocation();
|
2014-03-12 11:11:34 +01:00
|
|
|
bin.appendPath(QLatin1String("bin/javac" QTC_HOST_EXE_SUFFIX));
|
2013-12-16 20:19:07 +01:00
|
|
|
if (!m_androidConfig.openJDKLocation().toFileInfo().exists()
|
|
|
|
|
|| !bin.toFileInfo().exists())
|
|
|
|
|
m_javaState = Error;
|
|
|
|
|
}
|
2013-02-14 15:51:59 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-16 20:19:07 +01:00
|
|
|
void AndroidSettingsWidget::applyToUi(AndroidSettingsWidget::Mode mode)
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
2013-12-16 20:19:07 +01:00
|
|
|
if (mode & Sdk) {
|
|
|
|
|
if (m_sdkState == Error) {
|
|
|
|
|
m_ui->sdkWarningIconLabel->setVisible(true);
|
|
|
|
|
m_ui->sdkWarningLabel->setVisible(true);
|
|
|
|
|
Utils::FileName location = Utils::FileName::fromUserInput(m_ui->SDKLocationLineEdit->text());
|
2014-03-04 23:38:21 +01:00
|
|
|
if (sdkLocationIsValid())
|
|
|
|
|
m_ui->sdkWarningLabel->setText(tr("The Platform tools are missing. Please use the Android SDK Manager to install them."));
|
|
|
|
|
else
|
|
|
|
|
m_ui->sdkWarningLabel->setText(tr("\"%1\" does not seem to be an Android SDK top folder.").arg(location.toUserOutput()));
|
2013-12-16 20:19:07 +01:00
|
|
|
} else {
|
|
|
|
|
m_ui->sdkWarningIconLabel->setVisible(false);
|
|
|
|
|
m_ui->sdkWarningLabel->setVisible(false);
|
|
|
|
|
}
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
2013-02-14 15:51:59 +01:00
|
|
|
|
2013-12-16 20:19:07 +01:00
|
|
|
if (mode & Ndk) {
|
|
|
|
|
if (m_ndkState == NotSet) {
|
|
|
|
|
m_ui->ndkWarningIconLabel->setVisible(false);
|
|
|
|
|
m_ui->toolchainFoundLabel->setVisible(false);
|
|
|
|
|
m_ui->kitWarningIconLabel->setVisible(false);
|
|
|
|
|
m_ui->kitWarningLabel->setVisible(false);
|
|
|
|
|
} else if (m_ndkState == Error) {
|
2014-03-18 15:55:22 +01:00
|
|
|
m_ui->toolchainFoundLabel->setText(m_ndkErrorMessage);
|
2013-12-16 20:19:07 +01:00
|
|
|
m_ui->toolchainFoundLabel->setVisible(true);
|
|
|
|
|
m_ui->ndkWarningIconLabel->setVisible(true);
|
2014-03-18 15:54:48 +01:00
|
|
|
m_ui->kitWarningIconLabel->setVisible(false);
|
|
|
|
|
m_ui->kitWarningLabel->setVisible(false);
|
2013-12-16 20:19:07 +01:00
|
|
|
} else {
|
|
|
|
|
if (m_ndkCompilerCount > 0) {
|
|
|
|
|
m_ui->ndkWarningIconLabel->setVisible(false);
|
|
|
|
|
m_ui->toolchainFoundLabel->setText(tr("Found %n toolchains for this NDK.", 0, m_ndkCompilerCount));
|
|
|
|
|
m_ui->toolchainFoundLabel->setVisible(true);
|
|
|
|
|
} else {
|
|
|
|
|
m_ui->ndkWarningIconLabel->setVisible(false);
|
|
|
|
|
m_ui->toolchainFoundLabel->setVisible(false);
|
|
|
|
|
}
|
2013-02-14 15:51:59 +01:00
|
|
|
|
2013-12-16 20:19:07 +01:00
|
|
|
if (m_ndkMissingQtArchs.isEmpty()) {
|
|
|
|
|
m_ui->kitWarningIconLabel->setVisible(false);
|
|
|
|
|
m_ui->kitWarningLabel->setVisible(false);
|
|
|
|
|
} else {
|
|
|
|
|
m_ui->kitWarningIconLabel->setVisible(true);
|
|
|
|
|
m_ui->kitWarningLabel->setVisible(true);
|
|
|
|
|
m_ui->kitWarningLabel->setText(m_ndkMissingQtArchs);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-02-14 15:51:59 +01:00
|
|
|
|
2013-12-16 20:19:07 +01:00
|
|
|
if (mode & Java) {
|
|
|
|
|
Utils::FileName location = m_androidConfig.openJDKLocation();
|
|
|
|
|
bool error = m_javaState == Error;
|
|
|
|
|
m_ui->jdkWarningIconLabel->setVisible(error);
|
|
|
|
|
m_ui->jdkWarningLabel->setVisible(error);
|
|
|
|
|
if (error)
|
|
|
|
|
m_ui->jdkWarningLabel->setText(tr("\"%1\" does not seem to be a JDK folder.").arg(location.toUserOutput()));
|
2013-02-14 15:51:59 +01:00
|
|
|
}
|
|
|
|
|
|
2013-12-16 20:19:07 +01:00
|
|
|
if (mode & Sdk || mode & Java) {
|
|
|
|
|
if (m_sdkState == Okay && m_javaState == Okay) {
|
|
|
|
|
m_ui->AVDManagerFrame->setEnabled(true);
|
2013-02-14 15:51:59 +01:00
|
|
|
} else {
|
2013-12-16 20:19:07 +01:00
|
|
|
m_ui->AVDManagerFrame->setEnabled(false);
|
2013-02-14 15:51:59 +01:00
|
|
|
}
|
2013-12-16 20:19:07 +01:00
|
|
|
|
|
|
|
|
m_AVDModel.setAvdList(m_androidConfig.androidVirtualDevices());
|
2013-02-14 15:51:59 +01:00
|
|
|
}
|
2013-12-16 20:19:07 +01:00
|
|
|
}
|
2013-02-14 15:51:59 +01:00
|
|
|
|
2014-03-04 23:38:21 +01:00
|
|
|
bool AndroidSettingsWidget::sdkLocationIsValid() const
|
|
|
|
|
{
|
|
|
|
|
Utils::FileName androidExe = m_androidConfig.sdkLocation();
|
|
|
|
|
Utils::FileName androidBat = m_androidConfig.sdkLocation();
|
|
|
|
|
Utils::FileName emulator = m_androidConfig.sdkLocation();
|
|
|
|
|
return (androidExe.appendPath(QLatin1String("/tools/android" QTC_HOST_EXE_SUFFIX)).toFileInfo().exists()
|
|
|
|
|
|| androidBat.appendPath(QLatin1String("/tools/android" ANDROID_BAT_SUFFIX)).toFileInfo().exists())
|
|
|
|
|
&& emulator.appendPath(QLatin1String("/tools/emulator" QTC_HOST_EXE_SUFFIX)).toFileInfo().exists();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool AndroidSettingsWidget::sdkPlatformToolsInstalled() const
|
|
|
|
|
{
|
|
|
|
|
Utils::FileName adb = m_androidConfig.sdkLocation();
|
|
|
|
|
return adb.appendPath(QLatin1String("platform-tools/adb" QTC_HOST_EXE_SUFFIX)).toFileInfo().exists();
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-16 20:19:07 +01:00
|
|
|
void AndroidSettingsWidget::saveSettings()
|
|
|
|
|
{
|
|
|
|
|
sdkLocationEditingFinished();
|
|
|
|
|
ndkLocationEditingFinished();
|
|
|
|
|
antLocationEditingFinished();
|
|
|
|
|
openJDKLocationEditingFinished();
|
|
|
|
|
dataPartitionSizeEditingFinished();
|
|
|
|
|
AndroidConfigurations::setConfig(m_androidConfig);
|
|
|
|
|
}
|
2012-04-18 20:30:57 +03:00
|
|
|
|
2013-12-16 20:19:07 +01:00
|
|
|
int indexOf(const QList<AndroidToolChainFactory::AndroidToolChainInformation> &list, const Utils::FileName &f)
|
|
|
|
|
{
|
|
|
|
|
int end = list.count();
|
|
|
|
|
for (int i = 0; i < end; ++i) {
|
|
|
|
|
if (list.at(i).compilerCommand == f)
|
|
|
|
|
return i;
|
|
|
|
|
}
|
|
|
|
|
return -1;
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AndroidSettingsWidget::sdkLocationEditingFinished()
|
|
|
|
|
{
|
2013-12-16 20:19:07 +01:00
|
|
|
m_androidConfig.setSdkLocation(Utils::FileName::fromUserInput(m_ui->SDKLocationLineEdit->text()));
|
|
|
|
|
|
|
|
|
|
check(Sdk);
|
|
|
|
|
|
|
|
|
|
if (m_sdkState == Okay)
|
|
|
|
|
searchForAnt(m_androidConfig.sdkLocation());
|
|
|
|
|
|
|
|
|
|
applyToUi(Sdk);
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AndroidSettingsWidget::ndkLocationEditingFinished()
|
|
|
|
|
{
|
2013-12-16 20:19:07 +01:00
|
|
|
m_androidConfig.setNdkLocation(Utils::FileName::fromUserInput(m_ui->NDKLocationLineEdit->text()));
|
|
|
|
|
|
|
|
|
|
check(Ndk);
|
|
|
|
|
|
|
|
|
|
if (m_ndkState == Okay)
|
|
|
|
|
searchForAnt(m_androidConfig.ndkLocation());
|
|
|
|
|
|
|
|
|
|
applyToUi(Ndk);
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
|
2013-12-16 20:19:07 +01:00
|
|
|
void AndroidSettingsWidget::searchForAnt(const Utils::FileName &location)
|
2013-04-17 11:52:16 +02:00
|
|
|
{
|
2013-12-16 20:19:07 +01:00
|
|
|
if (!m_androidConfig.antLocation().isEmpty())
|
2013-04-17 11:52:16 +02:00
|
|
|
return;
|
|
|
|
|
if (location.isEmpty())
|
|
|
|
|
return;
|
2013-12-16 20:19:07 +01:00
|
|
|
QDir parentFolder = location.toFileInfo().absoluteDir();
|
2013-04-17 11:52:16 +02:00
|
|
|
foreach (const QString &file, parentFolder.entryList()) {
|
|
|
|
|
if (file.startsWith(QLatin1String("apache-ant"))) {
|
2013-10-30 13:23:11 +01:00
|
|
|
Utils::FileName ant = Utils::FileName::fromString(parentFolder.absolutePath());
|
2013-11-15 14:12:46 +01:00
|
|
|
ant.appendPath(file).appendPath(QLatin1String("bin"));
|
|
|
|
|
if (Utils::HostOsInfo::isWindowsHost())
|
|
|
|
|
ant.appendPath(QLatin1String("ant.bat"));
|
|
|
|
|
else
|
|
|
|
|
ant.appendPath(QLatin1String("ant"));
|
2013-10-30 13:23:11 +01:00
|
|
|
if (ant.toFileInfo().exists()) {
|
2013-12-16 20:19:07 +01:00
|
|
|
m_androidConfig.setAntLocation(ant);
|
2013-10-30 13:23:11 +01:00
|
|
|
m_ui->AntLocationLineEdit->setText(ant.toUserOutput());
|
2013-04-17 11:52:16 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-18 20:30:57 +03:00
|
|
|
void AndroidSettingsWidget::antLocationEditingFinished()
|
|
|
|
|
{
|
2013-12-16 20:19:07 +01:00
|
|
|
m_androidConfig.setAntLocation(Utils::FileName::fromUserInput(m_ui->AntLocationLineEdit->text()));
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AndroidSettingsWidget::openJDKLocationEditingFinished()
|
|
|
|
|
{
|
2013-12-16 20:19:07 +01:00
|
|
|
m_androidConfig.setOpenJDKLocation(Utils::FileName::fromUserInput(m_ui->OpenJDKLocationLineEdit->text()));
|
|
|
|
|
|
|
|
|
|
check(Java);
|
|
|
|
|
applyToUi(Java);
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AndroidSettingsWidget::browseSDKLocation()
|
|
|
|
|
{
|
2013-02-27 13:00:04 +01:00
|
|
|
Utils::FileName dir = Utils::FileName::fromString(
|
|
|
|
|
QFileDialog::getExistingDirectory(this, tr("Select Android SDK folder"),
|
|
|
|
|
m_ui->SDKLocationLineEdit->text()));
|
2014-02-04 12:28:22 +01:00
|
|
|
if (dir.isEmpty())
|
|
|
|
|
return;
|
2012-04-24 15:49:09 +02:00
|
|
|
m_ui->SDKLocationLineEdit->setText(dir.toUserOutput());
|
2012-04-18 20:30:57 +03:00
|
|
|
sdkLocationEditingFinished();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AndroidSettingsWidget::browseNDKLocation()
|
|
|
|
|
{
|
2013-02-27 13:00:04 +01:00
|
|
|
Utils::FileName dir = Utils::FileName::fromString(
|
|
|
|
|
QFileDialog::getExistingDirectory(this, tr("Select Android NDK folder"),
|
|
|
|
|
m_ui->NDKLocationLineEdit->text()));
|
2014-02-04 12:28:22 +01:00
|
|
|
if (dir.isEmpty())
|
|
|
|
|
return;
|
2012-04-24 15:49:09 +02:00
|
|
|
m_ui->NDKLocationLineEdit->setText(dir.toUserOutput());
|
2012-04-18 20:30:57 +03:00
|
|
|
ndkLocationEditingFinished();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AndroidSettingsWidget::browseAntLocation()
|
|
|
|
|
{
|
2012-08-23 15:53:58 +02:00
|
|
|
QString dir;
|
2014-03-05 12:34:23 +01:00
|
|
|
QString filter;
|
2012-08-23 15:53:58 +02:00
|
|
|
if (Utils::HostOsInfo::isWindowsHost()) {
|
2014-03-05 12:34:23 +01:00
|
|
|
dir = QDir::homePath() + QLatin1String("/ant.bat");
|
|
|
|
|
filter = QLatin1String("ant (ant.bat)");
|
2012-08-23 15:53:58 +02:00
|
|
|
} else {
|
|
|
|
|
dir = QLatin1String("/usr/bin/ant");
|
2014-03-05 12:34:23 +01:00
|
|
|
filter = QLatin1String("ant (ant)");
|
2012-08-23 15:53:58 +02:00
|
|
|
}
|
2012-05-25 16:21:19 +02:00
|
|
|
const QString file =
|
2014-03-05 12:34:23 +01:00
|
|
|
QFileDialog::getOpenFileName(this, tr("Select ant Script"), dir, filter);
|
2012-04-18 20:30:57 +03:00
|
|
|
if (!file.length())
|
|
|
|
|
return;
|
2014-03-05 12:34:23 +01:00
|
|
|
m_ui->AntLocationLineEdit->setText(QDir::toNativeSeparators(file));
|
2012-04-18 20:30:57 +03:00
|
|
|
antLocationEditingFinished();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AndroidSettingsWidget::browseOpenJDKLocation()
|
|
|
|
|
{
|
2013-12-16 20:19:07 +01:00
|
|
|
Utils::FileName openJDKPath = m_androidConfig.openJDKLocation();
|
2013-07-01 13:44:29 +02:00
|
|
|
Utils::FileName file = Utils::FileName::fromString(QFileDialog::getExistingDirectory(this, tr("Select OpenJDK Path"), openJDKPath.toString()));
|
2012-04-24 15:49:09 +02:00
|
|
|
if (file.isEmpty())
|
2012-04-18 20:30:57 +03:00
|
|
|
return;
|
2012-04-24 15:49:09 +02:00
|
|
|
m_ui->OpenJDKLocationLineEdit->setText(file.toUserOutput());
|
2012-04-18 20:30:57 +03:00
|
|
|
openJDKLocationEditingFinished();
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-18 20:20:32 +01:00
|
|
|
void AndroidSettingsWidget::openSDKDownloadUrl()
|
|
|
|
|
{
|
|
|
|
|
QDesktopServices::openUrl(QUrl::fromUserInput(QLatin1String("http://developer.android.com/sdk")));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AndroidSettingsWidget::openNDKDownloadUrl()
|
|
|
|
|
{
|
|
|
|
|
QDesktopServices::openUrl(QUrl::fromUserInput(QLatin1String("http://developer.android.com/tools/sdk/ndk/index.html#Downloads")));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AndroidSettingsWidget::openAntDownloadUrl()
|
|
|
|
|
{
|
|
|
|
|
QDesktopServices::openUrl(QUrl::fromUserInput(QLatin1String("http://ant.apache.org/bindownload.cgi")));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AndroidSettingsWidget::openOpenJDKDownloadUrl()
|
|
|
|
|
{
|
|
|
|
|
QDesktopServices::openUrl(QUrl::fromUserInput(QLatin1String("http://www.oracle.com/technetwork/java/javase/downloads")));
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-18 20:30:57 +03:00
|
|
|
void AndroidSettingsWidget::addAVD()
|
|
|
|
|
{
|
2013-12-16 20:19:07 +01:00
|
|
|
m_androidConfig.createAVD(this);
|
|
|
|
|
m_AVDModel.setAvdList(m_androidConfig.androidVirtualDevices());
|
2013-11-20 15:51:42 +01:00
|
|
|
avdActivated(m_ui->AVDTableView->currentIndex());
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AndroidSettingsWidget::removeAVD()
|
|
|
|
|
{
|
2014-04-11 11:45:35 +02:00
|
|
|
QString avdName = m_AVDModel.avdName(m_ui->AVDTableView->currentIndex());
|
|
|
|
|
if (QMessageBox::question(this, tr("Remove Android Virtual Device"),
|
|
|
|
|
tr("Remove device \"%1\"? This cannot be undone.").arg(avdName),
|
|
|
|
|
QMessageBox::Yes | QMessageBox::No)
|
|
|
|
|
== QMessageBox::No)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
m_androidConfig.removeAVD(avdName);
|
2013-12-16 20:19:07 +01:00
|
|
|
m_AVDModel.setAvdList(m_androidConfig.androidVirtualDevices());
|
2013-11-20 15:51:42 +01:00
|
|
|
avdActivated(m_ui->AVDTableView->currentIndex());
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AndroidSettingsWidget::startAVD()
|
|
|
|
|
{
|
2013-12-16 20:19:07 +01:00
|
|
|
m_androidConfig.startAVDAsync(m_AVDModel.avdName(m_ui->AVDTableView->currentIndex()));
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AndroidSettingsWidget::avdActivated(QModelIndex index)
|
|
|
|
|
{
|
|
|
|
|
m_ui->AVDRemovePushButton->setEnabled(index.isValid());
|
|
|
|
|
m_ui->AVDStartPushButton->setEnabled(index.isValid());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AndroidSettingsWidget::dataPartitionSizeEditingFinished()
|
|
|
|
|
{
|
2013-12-16 20:19:07 +01:00
|
|
|
m_androidConfig.setPartitionSize(m_ui->DataPartitionSizeSpinBox->value());
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
|
2013-02-14 15:51:59 +01:00
|
|
|
void AndroidSettingsWidget::createKitToggled()
|
|
|
|
|
{
|
2013-12-16 20:19:07 +01:00
|
|
|
m_androidConfig.setAutomaticKitCreation(m_ui->CreateKitCheckBox->isChecked());
|
2013-02-14 15:51:59 +01:00
|
|
|
}
|
|
|
|
|
|
2012-04-18 20:30:57 +03:00
|
|
|
void AndroidSettingsWidget::manageAVD()
|
|
|
|
|
{
|
|
|
|
|
QProcess *avdProcess = new QProcess();
|
|
|
|
|
connect(this, SIGNAL(destroyed()), avdProcess, SLOT(deleteLater()));
|
|
|
|
|
connect(avdProcess, SIGNAL(finished(int)), avdProcess, SLOT(deleteLater()));
|
2013-11-19 17:25:32 +01:00
|
|
|
|
2013-12-16 20:19:07 +01:00
|
|
|
avdProcess->setProcessEnvironment(m_androidConfig.androidToolEnvironment().toProcessEnvironment());
|
|
|
|
|
QString executable = m_androidConfig.androidToolPath().toString();
|
2013-11-19 17:25:32 +01:00
|
|
|
QStringList arguments = QStringList() << QLatin1String("avd");
|
|
|
|
|
|
|
|
|
|
avdProcess->start(executable, arguments);
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Android
|