summaryrefslogtreecommitdiff
path: root/src/listeners/pincodelistener.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-08-31 16:53:06 +0300
committerAndrei Karas <akaras@inbox.ru>2014-09-06 01:18:54 +0300
commit8ad8da325107ef1b33bd6c3ed985859e7edb78ae (patch)
tree3dd76adef5e6dbe7da8db925ffa42ebbf21eb638 /src/listeners/pincodelistener.cpp
parent8cc52b6e9cf46643cc6300df844e70b8dcb85212 (diff)
downloadManaVerse-8ad8da325107ef1b33bd6c3ed985859e7edb78ae.tar.gz
ManaVerse-8ad8da325107ef1b33bd6c3ed985859e7edb78ae.tar.bz2
ManaVerse-8ad8da325107ef1b33bd6c3ed985859e7edb78ae.tar.xz
ManaVerse-8ad8da325107ef1b33bd6c3ed985859e7edb78ae.zip
add basic implimentation for set pincode.
For now it not sending pincode to server.
Diffstat (limited to 'src/listeners/pincodelistener.cpp')
-rw-r--r--src/listeners/pincodelistener.cpp37
1 files changed, 37 insertions, 0 deletions
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 <http://www.gnu.org/licenses/>.
+ */
+
+#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<EditDialog*>(event.getSource());
+ if (dialog)
+ {
+ const std::string pincode = dialog->getMsg();
+ // here need send pin code to server
+ }
+}