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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#include <QQmlApplicationEngine>
#include <QtQml>
#include <qrtclient/user.hxx>
#include <qrtclient/client.hxx>
#include "controller.hxx"
Controller::Controller(QObject* parent) : QObject{parent}
{
auto client = new RTClient::Client{"https://darapsa.co.id/rt"};
client->moveToThread(&thread);
connect(&thread, &QThread::finished, client, &QObject::deleteLater);
auto engine = static_cast<QQmlApplicationEngine*>(parent);
auto rootObjects = engine->rootObjects();
auto appWindow = rootObjects[0];
auto loginView = appWindow->findChild<QObject*>("login");
connect(loginView, SIGNAL(logIn(QString, QString)),
client, SLOT(logIn(QString, QString)));
connect(client, SIGNAL(logged(rt_user*)), loginView, SLOT(pushProfile()));
connect(loginView, SIGNAL(search(QString)), client, SLOT(search(QString)));
using RTClient::User;
auto typeId = qmlRegisterSingletonType<User>("KelakonUser", 0, 1, "User"
, [](QQmlEngine *engine,
QJSEngine *scriptEngine) -> QObject* {
Q_UNUSED(engine)
Q_UNUSED(scriptEngine)
return new User;
});
auto user = engine->singletonInstance<User*>(typeId);
connect(client, SIGNAL(logged(rt_user*)), user, SLOT(update(rt_user*)));
taskList = new RTClient::TicketList;
engine->rootContext()->setContextProperty("taskList", taskList);
connect(client, SIGNAL(foundTasks(rt_ticketlist*))
, taskList, SLOT(addTickets(rt_ticketlist*)));
thread.start();
}
Controller::~Controller()
{
thread.quit();
thread.wait();
delete taskList;
}
|