aboutsummaryrefslogtreecommitdiff
path: root/graphics/macgui/mactext.h
diff options
context:
space:
mode:
authorEugene Sandulenko2016-12-16 19:37:33 +0100
committerEugene Sandulenko2016-12-16 19:47:19 +0100
commitffea222f5bfda8383cb52480b48998c9d0093911 (patch)
treed86a9f25e35b90be622120f499855faf5c147234 /graphics/macgui/mactext.h
parent5f46bbff728025aedc7d4d6c83b23c3a59912e96 (diff)
downloadscummvm-rg350-ffea222f5bfda8383cb52480b48998c9d0093911.tar.gz
scummvm-rg350-ffea222f5bfda8383cb52480b48998c9d0093911.tar.bz2
scummvm-rg350-ffea222f5bfda8383cb52480b48998c9d0093911.zip
GRAPHICS: Added stubs for pasting text to MacText
Diffstat (limited to 'graphics/macgui/mactext.h')
-rw-r--r--graphics/macgui/mactext.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/graphics/macgui/mactext.h b/graphics/macgui/mactext.h
index 4add3948fa..65e93ca5c3 100644
--- a/graphics/macgui/mactext.h
+++ b/graphics/macgui/mactext.h
@@ -35,12 +35,14 @@ public:
void setInterLinear(int interLinear) { _interLinear = interLinear; }
void draw(ManagedSurface *g, int x, int y, int w, int h, int xoff, int yoff);
+ void appendText(Common::String str);
private:
- void splitString();
+ void splitString(Common::String &s);
void render();
void calcMaxWidth();
+ void reallocSurface();
private:
Common::String _str;