diff options
author | Ira Rice <irarice@gmail.com> | 2009-02-04 22:13:12 -0700 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-02-04 22:13:12 -0700 |
commit | b0a8b8607962081e87716ab0dfbca2439953f420 (patch) | |
tree | 0cd03f7c948c5d5647351f78ed9b3a33628c8b72 /src/gui/npcintegerdialog.cpp | |
parent | 373f1aca8bb651332fec7031853d9a685ebc896e (diff) | |
download | mana-b0a8b8607962081e87716ab0dfbca2439953f420.tar.gz mana-b0a8b8607962081e87716ab0dfbca2439953f420.tar.bz2 mana-b0a8b8607962081e87716ab0dfbca2439953f420.tar.xz mana-b0a8b8607962081e87716ab0dfbca2439953f420.zip |
Modified the NPC string and integer classes to automatically take focus
to the input fields. Now the only NPC dialog which isn't completely
navigatable by the keyboard alone is the NPC list dialog (seems to
have regressed slightly recently).
Signed-off-by: Ira Rice <irarice@gmail.com>
Diffstat (limited to 'src/gui/npcintegerdialog.cpp')
-rw-r--r-- | src/gui/npcintegerdialog.cpp | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/src/gui/npcintegerdialog.cpp b/src/gui/npcintegerdialog.cpp index 4444e04b..c58fc460 100644 --- a/src/gui/npcintegerdialog.cpp +++ b/src/gui/npcintegerdialog.cpp @@ -32,9 +32,10 @@ NpcIntegerDialog::NpcIntegerDialog(): Window(_("NPC Number Request")) { + mValueField = new IntTextField(); + mDecButton = new Button("-", "decvalue", this); mIncButton = new Button("+", "incvalue", this); - mValueField = new IntTextField(); okButton = new Button(_("OK"), "ok", this); cancelButton = new Button(_("Cancel"), "cancel", this); resetButton = new Button(_("Reset"), "reset", this); @@ -56,9 +57,6 @@ NpcIntegerDialog::NpcIntegerDialog(): reflowLayout(175, 0); setLocationRelativeTo(getParent()); - - mValueField->setActionEventId("valuefield"); - mValueField->addKeyListener(this); } void NpcIntegerDialog::setRange(const int min, const int max) @@ -105,3 +103,13 @@ void NpcIntegerDialog::action(const gcn::ActionEvent &event) mValueField->reset(); } } + +bool NpcIntegerDialog::isInputFocused() +{ + return mValueField->isFocused(); +} + +void NpcIntegerDialog::requestFocus() +{ + mValueField->requestFocus(); +} |