From 9128a4b2466259956a56fbc953e1be050faad319 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 22 Apr 2012 18:45:55 +0300 Subject: Improve keyboard handling in create character dialog. --- src/gui/charcreatedialog.cpp | 20 ++++++++++++++++++++ src/gui/charcreatedialog.h | 7 ++++++- 2 files changed, 26 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/gui/charcreatedialog.cpp b/src/gui/charcreatedialog.cpp index 864ddf0b6..db6916a62 100644 --- a/src/gui/charcreatedialog.cpp +++ b/src/gui/charcreatedialog.cpp @@ -24,6 +24,8 @@ #include "client.h" #include "game.h" +#include "keydata.h" +#include "keyevent.h" #include "localplayer.h" #include "main.h" #include "units.h" @@ -230,6 +232,8 @@ CharCreateDialog::CharCreateDialog(CharSelectDialog *parent, int slot): updateRace(); updatePlayer(); + + addKeyListener(this); } CharCreateDialog::~CharCreateDialog() @@ -548,3 +552,19 @@ void CharCreateDialog::updatePlayer() mPlayer->setAction(actions[mAction]); } } + +void CharCreateDialog::keyPressed(gcn::KeyEvent &keyEvent) +{ + int actionId = static_cast(&keyEvent)->getActionId(); + switch (actionId) + { + case Input::KEY_GUI_CANCEL: + keyEvent.consume(); + action(gcn::ActionEvent(mCancelButton, + mCancelButton->getActionEventId())); + break; + + default: + break; + } +} diff --git a/src/gui/charcreatedialog.h b/src/gui/charcreatedialog.h index 15fdf7466..408297adc 100644 --- a/src/gui/charcreatedialog.h +++ b/src/gui/charcreatedialog.h @@ -31,6 +31,7 @@ #include "gui/widgets/window.h" #include +#include class LocalPlayer; class PlayerBox; @@ -41,7 +42,9 @@ class TextField; * * \ingroup Interface */ -class CharCreateDialog : public Window, public gcn::ActionListener +class CharCreateDialog : public Window, + public gcn::ActionListener, + public gcn::KeyListener { public: /** @@ -71,6 +74,8 @@ class CharCreateDialog : public Window, public gcn::ActionListener void updatePlayer(); + void keyPressed(gcn::KeyEvent &keyEvent); + private: int getDistributedPoints() const; -- cgit v1.2.3-60-g2f50