-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
42 lines (35 loc) · 1.18 KB
/
main.cpp
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
#include "mainmenu.h"
#include <QApplication>
#include <QLocale>
#include <QTranslator>
#include <iostream>
#include "decoder.h"
int main(int argc, char *argv[]) {
#ifdef Q_OS_WIN32
qputenv("MY_ADB_PATH", "adb\\win\\adb.exe"); // 设置环境变量, 跨平台时都需要改动
qputenv("MY_SERVER_PATH", "server\\scrcpy_server.jar");
qputenv("MY_IMG_PATH", ":/images/");
#else
qputenv("MY_ADB_PATH", "adb/mac/adb"); // 设置环境变量, 跨平台时都需要改动
qputenv("MY_SERVER_PATH", "server/scrcpy_server.jar");
qputenv("MY_IMG_PATH", ":/images/");
#endif
Decoder::init();
QApplication a(argc, argv);
QTranslator translator;
const QStringList uiLanguages = QLocale::system().uiLanguages();
for (const QString &locale : uiLanguages) {
const QString baseName = "QtScrcpy_" + QLocale(locale).name();
if (translator.load(":/i18n/" + baseName)) {
a.installTranslator(&translator);
break;
}
}
MainMenu *w = new MainMenu();
w->setAttribute(Qt::WA_QuitOnClose, true);
w->setWindowTitle("JoyStick");
w->show();
int ret = a.exec();
Decoder::destroy();
return ret;
}