forked from qt-creator/qt-creator
Replace the current license disclaimer in files by a SPDX-License-Identifier. Task-number: QTBUG-67283 Change-Id: I708fd1f9f2b73d60f57cc3568646929117825813 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
82 lines
2.0 KiB
C++
82 lines
2.0 KiB
C++
// Copyright (C) 2016 BogDan Vatra <bog_dan_ro@yahoo.com>
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include "androidconfigurations.h"
|
|
|
|
#include <QDialog>
|
|
#include <QRegularExpression>
|
|
#include <QTimer>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
class QComboBox;
|
|
class QCheckBox;
|
|
class QDialogButtonBox;
|
|
class QLineEdit;
|
|
class QSpinBox;
|
|
QT_END_NAMESPACE
|
|
|
|
namespace Utils { class InfoLabel; }
|
|
|
|
namespace Android {
|
|
class AndroidConfig;
|
|
class SdkPlatform;
|
|
|
|
namespace Internal {
|
|
class AndroidSdkManager;
|
|
class AvdDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit AvdDialog(const AndroidConfig &config, QWidget *parent = nullptr);
|
|
int exec() override;
|
|
|
|
enum DeviceType { Phone, Tablet, Automotive, TV, Wear, PhoneOrTablet };
|
|
|
|
ProjectExplorer::IDevice::Ptr device() const;
|
|
|
|
const SystemImage *systemImage() const;
|
|
QString name() const;
|
|
QString abi() const;
|
|
QString deviceDefinition() const;
|
|
int sdcardSize() const;
|
|
bool isValid() const;
|
|
|
|
private:
|
|
void parseDeviceDefinitionsList();
|
|
void updateDeviceDefinitionComboBox();
|
|
void updateApiLevelComboBox();
|
|
bool eventFilter(QObject *obj, QEvent *event) override;
|
|
|
|
static AvdDialog::DeviceType tagToDeviceType(const QString &type_tag);
|
|
|
|
struct DeviceDefinitionStruct
|
|
{
|
|
QString name_id;
|
|
QString type_str;
|
|
DeviceType deviceType;
|
|
};
|
|
|
|
CreateAvdInfo m_createdAvdInfo;
|
|
QTimer m_hideTipTimer;
|
|
QRegularExpression m_allowedNameChars;
|
|
QList<DeviceDefinitionStruct> m_deviceDefinitionsList;
|
|
const AndroidConfig &m_androidConfig;
|
|
AndroidSdkManager m_sdkManager;
|
|
QMap<AvdDialog::DeviceType, QString> m_deviceTypeToStringMap;
|
|
|
|
QComboBox *m_abiComboBox;
|
|
QSpinBox *m_sdcardSizeSpinBox;
|
|
QLineEdit *m_nameLineEdit;
|
|
QComboBox *m_targetApiComboBox;
|
|
QComboBox *m_deviceDefinitionComboBox;
|
|
Utils::InfoLabel *m_warningText;
|
|
QComboBox *m_deviceDefinitionTypeComboBox;
|
|
QCheckBox *m_overwriteCheckBox;
|
|
QDialogButtonBox *m_buttonBox;
|
|
};
|
|
|
|
} // Internal
|
|
} // Android
|