aboutsummaryrefslogtreecommitdiff
path: root/engines/gargoyle/windows.h
diff options
context:
space:
mode:
authorPaul Gilbert2018-10-19 19:42:56 -0700
committerPaul Gilbert2018-12-08 19:05:59 -0800
commit9e804bf4848d926c32bc3f1fbb5f0ee663fecaa1 (patch)
tree2e6b1645de9a947c59ce77c36fb93e7c1d51822d /engines/gargoyle/windows.h
parentb9bafba382a9756cbedbb2008086208e24834139 (diff)
downloadscummvm-rg350-9e804bf4848d926c32bc3f1fbb5f0ee663fecaa1.tar.gz
scummvm-rg350-9e804bf4848d926c32bc3f1fbb5f0ee663fecaa1.tar.bz2
scummvm-rg350-9e804bf4848d926c32bc3f1fbb5f0ee663fecaa1.zip
GLK: Added glk_set_window
Diffstat (limited to 'engines/gargoyle/windows.h')
-rw-r--r--engines/gargoyle/windows.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/gargoyle/windows.h b/engines/gargoyle/windows.h
index 64adf81450..02fa7aab35 100644
--- a/engines/gargoyle/windows.h
+++ b/engines/gargoyle/windows.h
@@ -54,6 +54,7 @@ private:
bool _moreFocus;
bool _claimSelect;
WindowMask *_mask;
+ Common::WriteStream *_currentStr;
private:
/**
* Create a new window
@@ -111,6 +112,11 @@ public:
Window *getRoot() const { return _rootWin; }
void clearSelection();
+
+ /**
+ * Set the current output stream
+ */
+ void setCurrent(Common::WriteStream *stream);
};
/**