summaryrefslogtreecommitdiff
path: root/src/gui/itemamount.h
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2009-05-07 23:16:16 -0600
committerJared Adams <jaxad0127@gmail.com>2009-05-07 23:16:16 -0600
commit7bcadd46d12b4c42b1f6e3038f79db7f8d8c6b5a (patch)
treeee1226bbf132de564f877a4967c57fd43b6f06f9 /src/gui/itemamount.h
parent02401cfae13ea9d2c836e707f21164729f8ee364 (diff)
downloadmana-client-7bcadd46d12b4c42b1f6e3038f79db7f8d8c6b5a.tar.gz
mana-client-7bcadd46d12b4c42b1f6e3038f79db7f8d8c6b5a.tar.bz2
mana-client-7bcadd46d12b4c42b1f6e3038f79db7f8d8c6b5a.tar.xz
mana-client-7bcadd46d12b4c42b1f6e3038f79db7f8d8c6b5a.zip
Fix updates in the ItemAmmountWindow
CHanging the IntTextField will now update the Slider.
Diffstat (limited to 'src/gui/itemamount.h')
-rw-r--r--src/gui/itemamount.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gui/itemamount.h b/src/gui/itemamount.h
index 1ae3f0d5..312b9fc3 100644
--- a/src/gui/itemamount.h
+++ b/src/gui/itemamount.h
@@ -24,6 +24,7 @@
#include "gui/widgets/window.h"
+#include <guichan/keylistener.hpp>
#include <guichan/actionlistener.hpp>
class IntTextField;
@@ -34,7 +35,8 @@ class Item;
*
* \ingroup Interface
*/
-class ItemAmountWindow : public Window, public gcn::ActionListener
+class ItemAmountWindow : public Window, public gcn::ActionListener,
+ public gcn::KeyListener
{
public:
enum Usage {
@@ -60,6 +62,8 @@ class ItemAmountWindow : public Window, public gcn::ActionListener
*/
void close();
+ void keyReleased(gcn::KeyEvent &keyEvent);
+
/**
* Creates the dialog, or bypass it if there aren't enough items.
*/