FluentUI/example/src/main.cpp

64 lines
2.1 KiB
C++
Raw Normal View History

2023-02-24 18:44:29 +08:00
#include <QGuiApplication>
#include <QQmlApplicationEngine>
2023-03-03 18:19:48 +08:00
#include <QQmlContext>
2023-03-05 23:39:13 +08:00
#include <QDir>
2023-03-09 13:23:39 +08:00
#include <QQuickWindow>
2023-03-05 23:39:13 +08:00
#include <QProcess>
2023-04-14 17:07:54 +08:00
#include "lang/Lang.h"
2023-04-11 23:12:31 +08:00
#include "AppInfo.h"
2023-04-22 16:02:52 +08:00
#include "controller/ChatController.h"
#include "tool/IPC.h"
2023-04-22 19:25:10 +08:00
#if defined(STATICLIB)
#include <FluentUI.h>
#endif
2023-02-26 23:47:07 +08:00
2023-02-24 18:44:29 +08:00
int main(int argc, char *argv[])
{
2023-04-19 23:04:56 +08:00
//将样式设置为Basic不然会导致组件显示异常
qputenv("QT_QUICK_CONTROLS_STYLE","Basic");
2023-04-20 00:15:13 +08:00
//6.4及以下监听系统深色模式变化
2023-04-20 11:08:13 +08:00
#ifdef Q_OS_WIN
2023-04-20 00:15:13 +08:00
qputenv("QT_QPA_PLATFORM","windows:darkmode=2");
2023-04-20 11:08:13 +08:00
#endif
2023-04-20 09:15:28 +08:00
QGuiApplication::setOrganizationName("ZhuZiChu");
QGuiApplication::setOrganizationDomain("https://zhuzichu520.github.io");
QGuiApplication::setApplicationName("FluentUI");
2023-04-22 00:29:47 +08:00
// QQuickWindow::setGraphicsApi(QSGRendererInterface::Software);
2023-02-24 18:44:29 +08:00
QGuiApplication app(argc, argv);
2023-04-22 00:29:47 +08:00
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()){
2023-04-23 18:08:20 +08:00
ipc.registerEventHandler(activeWindowEvent,[&appInfo](const QByteArray&){
2023-04-22 00:29:47 +08:00
Q_EMIT appInfo->activeWindow();
return true;
});
}
2023-04-16 02:28:58 +08:00
app.setQuitOnLastWindowClosed(false);
2023-02-24 18:44:29 +08:00
QQmlApplicationEngine engine;
2023-04-22 19:25:10 +08:00
#if defined(STATICLIB)
FluentUI::initialize(&engine);
#endif
2023-03-17 14:05:27 +08:00
qmlRegisterType<ChatController>("Controller",1,0,"ChatController");
2023-04-14 17:07:54 +08:00
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);
2023-04-22 16:02:52 +08:00
const QUrl url(QStringLiteral("qrc:/qml/App.qml"));
2023-02-26 23:47:07 +08:00
QObject::connect(&engine, &QQmlApplicationEngine::objectCreated,
2023-04-22 00:29:47 +08:00
&app, [url](QObject *obj, const QUrl &objUrl) {
if (!obj && url == objUrl)
QCoreApplication::exit(-1);
}, Qt::QueuedConnection);
2023-02-26 23:47:07 +08:00
engine.load(url);
2023-02-24 18:44:29 +08:00
return app.exec();
}