summaryrefslogtreecommitdiff
path: root/client.cxx
diff options
context:
space:
mode:
authorꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2019-09-19 18:22:41 +0800
committerꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2019-09-19 18:22:41 +0800
commit61c312c1e059b97ff131d375af78c7362bb0fc5a (patch)
tree7a7734c41832786a5842450ed9cbea95e314f740 /client.cxx
parent0b05904d38acb050ead71ad256d59f70b9c9fe87 (diff)
Separated userShow from logIn
Each emitting different signals
Diffstat (limited to 'client.cxx')
-rw-r--r--client.cxx18
1 files changed, 15 insertions, 3 deletions
diff --git a/client.cxx b/client.cxx
index bef315f..9a2fc51 100644
--- a/client.cxx
+++ b/client.cxx
@@ -11,9 +11,7 @@ namespace RTClient {
void Client::logIn(QString const& name, QString const& password)
{
rtclient_login(name.toLatin1().constData(), password.toLatin1().constData());
- rtclient_user* user = NULL;
- rtclient_user_show(&user, name.toLatin1().constData());
- if (user) emit logged(user);
+ emit loggedIn(name);
}
void Client::userNew(QString const& name
@@ -67,6 +65,20 @@ namespace RTClient {
, privileged);
}
+ void Client::userShow(unsigned int id)
+ {
+ rtclient_user* user = NULL;
+ rtclient_user_showid(&user, id);
+ if (user) emit userShown(user);
+ }
+
+ void Client::userShow(QString const& name)
+ {
+ rtclient_user* user = NULL;
+ rtclient_user_showname(&user, name.toLatin1().constData());
+ if (user) emit userShown(user);
+ }
+
void Client::ticketNew(QString const& queue
, QString const& requestor
, QString const& subject