diff options
author | Erik Prabowo Kamal <erik@darapsa.co.id> | 2019-08-28 15:46:12 +0800 |
---|---|---|
committer | Erik Prabowo Kamal <erik@darapsa.co.id> | 2019-08-28 15:46:12 +0800 |
commit | 222e2cdd3a64fcdee3b0178e60f097429fe7a242 (patch) | |
tree | bf563c44af8dd296bf043bfecb896b3da20e325b /main.cxx | |
parent | 5defc7ca72cf0e6f9aa63c1151e35881cd495007 (diff) |
Registered the user singleton type
Diffstat (limited to 'main.cxx')
-rw-r--r-- | main.cxx | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -1,6 +1,7 @@ #include <QGuiApplication> #include <QQmlApplicationEngine> #include <QThread> +#include "user.hxx" #include "networkworker.hxx" int main(int argc, char* argv[]) @@ -13,6 +14,13 @@ int main(int argc, char* argv[]) QThread thread; worker.moveToThread(&thread); + qmlRegisterSingletonType<User>("id.co.darapsa.kelakon.user", 0, 1, "User", [](QQmlEngine *engine, QJSEngine *scriptEngine) -> QObject* { + Q_UNUSED(engine) + Q_UNUSED(scriptEngine) + + User* user = new User{}; + return user; + }); engine.load(QUrl(QStringLiteral("qrc:/main.qml"))); thread.start(); |