blob: 479d30267242057a97657500f45e86bf960fffc4 (
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
|
#include <QGuiApplication>
#include <QQmlApplicationEngine>
#include <QtQml>
#include "user.hxx"
#include "controller.hxx"
#include "tasklist.hxx"
int main(int argc, char* argv[])
{
QGuiApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
QGuiApplication app(argc, argv);
QQmlApplicationEngine engine;
User::typeId = 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")));
Controller controller{&engine};
TaskList taskList;
engine.rootContext()->setContextProperty("taskList", &taskList);
return app.exec();
}
|