aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/tattoo/tattoo_talk.h
diff options
context:
space:
mode:
authorPaul Gilbert2015-06-23 21:05:34 -0400
committerPaul Gilbert2015-06-23 21:05:34 -0400
commit8fb5c96a272fc15397eb95af3ec024bf8f286da9 (patch)
treefa3e66e2585bed800d76da463d9679321f62e813 /engines/sherlock/tattoo/tattoo_talk.h
parenta23d878934a0669c5539d6b3548d88e698d81f0a (diff)
downloadscummvm-rg350-8fb5c96a272fc15397eb95af3ec024bf8f286da9.tar.gz
scummvm-rg350-8fb5c96a272fc15397eb95af3ec024bf8f286da9.tar.bz2
scummvm-rg350-8fb5c96a272fc15397eb95af3ec024bf8f286da9.zip
SHERLOCK: RT: Beginnings of talk window widget class
Diffstat (limited to 'engines/sherlock/tattoo/tattoo_talk.h')
-rw-r--r--engines/sherlock/tattoo/tattoo_talk.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/engines/sherlock/tattoo/tattoo_talk.h b/engines/sherlock/tattoo/tattoo_talk.h
index 33eacd2db3..252518c462 100644
--- a/engines/sherlock/tattoo/tattoo_talk.h
+++ b/engines/sherlock/tattoo/tattoo_talk.h
@@ -30,6 +30,7 @@
#include "common/stream.h"
#include "common/stack.h"
#include "sherlock/talk.h"
+#include "sherlock/tattoo/widget_talk.h"
namespace Sherlock {
@@ -37,6 +38,8 @@ namespace Tattoo {
class TattooTalk : public Talk {
private:
+ WidgetTalk _talkWidget;
+
OpcodeReturn cmdSwitchSpeaker(const byte *&str);
OpcodeReturn cmdMouseOnOff(const byte *&str);
OpcodeReturn cmdGotoScene(const byte *&str);
@@ -77,8 +80,7 @@ private:
void drawTalk(const char *str);
/**
- * Figures out how many lines the available talk lines will take up, and opens a text window
- * of appropriate size
+ * Open the talk window
*/
void openTalkWindow();
protected: