2016-01-15 14:57:40 +01:00
|
|
|
/****************************************************************************
|
2014-03-24 16:31:28 +01:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 BogDan Vatra <bog_dan_ro@yahoo.com>
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2014-03-24 16:31:28 +01:00
|
|
|
**
|
|
|
|
|
** 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
|
2016-01-15 14:57:40 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2014-03-24 16:31:28 +01:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2014-03-24 16:31:28 +01:00
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "avddialog.h"
|
|
|
|
|
#include "androidconfigurations.h"
|
2015-05-06 15:58:46 +02:00
|
|
|
|
2017-04-04 07:20:01 +02:00
|
|
|
#include <utils/algorithm.h>
|
2015-05-06 15:58:46 +02:00
|
|
|
#include <utils/tooltip/tooltip.h>
|
2016-08-03 17:55:54 +02:00
|
|
|
#include <utils/utilsicons.h>
|
2014-03-24 16:31:28 +01:00
|
|
|
|
2015-05-06 15:58:46 +02:00
|
|
|
#include <QKeyEvent>
|
2014-03-24 16:31:28 +01:00
|
|
|
#include <QMessageBox>
|
2015-05-06 15:58:46 +02:00
|
|
|
#include <QToolTip>
|
2014-03-24 16:31:28 +01:00
|
|
|
|
|
|
|
|
using namespace Android;
|
|
|
|
|
using namespace Android::Internal;
|
|
|
|
|
|
|
|
|
|
AvdDialog::AvdDialog(int minApiLevel, const QString &targetArch, const AndroidConfig *config, QWidget *parent) :
|
2015-05-06 15:58:46 +02:00
|
|
|
QDialog(parent), m_config(config), m_minApiLevel(minApiLevel),
|
|
|
|
|
m_allowedNameChars(QLatin1String("[a-z|A-Z|0-9|._-]*"))
|
2014-03-24 16:31:28 +01:00
|
|
|
{
|
|
|
|
|
m_avdDialog.setupUi(this);
|
2015-05-06 15:58:46 +02:00
|
|
|
m_hideTipTimer.setInterval(2000);
|
|
|
|
|
m_hideTipTimer.setSingleShot(true);
|
2014-03-24 16:31:28 +01:00
|
|
|
|
|
|
|
|
if (targetArch.isEmpty())
|
2017-02-22 15:09:35 +01:00
|
|
|
m_avdDialog.abiComboBox->addItems(QStringList({"armeabi-v7a", "armeabi", "x86", "mips"}));
|
2014-03-24 16:31:28 +01:00
|
|
|
else
|
|
|
|
|
m_avdDialog.abiComboBox->addItems(QStringList(targetArch));
|
|
|
|
|
|
2015-05-06 15:58:46 +02:00
|
|
|
QRegExpValidator *v = new QRegExpValidator(m_allowedNameChars, this);
|
|
|
|
|
m_avdDialog.nameLineEdit->setValidator(v);
|
|
|
|
|
m_avdDialog.nameLineEdit->installEventFilter(this);
|
|
|
|
|
|
2016-08-03 17:55:54 +02:00
|
|
|
m_avdDialog.warningIcon->setPixmap(Utils::Icons::WARNING.pixmap());
|
2014-03-24 16:31:28 +01:00
|
|
|
|
|
|
|
|
updateApiLevelComboBox();
|
|
|
|
|
|
2016-06-26 22:52:59 +03:00
|
|
|
connect(m_avdDialog.abiComboBox,
|
|
|
|
|
static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged),
|
|
|
|
|
this, &AvdDialog::updateApiLevelComboBox);
|
2015-05-06 15:58:46 +02:00
|
|
|
|
|
|
|
|
connect(&m_hideTipTimer, &QTimer::timeout,
|
|
|
|
|
this, [](){Utils::ToolTip::hide();});
|
2014-03-24 16:31:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool AvdDialog::isValid() const
|
|
|
|
|
{
|
2017-04-03 11:11:17 +02:00
|
|
|
return !name().isEmpty() && target().isValid() && !abi().isEmpty();
|
2014-03-24 16:31:28 +01:00
|
|
|
}
|
|
|
|
|
|
2017-04-03 11:11:17 +02:00
|
|
|
SdkPlatform AvdDialog::target() const
|
2014-03-24 16:31:28 +01:00
|
|
|
{
|
2017-04-03 11:11:17 +02:00
|
|
|
return m_avdDialog.targetComboBox->currentData().value<SdkPlatform>();
|
2014-03-24 16:31:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString AvdDialog::name() const
|
|
|
|
|
{
|
|
|
|
|
return m_avdDialog.nameLineEdit->text();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString AvdDialog::abi() const
|
|
|
|
|
{
|
|
|
|
|
return m_avdDialog.abiComboBox->currentText();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int AvdDialog::sdcardSize() const
|
|
|
|
|
{
|
|
|
|
|
return m_avdDialog.sizeSpinBox->value();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AvdDialog::updateApiLevelComboBox()
|
|
|
|
|
{
|
2017-04-03 11:11:17 +02:00
|
|
|
SdkPlatformList filteredList;
|
|
|
|
|
SdkPlatformList platforms = m_config->sdkTargets(m_minApiLevel);
|
2017-04-04 07:20:01 +02:00
|
|
|
|
|
|
|
|
QString selectedAbi = abi();
|
|
|
|
|
auto hasAbi = [selectedAbi](const SystemImage &image) {
|
|
|
|
|
return image.isValid() && (image.abiName == selectedAbi);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
filteredList = Utils::filtered(platforms, [hasAbi](const SdkPlatform &platform) {
|
|
|
|
|
return Utils::anyOf(platform.systemImages,hasAbi);
|
|
|
|
|
});
|
2014-03-24 16:31:28 +01:00
|
|
|
|
|
|
|
|
m_avdDialog.targetComboBox->clear();
|
2017-04-03 11:11:17 +02:00
|
|
|
foreach (const SdkPlatform &platform, filteredList) {
|
|
|
|
|
m_avdDialog.targetComboBox->addItem(AndroidConfig::apiLevelNameFor(platform),
|
|
|
|
|
QVariant::fromValue<SdkPlatform>(platform));
|
|
|
|
|
}
|
2014-03-24 16:31:28 +01:00
|
|
|
|
|
|
|
|
if (platforms.isEmpty()) {
|
|
|
|
|
m_avdDialog.warningIcon->setVisible(true);
|
|
|
|
|
m_avdDialog.warningText->setVisible(true);
|
|
|
|
|
m_avdDialog.warningText->setText(tr("Cannot create a new AVD. No sufficiently recent Android SDK available.\n"
|
2014-07-17 17:38:32 +02:00
|
|
|
"Install an SDK of at least API version %1.")
|
2014-03-24 16:31:28 +01:00
|
|
|
.arg(m_minApiLevel));
|
|
|
|
|
} else if (filteredList.isEmpty()) {
|
|
|
|
|
m_avdDialog.warningIcon->setVisible(true);
|
|
|
|
|
m_avdDialog.warningText->setVisible(true);
|
2014-07-17 17:38:32 +02:00
|
|
|
m_avdDialog.warningText->setText(tr("Cannot create a AVD for ABI %1. Install an image for it.")
|
2014-03-24 16:31:28 +01:00
|
|
|
.arg(abi()));
|
|
|
|
|
} else {
|
|
|
|
|
m_avdDialog.warningIcon->setVisible(false);
|
|
|
|
|
m_avdDialog.warningText->setVisible(false);
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-05-06 15:58:46 +02:00
|
|
|
|
|
|
|
|
bool AvdDialog::eventFilter(QObject *obj, QEvent *event)
|
|
|
|
|
{
|
|
|
|
|
if (obj == m_avdDialog.nameLineEdit && event->type() == QEvent::KeyPress) {
|
|
|
|
|
QKeyEvent *ke = static_cast<QKeyEvent *>(event);
|
|
|
|
|
const QString key = ke->text();
|
|
|
|
|
if (!key.isEmpty() && !m_allowedNameChars.exactMatch(key)) {
|
|
|
|
|
QPoint position = m_avdDialog.nameLineEdit->parentWidget()->mapToGlobal(m_avdDialog.nameLineEdit->geometry().bottomLeft());
|
|
|
|
|
position -= Utils::ToolTip::offsetFromPosition();
|
|
|
|
|
Utils::ToolTip::show(position, tr("Allowed characters are: a-z A-Z 0-9 and . _ -"), m_avdDialog.nameLineEdit);
|
|
|
|
|
m_hideTipTimer.start();
|
|
|
|
|
} else {
|
|
|
|
|
m_hideTipTimer.stop();
|
|
|
|
|
Utils::ToolTip::hide();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return QDialog::eventFilter(obj, event);
|
|
|
|
|
}
|