mirror of
https://github.com/barry-ran/QtScrcpy.git
synced 2025-10-03 22:59:40 +00:00
85 lines
2.2 KiB
C++
85 lines
2.2 KiB
C++
#ifndef DIALOG_H
|
|
#define DIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QPointer>
|
|
#include <QMessageBox>
|
|
#include <QMenu>
|
|
#include <QSystemTrayIcon>
|
|
#include <QListWidget>
|
|
|
|
|
|
#include "adbprocess.h"
|
|
#include "../QtScrcpyCore/include/QtScrcpyCore.h"
|
|
|
|
namespace Ui
|
|
{
|
|
class Dialog;
|
|
}
|
|
|
|
class QYUVOpenGLWidget;
|
|
class Dialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Dialog(QWidget *parent = 0);
|
|
~Dialog();
|
|
|
|
void outLog(const QString &log, bool newLine = true);
|
|
bool filterLog(const QString &log);
|
|
void getIPbyIp();
|
|
|
|
private slots:
|
|
void onDeviceConnected(bool success, const QString& serial, const QString& deviceName, const QSize& size);
|
|
void onDeviceDisconnected(QString serial);
|
|
|
|
void on_updateDevice_clicked();
|
|
void on_startServerBtn_clicked();
|
|
void on_stopServerBtn_clicked();
|
|
void on_wirelessConnectBtn_clicked();
|
|
void on_startAdbdBtn_clicked();
|
|
void on_getIPBtn_clicked();
|
|
void on_wirelessDisConnectBtn_clicked();
|
|
void on_selectRecordPathBtn_clicked();
|
|
void on_recordPathEdt_textChanged(const QString &arg1);
|
|
void on_adbCommandBtn_clicked();
|
|
void on_stopAdbBtn_clicked();
|
|
void on_clearOut_clicked();
|
|
void on_stopAllServerBtn_clicked();
|
|
void on_refreshGameScriptBtn_clicked();
|
|
void on_applyScriptBtn_clicked();
|
|
void on_recordScreenCheck_clicked(bool checked);
|
|
void on_usbConnectBtn_clicked();
|
|
void on_wifiConnectBtn_clicked();
|
|
void on_connectedPhoneList_itemDoubleClicked(QListWidgetItem *item);
|
|
void on_updateNameBtn_clicked();
|
|
void on_useSingleModeCheck_clicked();
|
|
void on_serialBox_currentIndexChanged(const QString &arg1);
|
|
|
|
private:
|
|
bool checkAdbRun();
|
|
void initUI();
|
|
void updateBootConfig(bool toView = true);
|
|
void execAdbCmd();
|
|
void delayMs(int ms);
|
|
QString getGameScript(const QString &fileName);
|
|
void slotShow();
|
|
void slotActivated(QSystemTrayIcon::ActivationReason reason);
|
|
int findDeviceFromeSerialBox(bool wifi);
|
|
quint32 getBitRate();
|
|
const QString &getServerPath();
|
|
|
|
protected:
|
|
void closeEvent(QCloseEvent *event);
|
|
|
|
private:
|
|
Ui::Dialog *ui;
|
|
AdbProcess m_adb;
|
|
QSystemTrayIcon *m_hideIcon;
|
|
QMenu *m_menu;
|
|
QAction *m_showWindow;
|
|
QAction *m_quit;
|
|
};
|
|
|
|
#endif // DIALOG_H
|