aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/frotz/windows.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/glk/frotz/windows.h')
-rw-r--r--engines/glk/frotz/windows.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/engines/glk/frotz/windows.h b/engines/glk/frotz/windows.h
index 9d9af2aa00..0f2bdff772 100644
--- a/engines/glk/frotz/windows.h
+++ b/engines/glk/frotz/windows.h
@@ -77,6 +77,7 @@ class Window {
};
private:
Windows *_windows;
+ int _index;
winid_t _win;
uint _properties[TRUE_BG_COLOR + 1];
private:
@@ -99,6 +100,11 @@ private:
* Updates the local window properties based on an attached Glk window
*/
void update();
+
+ /**
+ * Creates a new Glk window to attach to the window
+ */
+ void createGlkWindow();
public:
/**
* Constructor
@@ -162,6 +168,11 @@ public:
* Update colors for the window
*/
void updateColors(uint fore, uint back);
+
+ /**
+ * Set the textstyle
+ */
+ void setStyle(uint style);
};
/**