summaryrefslogtreecommitdiff
path: root/src/gui/charcreatedialog.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-04-22 18:45:55 +0300
committerAndrei Karas <akaras@inbox.ru>2012-04-22 18:45:55 +0300
commit9128a4b2466259956a56fbc953e1be050faad319 (patch)
tree3cbc3d2d1c059004c2ae7aabcdf7fc5c9e62ddcd /src/gui/charcreatedialog.cpp
parentd32d2c9b6555201aeda94e657357803f2f9a9a70 (diff)
downloadplus-9128a4b2466259956a56fbc953e1be050faad319.tar.gz
plus-9128a4b2466259956a56fbc953e1be050faad319.tar.bz2
plus-9128a4b2466259956a56fbc953e1be050faad319.tar.xz
plus-9128a4b2466259956a56fbc953e1be050faad319.zip
Improve keyboard handling in create character dialog.
Diffstat (limited to 'src/gui/charcreatedialog.cpp')
-rw-r--r--src/gui/charcreatedialog.cpp20
1 files changed, 20 insertions, 0 deletions
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*>(&keyEvent)->getActionId();
+ switch (actionId)
+ {
+ case Input::KEY_GUI_CANCEL:
+ keyEvent.consume();
+ action(gcn::ActionEvent(mCancelButton,
+ mCancelButton->getActionEventId()));
+ break;
+
+ default:
+ break;
+ }
+}