aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/dialogs_input.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/xeen/dialogs_input.h')
-rw-r--r--engines/xeen/dialogs_input.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/xeen/dialogs_input.h b/engines/xeen/dialogs_input.h
index 2f30b73973..e824d17f57 100644
--- a/engines/xeen/dialogs_input.h
+++ b/engines/xeen/dialogs_input.h
@@ -31,11 +31,17 @@ namespace Xeen {
class Input : public ButtonContainer {
private:
+ /**
+ * Draws the cursor and waits until the user presses a key
+ */
Common::KeyCode doCursor(const Common::String &msg);
protected:
XeenEngine *_vm;
Window *_window;
+ /**
+ * Allows the user to enter a string
+ */
int getString(Common::String &line, uint maxLen, int maxWidth, bool isNumeric);
Input(XeenEngine *vm, Window *window) : _vm(vm), _window(window) {}