From 8ad8da325107ef1b33bd6c3ed985859e7edb78ae Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 31 Aug 2014 16:53:06 +0300 Subject: add basic implimentation for set pincode. For now it not sending pincode to server. --- src/listeners/pincodelistener.cpp | 37 +++++++++++++++++++++++++++++++++++++ src/listeners/pincodelistener.h | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 73 insertions(+) create mode 100644 src/listeners/pincodelistener.cpp create mode 100644 src/listeners/pincodelistener.h (limited to 'src/listeners') diff --git a/src/listeners/pincodelistener.cpp b/src/listeners/pincodelistener.cpp new file mode 100644 index 000000000..7c9c20b71 --- /dev/null +++ b/src/listeners/pincodelistener.cpp @@ -0,0 +1,37 @@ +/* + * The ManaPlus Client + * Copyright (C) 2011-2014 The ManaPlus Developers + * + * This file is part of The ManaPlus Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "listeners/pincodelistener.h" + +#include "gui/windows/editdialog.h" + +#include "debug.h" + +PincodeListener pincodeListener; + +void PincodeListener::action(const ActionEvent &event) +{ + EditDialog *const dialog = dynamic_cast(event.getSource()); + if (dialog) + { + const std::string pincode = dialog->getMsg(); + // here need send pin code to server + } +} diff --git a/src/listeners/pincodelistener.h b/src/listeners/pincodelistener.h new file mode 100644 index 000000000..3045db549 --- /dev/null +++ b/src/listeners/pincodelistener.h @@ -0,0 +1,36 @@ +/* + * The ManaPlus Client + * Copyright (C) 2011-2014 The ManaPlus Developers + * + * This file is part of The ManaPlus Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef LISTENERS_PINCODELISTENER_H +#define LISTENERS_PINCODELISTENER_H + +#include "listeners/actionlistener.h" + +#include "localconsts.h" + +class PincodeListener final : public ActionListener +{ + public: + void action(const ActionEvent &event) override final; +}; + +extern PincodeListener pincodeListener; + +#endif // LISTENERS_PINCODELISTENER_H -- cgit v1.2.3-60-g2f50