-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.h
72 lines (57 loc) · 1.26 KB
/
mainwindow.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
//
// Created by DO on 2024/4/8.
//
#ifndef ANDROIDTOOLKIT_MAINWINDOW_H
#define ANDROIDTOOLKIT_MAINWINDOW_H
#include <QWidget>
#include <QProcess>
#include <QThread>
#include "AdbThread.h"
QT_BEGIN_NAMESPACE
namespace Ui { class MainWindow; }
QT_END_NAMESPACE
class MainWindow : public QWidget {
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = nullptr);
~MainWindow() override;
private slots:
void onProcessStart();
void onProcess(const QString &q,const CallbackFunc &callback);
void onProcessComplete();
private:
Ui::MainWindow *ui;
QString workDir;
QString logText;
AdbThread *thread;
/**
* 初始化设置
*/
void Setup();
/**
* 刷新设备列表
*/
void RefreshDevices();
/**
* 推送OBB文件
* @param q
*/
void PushOBB(const QString &q);
/**
* 安装APK
* @param q
*/
void InstallApk(const QString &q);
/**
* 执行进程
* @param cmd
*/
void OpenProcess(const QStringList &cmd);
/**
* 格式化命令
* @param _param
* @return
*/
QStringList FormatCommand(QStringList _param);
};
#endif //ANDROIDTOOLKIT_MAINWINDOW_H