aboutsummaryrefslogtreecommitdiff
path: root/engines/wage/gui.h
diff options
context:
space:
mode:
authorEugene Sandulenko2016-01-01 01:43:59 +0100
committerEugene Sandulenko2016-01-01 01:46:27 +0100
commitac87bc9671822ce26e9dd4a5f77b23de83a71b63 (patch)
tree1767759fc3e9e192850260c13caae6dc703cef47 /engines/wage/gui.h
parentc001c30547af9197f07227de70a85f09a8c8920a (diff)
downloadscummvm-rg350-ac87bc9671822ce26e9dd4a5f77b23de83a71b63.tar.gz
scummvm-rg350-ac87bc9671822ce26e9dd4a5f77b23de83a71b63.tar.bz2
scummvm-rg350-ac87bc9671822ce26e9dd4a5f77b23de83a71b63.zip
WAGE: Implement cursor drawing and handling
Diffstat (limited to 'engines/wage/gui.h')
-rw-r--r--engines/wage/gui.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/wage/gui.h b/engines/wage/gui.h
index 91acfb3635..216a63c6ae 100644
--- a/engines/wage/gui.h
+++ b/engines/wage/gui.h
@@ -67,6 +67,7 @@ public:
void draw();
void setScene(Scene *scene);
void appendText(Common::String &str);
+ void mouseMove(int x, int y);
private:
void paintBorder(Graphics::Surface *g, int x, int y, int width, int height, WindowType windowType);
@@ -86,6 +87,9 @@ private:
uint _scrollPos;
bool _builtInFonts;
+
+ Common::Rect _consoleTextArea;
+ bool _cursorIsArrow;
};
} // End of namespace Wage