From 9caacac724fa8b83b1949389bdeeba1ecb7fec6e Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Sun, 30 Oct 2011 12:12:40 +0200 Subject: SCI: More work on kEditText --- engines/sci/graphics/controls32.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'engines/sci/graphics/controls32.h') diff --git a/engines/sci/graphics/controls32.h b/engines/sci/graphics/controls32.h index 9a153e7ad5..68dca59462 100644 --- a/engines/sci/graphics/controls32.h +++ b/engines/sci/graphics/controls32.h @@ -27,12 +27,14 @@ namespace Sci { class GfxCache; class GfxScreen; +class GfxText32; + /** * Controls class, handles drawing of controls in SCI32 (SCI2, SCI2.1, SCI3) games */ class GfxControls32 { public: - GfxControls32(SegManager *segMan, GfxCache *cache, GfxScreen *screen); + GfxControls32(SegManager *segMan, GfxCache *cache, GfxScreen *screen, GfxText32 *text); ~GfxControls32(); void kernelTexteditChange(reg_t controlObject); @@ -41,6 +43,7 @@ private: SegManager *_segMan; GfxCache *_cache; GfxScreen *_screen; + GfxText32 *_text; }; } // End of namespace Sci -- cgit v1.2.3