aboutsummaryrefslogtreecommitdiff
path: root/engines/wage/gui.h
diff options
context:
space:
mode:
authorEugene Sandulenko2015-12-26 13:54:20 +0100
committerEugene Sandulenko2015-12-27 15:41:03 +0100
commitcd063ec0e8e3870f1d2386bd138010b370c79a85 (patch)
treede76a1fcd0eb7ca521973dc90f5ef14338096379 /engines/wage/gui.h
parent069735d0b7ab1d182c21100521ebc4691da34ceb (diff)
downloadscummvm-rg350-cd063ec0e8e3870f1d2386bd138010b370c79a85.tar.gz
scummvm-rg350-cd063ec0e8e3870f1d2386bd138010b370c79a85.tar.bz2
scummvm-rg350-cd063ec0e8e3870f1d2386bd138010b370c79a85.zip
WAGE: Further work on border drawing
Diffstat (limited to 'engines/wage/gui.h')
-rw-r--r--engines/wage/gui.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/wage/gui.h b/engines/wage/gui.h
index 0e5be4fb8f..0410686d3f 100644
--- a/engines/wage/gui.h
+++ b/engines/wage/gui.h
@@ -58,10 +58,12 @@ public:
Gui();
~Gui();
- void paintBorder(Graphics::Surface *g, int x, int y, int width, int height);
+ void paintBorder(Graphics::Surface *g, int x, int y, int width, int height,
+ bool active, bool scrollable, bool closeable, bool closeBoxPressed);
private:
void drawBox(Graphics::Surface *g, int x, int y, int w, int h);
+ void fillRect(Graphics::Surface *g, int x, int y, int w, int h);
};