diff options
Diffstat (limited to 'engines/sci/gui/gui_gfx.h')
-rw-r--r-- | engines/sci/gui/gui_gfx.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/engines/sci/gui/gui_gfx.h b/engines/sci/gui/gui_gfx.h index 6ddd6bd55e..26261aab75 100644 --- a/engines/sci/gui/gui_gfx.h +++ b/engines/sci/gui/gui_gfx.h @@ -92,13 +92,9 @@ public: void RestoreBits(GuiMemoryHandle memoryHandle); void drawLine(int16 left, int16 top, int16 right, int16 bottom, byte color, byte prio, byte control); - void Draw_Box(Common::Rect box, byte color, byte prio, byte control); - void Draw_TexturedBox(Common::Rect box, byte color, byte prio, byte control, byte texture); - void Draw_Circle(Common::Rect box, byte size, byte color, byte prio, byte control); - void Draw_TexturedCircle(Common::Rect box, byte size, byte color, byte prio, byte control, byte texture); void Draw_Pattern(int16 x, int16 y, byte pic_color, byte pic_priority, byte pic_control, byte code, byte texture); void Draw_String(const char *text); - void Pic_Fill(int16 x, int16 y, byte color, byte prio, byte control); + void FloodFill(int16 x, int16 y, byte color, byte prio, byte control); void drawPicture(GuiResourceId pictureId, int16 animationNr, bool mirroredFlag, bool addToFlag, GuiResourceId paletteId); void drawCel(GuiResourceId viewId, GuiViewLoopNo loopNo, GuiViewCelNo celNo, uint16 leftPos, uint16 topPos, byte priority, uint16 paletteNo); @@ -124,6 +120,11 @@ private: void DrawText(const char *str, int16 from, int16 len, GuiResourceId orgFontId, int16 orgPenColor); void ShowText(const char *str, int16 from, int16 len, GuiResourceId orgFontId, int16 orgPenColor); + void Draw_Box(Common::Rect box, byte color, byte prio, byte control); + void Draw_TexturedBox(Common::Rect box, byte color, byte prio, byte control, byte texture); + void Draw_Circle(Common::Rect box, byte size, byte color, byte prio, byte control); + void Draw_TexturedCircle(Common::Rect box, byte size, byte color, byte prio, byte control, byte texture); + EngineState *_s; SciGuiScreen *_screen; SciGuiPalette *_palette; |