summaryrefslogtreecommitdiff
path: root/src/gui/npcdialog.cpp
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2009-05-13 10:57:05 -0600
committerJared Adams <jaxad0127@gmail.com>2009-05-13 10:57:05 -0600
commit7cddbca0dcfff234b6c6f124cb91840279c36118 (patch)
treecce25bc9e93c0bb9bd5b41185d1b32e776f4c2d3 /src/gui/npcdialog.cpp
parentd401dcb26695bddec8c39edc8151dbe309378519 (diff)
downloadmana-client-7cddbca0dcfff234b6c6f124cb91840279c36118.tar.gz
mana-client-7cddbca0dcfff234b6c6f124cb91840279c36118.tar.bz2
mana-client-7cddbca0dcfff234b6c6f124cb91840279c36118.tar.xz
mana-client-7cddbca0dcfff234b6c6f124cb91840279c36118.zip
Allow more control of NpcDialog using the keyboard
The move up and move down keys will now let you navigate the list mode and change the value on the integer mode.
Diffstat (limited to 'src/gui/npcdialog.cpp')
-rw-r--r--src/gui/npcdialog.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/gui/npcdialog.cpp b/src/gui/npcdialog.cpp
index eeb76b88..3fa86b28 100644
--- a/src/gui/npcdialog.cpp
+++ b/src/gui/npcdialog.cpp
@@ -281,6 +281,22 @@ void NpcDialog::integerRequest(int defaultValue, int min, int max)
buildLayout();
}
+void NpcDialog::move(int amount)
+{
+ if (mActionState != NPC_ACTION_INPUT)
+ return;
+
+ switch (mInputState)
+ {
+ case NPC_INPUT_INTEGER:
+ mIntField->setValue(mIntField->getValue() + amount);
+ break;
+ case NPC_INPUT_LIST:
+ mItemList->setSelected(mItemList->getSelected() - amount);
+ break;
+ }
+}
+
void NpcDialog::widgetResized(const gcn::Event &event)
{
Window::widgetResized(event);