summaryrefslogtreecommitdiff
path: root/src/gui/windows/pincodedialog.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-03-07 23:32:25 +0300
committerAndrei Karas <akaras@inbox.ru>2018-03-07 23:32:25 +0300
commit0d9e625499c18a4eaf79d38dfb1ef6abf0c553bd (patch)
tree1e4c29a0de3697946060410e41910f88bcc5b979 /src/gui/windows/pincodedialog.cpp
parentb6cd136e3edf9d5c0eaaef47118ff1a72d7b0c75 (diff)
downloadplus-0d9e625499c18a4eaf79d38dfb1ef6abf0c553bd.tar.gz
plus-0d9e625499c18a4eaf79d38dfb1ef6abf0c553bd.tar.bz2
plus-0d9e625499c18a4eaf79d38dfb1ef6abf0c553bd.tar.xz
plus-0d9e625499c18a4eaf79d38dfb1ef6abf0c553bd.zip
Add support for set new pincode.
Add pincode dialog and widget.
Diffstat (limited to 'src/gui/windows/pincodedialog.cpp')
-rw-r--r--src/gui/windows/pincodedialog.cpp135
1 files changed, 135 insertions, 0 deletions
diff --git a/src/gui/windows/pincodedialog.cpp b/src/gui/windows/pincodedialog.cpp
new file mode 100644
index 000000000..b23ab17d1
--- /dev/null
+++ b/src/gui/windows/pincodedialog.cpp
@@ -0,0 +1,135 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2011-2018 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 "gui/windows/pincodedialog.h"
+
+#include "pincodemanager.h"
+
+#include "input/keyboardconfig.h"
+
+#include "gui/widgets/button.h"
+#include "gui/widgets/label.h"
+#include "gui/widgets/passwordfield.h"
+#include "gui/widgets/pincode.h"
+
+#include "utils/gettext.h"
+
+#include "gui/fonts/font.h"
+
+#include "debug.h"
+
+int PincodeDialog::instances = 0;
+
+PincodeDialog::PincodeDialog(const std::string &restrict title,
+ const std::string &restrict msg,
+ uint32_t seed,
+ Window *const parent) :
+ Window(title, Modal_true, parent, "pincode.xml"),
+ ActionListener(),
+ mPasswordField(new PasswordField(this, std::string())),
+ mPincode(new Pincode(this, mPasswordField)),
+ // TRANSLATORS: text dialog button
+ mOkButton(new Button(this, _("OK"), "OK", this)),
+ mEnabledKeyboard(keyboard.isEnabled())
+{
+ setStickyButtonLock(true);
+
+ keyboard.setEnabled(false);
+
+ Label *const textLabel = new Label(this, msg);
+ // TRANSLATORS: text dialog button
+ Button *const cancelButton = new Button(this, _("Cancel"), "CANCEL", this);
+
+ place(0, 0, textLabel, 4, 1);
+ place(0, 1, mPincode, 4, 1);
+ place(0, 2, mPasswordField, 4, 1);
+ place(2, 3, mOkButton, 1, 1);
+ place(3, 3, cancelButton, 1, 1);
+
+ mPasswordField->setEnabled(false);
+ mPasswordField->setActionEventId("pincode");
+ mPasswordField->addActionListener(this);
+
+ mPincode->shuffle(seed);
+ int width = getFont()->getWidth(title);
+ if (width < textLabel->getWidth())
+ width = textLabel->getWidth();
+ reflowLayout(CAST_S32(width + 20), 0);
+ updateButtons();
+}
+
+void PincodeDialog::postInit()
+{
+ Window::postInit();
+ if (getParent() != nullptr)
+ {
+ setLocationRelativeTo(getParent());
+ getParent()->moveToTop(this);
+ }
+ setVisible(Visible_true);
+ requestModalFocus();
+ mPincode->requestFocus();
+
+ instances++;
+}
+
+PincodeDialog::~PincodeDialog()
+{
+ instances--;
+ pincodeManager.clearDialog(this);
+}
+
+void PincodeDialog::action(const ActionEvent &event)
+{
+ const std::string &eventId = event.getId();
+ if (eventId == "pincode")
+ {
+ updateButtons();
+ return;
+ }
+ if (eventId == "CANCEL")
+ setActionEventId("~" + getActionEventId());
+
+ distributeActionEvent();
+ close();
+}
+
+const std::string &PincodeDialog::getMsg() const
+{
+ return mPasswordField->getText();
+}
+
+void PincodeDialog::close()
+{
+ keyboard.setEnabled(mEnabledKeyboard);
+ scheduleDelete();
+}
+
+void PincodeDialog::updateButtons()
+{
+ if (mPasswordField->getText().size() == 4)
+ {
+ mOkButton->setEnabled(true);
+ }
+ else
+ {
+ mOkButton->setEnabled(false);
+ }
+}