blob: c9e8691ac5894060c5f022cfe292831f99acd32a (
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
27
28
29
|
#include <QGuiApplication>
#include <QQmlApplicationEngine>
#include <QtQml>
#include "user.hxx"
#include "tasklist.hxx"
#include "controller.hxx"
int main(int argc, char* argv[])
{
QGuiApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
QGuiApplication app(argc, argv);
QQmlApplicationEngine engine;
User::typeId = qmlRegisterSingletonType<User>("KelakonUser", 0, 1, "User"
, [](QQmlEngine *engine,
QJSEngine *scriptEngine) -> QObject* {
Q_UNUSED(engine)
Q_UNUSED(scriptEngine)
return new User{};
});
TaskList taskList;
engine.rootContext()->setContextProperty("taskList", &taskList);
engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
Controller controller{&engine};
return app.exec();
}
|