summaryrefslogtreecommitdiff
path: root/main.cxx
blob: db21e087f4aff05458b2ecc9454b6d9bedea9d02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include <QGuiApplication>
#include <QQmlApplicationEngine>
#include "user.hxx"
#include "controller.hxx"

int main(int argc, char* argv[])
{
	QGuiApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
	QGuiApplication app(argc, argv);
	QQmlApplicationEngine engine;

	qmlRegisterSingletonType<User>("id.co.darapsa.kelakon.user", 0, 1, "User", [](QQmlEngine *engine, QJSEngine *scriptEngine) -> QObject* {
		Q_UNUSED(engine)
		Q_UNUSED(scriptEngine)
		return new User{};
	});

	engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
	auto rootObjects = engine.rootObjects();
	if (rootObjects.isEmpty()) return -1;

	auto appWindow = rootObjects[0];
	Controller controller{appWindow};

	return app.exec();
}