aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/controls32.h
diff options
context:
space:
mode:
authorFilippos Karapetis2011-10-30 12:12:40 +0200
committerFilippos Karapetis2011-10-30 21:42:33 +0200
commit9caacac724fa8b83b1949389bdeeba1ecb7fec6e (patch)
tree8d2b9aa48106f267734f4b92cbc20a7f6811328f /engines/sci/graphics/controls32.h
parentacebd6d0be60c25c4e7b157f3dc04afe5fcbb535 (diff)
downloadscummvm-rg350-9caacac724fa8b83b1949389bdeeba1ecb7fec6e.tar.gz
scummvm-rg350-9caacac724fa8b83b1949389bdeeba1ecb7fec6e.tar.bz2
scummvm-rg350-9caacac724fa8b83b1949389bdeeba1ecb7fec6e.zip
SCI: More work on kEditText
Diffstat (limited to 'engines/sci/graphics/controls32.h')
-rw-r--r--engines/sci/graphics/controls32.h5
1 files changed, 4 insertions, 1 deletions
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