From 8f1ef80a59642e8051f588e2dde41176a8495cb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=A6=8C=20=EA=A6=AB=EA=A6=B6=20=EA=A6=8F=EA=A7=80?= =?UTF-8?q?=EA=A6=A6=EA=A6=BF=20=EA=A6=A7=20=EA=A6=AE=20=EA=A6=91=20?= =?UTF-8?q?=EA=A6=A9=20=EA=A6=AD=EA=A7=80?= Date: Sun, 19 Jul 2020 09:24:10 +0800 Subject: Admin class --- admin.cxx | 90 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 admin.cxx (limited to 'admin.cxx') diff --git a/admin.cxx b/admin.cxx new file mode 100644 index 0000000..b01fc2e --- /dev/null +++ b/admin.cxx @@ -0,0 +1,90 @@ +#include +#include +#include "qicclient/admin.hxx" + +namespace QICClient { + + void Admin::setUserName(QString const& userName) + { + if (m_userName != userName) { + m_userName = userName; + emit userNameChanged(); + } + } + + void Admin::setPassword(QString const& password) + { + if (m_password != password) { + m_password = password; + emit passwordChanged(); + } + } + + void Admin::setName(QString const& name) + { + if (m_name != name) { + m_name = name; + emit nameChanged(); + } + } + + void Admin::setSuper(bool super) + { + if (m_super != super) { + m_super = super; + emit superChanged(); + } + } + + void Admin::setData(icclient_admin* data) + { + if (data && data->username && m_userName != data->username) { + m_userName = QString{data->username}; + emit userNameChanged(); + } else setUserName(""); + + if (data && data->password && m_password != data->password) { + m_password = QString{data->password}; + emit passwordChanged(); + } else setPassword(""); + + if (data && data->name && m_name != data->name) { + m_name = QString{data->name}; + emit nameChanged(); + } else setName(""); + + if (data) setSuper(data->super); + else setSuper(""); + + if (m_data != data) m_data = data; + } + + void Admin::logIn(QString const& username, QString const& password, + QString const& successPage, QString const& nextPage, + QString const& failPage, + size_t (*handler)(void*, size_t, size_t, void*)) + { + setData(icclient_admin_login(username.toLatin1().constData(), + password.toLatin1().constData(), + successPage.toLatin1().constData(), + nextPage.toLatin1().constData(), + failPage.toLatin1().constData(), + handler)); + } + + void Admin::newItem(QString const& description, QString const& comment, + QString const& price, QString const& imagePath) + { + icclient_admin_newitem(description.toLatin1().constData(), + comment.toLatin1().constData(), + price.toLatin1().constData(), + imagePath.toLatin1().constData()); + } + + void Admin::logOut() + { + icclient_admin_logout(m_data); + setData(nullptr); + } + +} -- cgit v1.2.3