#include #include #include #include #include #include #include #include "lang/Lang.h" #include "AppInfo.h" #include "ChatController.h" int main(int argc, char *argv[]) { QCoreApplication::setOrganizationName("ZhuZiChu"); QCoreApplication::setOrganizationDomain("https://zhuzichu520.github.io"); QCoreApplication::setApplicationName("FluentUI"); QQuickStyle::setStyle("Basic"); QGuiApplication app(argc, argv); app.setQuitOnLastWindowClosed(false); QQmlApplicationEngine engine; qmlRegisterType("Controller",1,0,"ChatController"); 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); 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); return app.exec(); }