aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/window.h
diff options
context:
space:
mode:
authorNipun Garg2019-06-28 18:02:14 +0530
committerEugene Sandulenko2019-09-03 17:17:03 +0200
commit178bb473c1b891403972aef976901e0ddd252fba (patch)
treed73cec3b3fec03d217c43b9a4d6fc4a89b604fe5 /engines/hdb/window.h
parent48428a75b7d0061f183733cd5a386ef5b5718cee (diff)
downloadscummvm-rg350-178bb473c1b891403972aef976901e0ddd252fba.tar.gz
scummvm-rg350-178bb473c1b891403972aef976901e0ddd252fba.tar.bz2
scummvm-rg350-178bb473c1b891403972aef976901e0ddd252fba.zip
HDB: Add _textOutList functions
Diffstat (limited to 'engines/hdb/window.h')
-rw-r--r--engines/hdb/window.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/engines/hdb/window.h b/engines/hdb/window.h
index b8033702ba..b2d2a3eb4b 100644
--- a/engines/hdb/window.h
+++ b/engines/hdb/window.h
@@ -101,6 +101,14 @@ public:
return _invWinInfo.selection;
}
+ // TextOut functions
+ void textOut(const char *text, int x, int y, int timer);
+ void centerTextOut(const char *text, int y, int timer);
+ void drawTextOut();
+ int textOutActive() {
+ return (_textOutList.size());
+ }
+ void closeTextOut();
private:
DialogInfo _dialogInfo;