diff options
author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-12 17:48:38 +0800 |
---|---|---|
committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-12 17:48:38 +0800 |
commit | fe0a17cc38d21c0c0cfb45f5d8f08c6e72f9e409 (patch) | |
tree | e37f7e1d751fe3737901bc69454c269bac6d52d6 | |
parent | f2b182a34a28dfd40079d563ff47d2e56e4aae1e (diff) |
Move the QML login signal from appWindow to login
-rw-r--r-- | Login.qml | 3 | ||||
-rw-r--r-- | controller.cxx | 4 | ||||
-rw-r--r-- | main.qml | 8 | ||||
-rw-r--r-- | pages/ConfirmPassword.qml | 2 |
4 files changed, 12 insertions, 5 deletions
@@ -1,6 +1,9 @@ import QtQuick 2.12 LoginForm { + signal logIn(string name, string password) + + objectName: "login" width: appWindow.width height: appWindow.height diff --git a/controller.cxx b/controller.cxx index 9d77cf4..3b4b4de 100644 --- a/controller.cxx +++ b/controller.cxx @@ -12,7 +12,9 @@ Controller::Controller(QObject* parent) : QObject{parent} auto engine = dynamic_cast<QQmlApplicationEngine*>(parent); auto rootObjects = engine->rootObjects(); auto appWindow = rootObjects[0]; - connect(appWindow, SIGNAL(logIn(QString, QString)), + + auto loginView = appWindow->findChild<QObject*>("login"); + connect(loginView, SIGNAL(logIn(QString, QString)), worker, SLOT(logIn(QString, QString))); auto user = engine->singletonInstance<User*>(User::typeId); @@ -3,14 +3,14 @@ import QtQuick.Controls 2.12 import QtQuick.Controls.Material 2.12 ApplicationWindow { + property alias login: login + id: appWindow width: 360 height: 640 visible: true Material.accent: Material.DeepPurple - signal logIn(string name, string password) - Drawer { id: drawer width: 0.8 * appWindow.width @@ -21,6 +21,8 @@ ApplicationWindow { id: stackView anchors.fill : parent - initialItem: Login {} + initialItem: Login { + id: login + } } } diff --git a/pages/ConfirmPassword.qml b/pages/ConfirmPassword.qml index 51390f9..3e1df7a 100644 --- a/pages/ConfirmPassword.qml +++ b/pages/ConfirmPassword.qml @@ -13,7 +13,7 @@ PasswordForm { createPassButton { text: qsTr("Confirm password") onClicked: { - appWindow.logIn(User.name, User.password) + login.logIn(User.name, User.password) stackView.push("qrc:/pages/CreateProfile.qml") } } |