Rabbit Remote Control 0.0.34
Loading...
Searching...
No Matches
main.cpp
1// Author: Kang Lin <kl222@126.com>
2
14#include "mainwindow.h"
15
16#include <QApplication>
17#include <QSettings>
18#include <QDebug>
19#include <QtGlobal>
20#include <QSharedPointer>
21#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
22 #include <QRegularExpression>
23#endif
24#if defined(Q_OS_ANDROID) && (QT_VERSION >= QT_VERSION_CHECK(5, 7, 0)) && (QT_VERSION < QT_VERSION_CHECK(6, 0, 0))
25#include <QtAndroid>
26#endif
27
28#include "RabbitCommonTools.h"
29
30#ifdef HAVE_UPDATE
31#include "FrmUpdater.h"
32#endif
33#ifdef BUILD_QUIWidget
34 #include "QUIWidget/QUIWidget.h"
35#endif
36
37#include <QLoggingCategory>
38
39static Q_LOGGING_CATEGORY(log, "App.Main")
40
41int main(int argc, char *argv[])
42{
43 int nRet = 0;
44
45 //qputenv("QT_MEDIA_BACKEND", "ffmpeg");
46
47#if (defined(Q_OS_LINUX) && !defined(Q_OA_ANDROID) \
48 && (QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)))
49 /* 修复使用 Qt6 时,最大化时,工具栏位置错误。
50 现在很多 linux 用 wayland 或 wayland-egl 作为桌面显示,这样会出现一个问题,
51 由于没有坐标系统,导致无边框窗体无法拖动和定位(即 QWidge::move 失效)。
52 (Qt6 开始强制默认优先用 wayland ,Qt5 默认有 xcb 则优先用 xcb),
53 所以需要在 main 函数最前面加一行 `qputenv("QT_QPA_PLATFORM", "xcb")`;
54 */
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";
63#endif
64#if (QT_VERSION > QT_VERSION_CHECK(5,6,0)) && (QT_VERSION < QT_VERSION_CHECK(6, 0, 0))
65 QApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
66#endif
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();
69#endif
70
71//#if defined (_DEBUG) || !defined(BUILD_SHARED_LIBS)
72// Q_INIT_RESOURCE(translations_RabbitRemoteControlApp);
73//#endif
74
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"));
79#endif
80
81 QApplication app(argc, argv);
82
83 RabbitCommon::CTools::Instance()->Init();
84
85 qInfo(log) << app.applicationName() + " " + app.applicationVersion()
86 + " " + QObject::tr("Start") + " ......"
87 << "\n" << app.arguments();
88
89 QSharedPointer<QTranslator> tApp =
90 RabbitCommon::CTools::Instance()->InstallTranslator("RabbitRemoteControlApp");
91
92 app.setApplicationDisplayName(QObject::tr("Rabbit Remote Control"));
93 app.setOrganizationName(QObject::tr("Kang Lin Studio"));
94
95#ifdef HAVE_UPDATE
96 // Check update version
97 QSharedPointer<CFrmUpdater> pUpdate(new CFrmUpdater());
98 if(pUpdate) {
99 QIcon icon = QIcon::fromTheme("app");
100 if(!icon.isNull())
101 {
102 auto sizeList = icon.availableSizes();
103 if(!sizeList.isEmpty()){
104 QPixmap p = icon.pixmap(*sizeList.begin());
105 pUpdate->SetTitle(p.toImage());
106 }
107 }
108 if(app.arguments().length() > 1) {
109 try{
110 pUpdate->GenerateUpdateJson();
111 pUpdate->GenerateUpdateXml();
112 } catch(...) {
113 qCritical(log) << "Generate update fail";
114 }
115
116 qInfo(log) << app.applicationName() + " " + app.applicationVersion()
117 + " " + QObject::tr("Generate update json file End");
118 return 0;
119 }
120 } else {
121 qCritical(log) << "new CFrmUpdater() fail";
122 }
123#endif
124
125 MainWindow* w = new MainWindow();
126 try {
127 //w->setWindowIcon(QIcon::themeName("app"));
128 //w->setWindowTitle(a.applicationDisplayName());
129
130#ifdef BUILD_QUIWidget
131 QSharedPointer<QUIWidget> quiwidget(new QUIWidget(nullptr, true));
132 bool check = quiwidget->connect(w, SIGNAL(sigFullScreen()),
133 SLOT(showFullScreen()));
134 Q_ASSERT(check);
135 check = quiwidget->connect(w, SIGNAL(sigShowNormal()),
136 SLOT(showNormal()));
137 Q_ASSERT(check);
138 //quiwidget.setPixmap(QUIWidget::Lab_Ico, ":/image/App");
139 //quiwidget.setTitle(a.applicationDisplayName());
140 quiwidget->setMainWidget(w);
141 quiwidget->show();
142#else
143 w->show();
144#endif
145
146 nRet = app.exec();
147 } catch (std::exception &e) {
148 qCritical(log) << "exception:" << e.what();
149 } catch(...) {
150 qCritical(log) << "exception:";
151 }
152
153#ifndef BUILD_QUIWidget
154 delete w;
155#endif
156
157 RabbitCommon::CTools::Instance()->Clean();
158 if(tApp)
159 RabbitCommon::CTools::Instance()->RemoveTranslator(tApp);
160//#if defined (_DEBUG) || !defined(BUILD_SHARED_LIBS)
161// Q_CLEANUP_RESOURCE(translations_RabbitRemoteControlApp);
162//#endif
163
164 qInfo(log) << app.applicationName() + " " + app.applicationVersion() + " " + QObject::tr("End");
165 return nRet;
166}
The MainWindow class.
Definition mainwindow.h:33