diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-04-14 01:07:23 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-04-14 01:07:23 +0300 |
commit | 035cc92ee2a435ff1d663e2037f543578dd2578a (patch) | |
tree | 084cc6998c99fd66100108428ea6bbb615af8ca7 /src/gui/widgets | |
parent | 8bb2cb1e077ded2837be80cb4efa75391317de42 (diff) | |
download | ManaVerse-035cc92ee2a435ff1d663e2037f543578dd2578a.tar.gz ManaVerse-035cc92ee2a435ff1d663e2037f543578dd2578a.tar.bz2 ManaVerse-035cc92ee2a435ff1d663e2037f543578dd2578a.tar.xz ManaVerse-035cc92ee2a435ff1d663e2037f543578dd2578a.zip |
Block enter key from pressing active button.
Diffstat (limited to 'src/gui/widgets')
-rw-r--r-- | src/gui/widgets/button.cpp | 23 | ||||
-rw-r--r-- | src/gui/widgets/button.h | 4 |
2 files changed, 27 insertions, 0 deletions
diff --git a/src/gui/widgets/button.cpp b/src/gui/widgets/button.cpp index c99f46149..9519c144f 100644 --- a/src/gui/widgets/button.cpp +++ b/src/gui/widgets/button.cpp @@ -448,3 +448,26 @@ void Button::setCaption(const std::string& caption) mCaption = caption; // adjustSize(); } + +void Button::keyPressed(gcn::KeyEvent& keyEvent) +{ + gcn::Key key = keyEvent.getKey(); + + if (key.getValue() == gcn::Key::SPACE) + { + mKeyPressed = true; + keyEvent.consume(); + } +} + +void Button::keyReleased(gcn::KeyEvent& keyEvent) +{ + gcn::Key key = keyEvent.getKey(); + + if (key.getValue() == gcn::Key::SPACE && mKeyPressed) + { + mKeyPressed = false; + distributeActionEvent(); + keyEvent.consume(); + } +} diff --git a/src/gui/widgets/button.h b/src/gui/widgets/button.h index 6585d9850..8e4cdd9e6 100644 --- a/src/gui/widgets/button.h +++ b/src/gui/widgets/button.h @@ -113,6 +113,10 @@ class Button : public gcn::Button, public gcn::WidgetListener void setCaption(const std::string& caption); + void keyPressed(gcn::KeyEvent &keyEvent); + + void keyReleased(gcn::KeyEvent &keyEvent); + private: void init(); |