58 lines
2.0 KiB
C++
58 lines
2.0 KiB
C++
|
#include <QGuiApplication>
|
|||
|
#include <QQmlApplicationEngine>
|
|||
|
#include <QQmlContext>
|
|||
|
#include <QDir>
|
|||
|
#include <QQuickWindow>
|
|||
|
#include <QProcess>
|
|||
|
#include "lang/Lang.h"
|
|||
|
#include "AppInfo.h"
|
|||
|
#include "controller/ChatController.h"
|
|||
|
#include "tool/IPC.h"
|
|||
|
|
|||
|
int main(int argc, char *argv[])
|
|||
|
{
|
|||
|
//将样式设置为Basic,不然会导致组件显示异常
|
|||
|
qputenv("QT_QUICK_CONTROLS_STYLE","Basic");
|
|||
|
//6.4及以下监听系统深色模式变化
|
|||
|
#ifdef Q_OS_WIN
|
|||
|
qputenv("QT_QPA_PLATFORM","windows:darkmode=2");
|
|||
|
#endif
|
|||
|
QGuiApplication::setOrganizationName("ZhuZiChu");
|
|||
|
QGuiApplication::setOrganizationDomain("https://zhuzichu520.github.io");
|
|||
|
QGuiApplication::setApplicationName("FluentUI");
|
|||
|
// QQuickWindow::setGraphicsApi(QSGRendererInterface::Software);
|
|||
|
QGuiApplication app(argc, argv);
|
|||
|
AppInfo* appInfo = new AppInfo();
|
|||
|
IPC ipc(0);
|
|||
|
QString activeWindowEvent = "activeWindow";
|
|||
|
if(!ipc.isCurrentOwner()){
|
|||
|
ipc.postEvent(activeWindowEvent,QString().toUtf8(),0);
|
|||
|
delete appInfo;
|
|||
|
return 0;
|
|||
|
}
|
|||
|
if(ipc.isAttached()){
|
|||
|
ipc.registerEventHandler(activeWindowEvent,[&appInfo](const QByteArray& data){
|
|||
|
Q_EMIT appInfo->activeWindow();
|
|||
|
return true;
|
|||
|
});
|
|||
|
}
|
|||
|
app.setQuitOnLastWindowClosed(false);
|
|||
|
QQmlApplicationEngine engine;
|
|||
|
qmlRegisterType<ChatController>("Controller",1,0,"ChatController");
|
|||
|
QQmlContext * context = engine.rootContext();
|
|||
|
Lang* lang = appInfo->lang();
|
|||
|
context->setContextProperty("lang",lang);
|
|||
|
QObject::connect(appInfo,&AppInfo::langChanged,&app,[context,appInfo]{
|
|||
|
context->setContextProperty("lang",appInfo->lang());
|
|||
|
});
|
|||
|
context->setContextProperty("appInfo",appInfo);
|
|||
|
const QUrl url(QStringLiteral("qrc:/qml/App.qml"));
|
|||
|
QObject::connect(&engine, &QQmlApplicationEngine::objectCreated,
|
|||
|
&app, [url](QObject *obj, const QUrl &objUrl) {
|
|||
|
if (!obj && url == objUrl)
|
|||
|
QCoreApplication::exit(-1);
|
|||
|
}, Qt::QueuedConnection);
|
|||
|
engine.load(url);
|
|||
|
return app.exec();
|
|||
|
}
|