aboutsummaryrefslogtreecommitdiff
path: root/gui.h
diff options
context:
space:
mode:
authorJames Brown2002-07-04 15:48:17 +0000
committerJames Brown2002-07-04 15:48:17 +0000
commite346e6c28ca9a59b0f3992f5c4e9abc8f9421f00 (patch)
treeb71b1ad628a47002a684b72f20c21700ad6ef31d /gui.h
parente8d21d7b575b1db02ba1238f4107c56fd3adbabe (diff)
downloadscummvm-rg350-e346e6c28ca9a59b0f3992f5c4e9abc8f9421f00.tar.gz
scummvm-rg350-e346e6c28ca9a59b0f3992f5c4e9abc8f9421f00.tar.bz2
scummvm-rg350-e346e6c28ca9a59b0f3992f5c4e9abc8f9421f00.zip
Theres nothing to see here...
- Start of CMI support svn-id: r4459
Diffstat (limited to 'gui.h')
-rw-r--r--gui.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/gui.h b/gui.h
index 31ea339c9f..02cfdbf507 100644
--- a/gui.h
+++ b/gui.h
@@ -49,8 +49,7 @@ public:
protected:
Scumm *_s;
const GuiWidget *_widgets[4];
- int _return_to;
- int _curX, _curY;
+ int _return_to;
VirtScreen *_vs;
int _parentX, _parentY;
bool _active;
@@ -84,11 +83,13 @@ protected:
// Drawing
void draw(int start, int end);
void draw(int item) { draw(item,-1); }
- void drawWidget(const GuiWidget *w);
- void moveto(int x, int y);
- void lineto(int x, int y);
- void hline(int x, int y, int x2);
- void vline(int x, int y, int y2);
+ void drawWidget(const GuiWidget *w);
+
+ void line(int x, int y, int x2, int y2, byte color);
+ void box(int x, int y, int width, int height);
+
+ //void hline(int x, int y, int x2, byte color);
+ //void vline(int x, int y, int y2, byte color);
void drawChar(const char str, int xx, int yy);
void drawString(const char *str, int x, int y, int w, byte color, bool center);
void widgetClear(const GuiWidget *w);