mirror of
https://github.com/iDescriptor/iDescriptor.git
synced 2026-06-22 03:45:51 +08:00
26 lines
549 B
C++
26 lines
549 B
C++
#ifndef APPINSTALLDIALOG_H
|
|
#define APPINSTALLDIALOG_H
|
|
|
|
#include "appdownloadbasedialog.h"
|
|
#include <QComboBox>
|
|
#include <QDialog>
|
|
|
|
class AppInstallDialog : public AppDownloadBaseDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit AppInstallDialog(const QString &appName,
|
|
const QString &description,
|
|
QWidget *parent = nullptr);
|
|
|
|
private slots:
|
|
void onInstallClicked();
|
|
|
|
private:
|
|
QComboBox *m_deviceCombo;
|
|
QString m_bundleId;
|
|
void updateDeviceList();
|
|
};
|
|
|
|
#endif // APPINSTALLDIALOG_H
|