FluentUI/example/main.cpp

26 lines
743 B
C++
Raw Normal View History

2023-02-24 18:44:29 +08:00
#include <QGuiApplication>
#include <QQmlApplicationEngine>
2023-02-26 23:47:07 +08:00
#if defined(STATICLIB)
#include <FluentUI.h>
#endif
2023-02-24 18:44:29 +08:00
int main(int argc, char *argv[])
{
2023-02-27 23:04:52 +08:00
qputenv("QSG_RENDER_LOOP","basic");
2023-02-24 18:44:29 +08:00
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
QGuiApplication app(argc, argv);
QQmlApplicationEngine engine;
2023-02-26 23:47:07 +08:00
#if defined(STATICLIB)
FluentUI::create(&engine);
#endif
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();
}