FluentUI/example/main.cpp

42 lines
1.6 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-03-17 14:05:27 +08:00
#include "ChatController.h"
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及以下监听系统深色模式变化
qputenv("QT_QPA_PLATFORM","windows:darkmode=2");
2023-04-20 09:15:28 +08:00
QGuiApplication::setOrganizationName("ZhuZiChu");
QGuiApplication::setOrganizationDomain("https://zhuzichu520.github.io");
QGuiApplication::setApplicationName("FluentUI");
2023-04-19 23:04:56 +08:00
// QQuickWindow::setGraphicsApi(QSGRendererInterface::Software);
2023-02-24 18:44:29 +08:00
QGuiApplication app(argc, argv);
2023-04-16 02:28:58 +08:00
app.setQuitOnLastWindowClosed(false);
2023-02-24 18:44:29 +08:00
QQmlApplicationEngine engine;
2023-03-17 14:05:27 +08:00
qmlRegisterType<ChatController>("Controller",1,0,"ChatController");
2023-04-14 17:07:54 +08:00
AppInfo* appInfo = new AppInfo();
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-02-26 23:47:07 +08:00
const QUrl url(QStringLiteral("qrc:/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);
2023-02-24 18:44:29 +08:00
return app.exec();
}