summaryrefslogtreecommitdiff
path: root/controller.hxx
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2021-07-12 10:54:05 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2021-07-12 10:54:05 +0800
commite5429cf6eb8f83be50b4fb7d764375f7c3713265 (patch)
treef5a400d5b7373350544c57a212e8f458d8a0b581 /controller.hxx
parentb3f865c86c7a000efec39222c4c22b53f757f1b6 (diff)
Link view to give it some delay
before user goes to their catalog. Update the handler to conform to the updated shop results page. Make the stack push relation more generic, that what view gets pushed is decided in the C++ controller, not the QML views. Refactor code.
Diffstat (limited to 'controller.hxx')
-rw-r--r--controller.hxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/controller.hxx b/controller.hxx
index b2733fc..f0f3a1f 100644
--- a/controller.hxx
+++ b/controller.hxx
@@ -9,8 +9,11 @@ class Controller : public QObject
public:
Controller(QObject* parent = nullptr);
~Controller();
- signals:
+ public slots:
void signUp(QString const& brand);
+ void catalog(QString const& brand);
+ signals:
+ void pushed();
};
#endif