aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/dialogs.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/mads/dialogs.h')
-rw-r--r--engines/mads/dialogs.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/engines/mads/dialogs.h b/engines/mads/dialogs.h
index 163d66ed51..0945ad9436 100644
--- a/engines/mads/dialogs.h
+++ b/engines/mads/dialogs.h
@@ -126,6 +126,11 @@ protected:
* Adds one or more lines, word wrapping the passed text
*/
void wordWrap(const Common::String &line);
+
+ /**
+ * Adds an input area following previously added text
+ */
+ void addInput();
public:
/**
* Constructor
@@ -146,6 +151,11 @@ public:
* Draw the dialog
*/
virtual void draw();
+
+ /**
+ * Draw the dialog along with any input box
+ */
+ void drawWithInput();
};
class MessageDialog: protected TextDialog {