14#include "mainwindow.h"
16#include <QApplication>
20#include <QSharedPointer>
21#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
22 #include <QRegularExpression>
24#if defined(Q_OS_ANDROID) && (QT_VERSION >= QT_VERSION_CHECK(5, 7, 0)) && (QT_VERSION < QT_VERSION_CHECK(6, 0, 0))
28#include "RabbitCommonTools.h"
31#include "FrmUpdater.h"
34 #include "QUIWidget/QUIWidget.h"
37#include <QLoggingCategory>
39static Q_LOGGING_CATEGORY(log,
"App.Main")
41int main(
int argc,
char *argv[])
47#if (defined(Q_OS_LINUX) && !defined(Q_OA_ANDROID) \
48 && (QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)))
55 QString szPlatform = QString::fromLocal8Bit(qgetenv(
"QT_QPA_PLATFORM"));
56 if(szPlatform.isEmpty()
57 || -1 != szPlatform.indexOf(QRegularExpression(
"wayland.*")))
58 qputenv(
"QT_QPA_PLATFORM",
"xcb");
59 qInfo(log) <<
"QT_QPA_PLATFORM:" << szPlatform <<
"\nCurrent Qt Platform is:"
60 << QString::fromLocal8Bit(qgetenv(
"QT_QPA_PLATFORM"))
61 <<
"; This can be modified with the environment variables QT_QPA_PLATFORM:\n"
62 <<
"export QT_QPA_PLATFORM=xcb\n Optional: xcb; vnc";
64#if (QT_VERSION > QT_VERSION_CHECK(5,6,0)) && (QT_VERSION < QT_VERSION_CHECK(6, 0, 0))
65 QApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
67#if defined(Q_OS_ANDROID) && (QT_VERSION >= QT_VERSION_CHECK(5, 7, 0)) && (QT_VERSION < QT_VERSION_CHECK(6, 0, 0))
68 QtAndroid::hideSplashScreen();
75 QApplication::setApplicationVersion(RabbitRemoteControl_VERSION);
76 QApplication::setApplicationName(
"RabbitRemoteControl");
77#if QT_VERSION >= QT_VERSION_CHECK(5, 7, 0)
78 QApplication::setDesktopFileName(QLatin1String(
"RabbitRemoteControl.desktop"));
81 QApplication app(argc, argv);
83 RabbitCommon::CTools::Instance()->Init();
85 qInfo(log) << app.applicationName() +
" " + app.applicationVersion()
86 +
" " + QObject::tr(
"Start") +
" ......"
87 <<
"\n" << app.arguments();
89 QSharedPointer<QTranslator> tApp =
90 RabbitCommon::CTools::Instance()->InstallTranslator(
"RabbitRemoteControlApp");
92 app.setApplicationDisplayName(QObject::tr(
"Rabbit Remote Control"));
93 app.setOrganizationName(QObject::tr(
"Kang Lin Studio"));
97 QSharedPointer<CFrmUpdater> pUpdate(
new CFrmUpdater());
99 QIcon icon = QIcon::fromTheme(
"app");
102 auto sizeList = icon.availableSizes();
103 if(!sizeList.isEmpty()){
104 QPixmap p = icon.pixmap(*sizeList.begin());
105 pUpdate->SetTitle(p.toImage());
108 if(app.arguments().length() > 1) {
110 pUpdate->GenerateUpdateJson();
111 pUpdate->GenerateUpdateXml();
113 qCritical(log) <<
"Generate update fail";
116 qInfo(log) << app.applicationName() +
" " + app.applicationVersion()
117 +
" " + QObject::tr(
"Generate update json file End");
121 qCritical(log) <<
"new CFrmUpdater() fail";
130#ifdef BUILD_QUIWidget
131 QSharedPointer<QUIWidget> quiwidget(
new QUIWidget(
nullptr,
true));
132 bool check = quiwidget->connect(w, SIGNAL(sigFullScreen()),
133 SLOT(showFullScreen()));
135 check = quiwidget->connect(w, SIGNAL(sigShowNormal()),
140 quiwidget->setMainWidget(w);
147 }
catch (std::exception &e) {
148 qCritical(log) <<
"exception:" << e.what();
150 qCritical(log) <<
"exception:";
153#ifndef BUILD_QUIWidget
157 RabbitCommon::CTools::Instance()->Clean();
159 RabbitCommon::CTools::Instance()->RemoveTranslator(tApp);
164 qInfo(log) << app.applicationName() +
" " + app.applicationVersion() +
" " + QObject::tr(
"End");