aboutsummaryrefslogtreecommitdiff
path: root/graphics/font.h
diff options
context:
space:
mode:
authorMax Horn2005-01-06 19:09:34 +0000
committerMax Horn2005-01-06 19:09:34 +0000
commit4fae197c67b8cecf5a674c710530c44f5cef814e (patch)
treed9b403db62fe8864c8aab2a026466eb16d64d391 /graphics/font.h
parent5d88c3954968b8eccb86363055bda55300ac2586 (diff)
downloadscummvm-rg350-4fae197c67b8cecf5a674c710530c44f5cef814e.tar.gz
scummvm-rg350-4fae197c67b8cecf5a674c710530c44f5cef814e.tar.bz2
scummvm-rg350-4fae197c67b8cecf5a674c710530c44f5cef814e.zip
Patch #1092994 (Selfscaling GUI)
svn-id: r16455
Diffstat (limited to 'graphics/font.h')
-rw-r--r--graphics/font.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/graphics/font.h b/graphics/font.h
index 3a4c0df6c5..73f3fd0420 100644
--- a/graphics/font.h
+++ b/graphics/font.h
@@ -35,7 +35,7 @@ enum TextAlignment {
/**
* Instances of this class represent a distinct font, with a built-in renderer.
- * @todo Maybe move the high-level methods (drawString etc.) to a separate
+ * @todo Maybe move the high-level methods (drawString etc.) to a separate
* FontRenderer class? That way, we could have different variants... ?
* @todo Add more parameters to drawString, or additional similar methods,
* featuring abilities like
@@ -52,9 +52,9 @@ public:
virtual int getMaxCharWidth() const = 0;
virtual int getCharWidth(byte chr) const = 0;
- virtual void drawChar(const Surface *dst, byte chr, int x, int y, uint32 color) const = 0;
+ virtual void drawChar(const Surface *dst, byte chr, int x, int y, uint32 color, bool scale = false) const = 0;
- void drawString(const Surface *dst, const Common::String &str, int x, int y, int w, uint32 color, TextAlignment align = kTextAlignLeft, int deltax = 0, bool useEllipsis = true) const;
+ void drawString(const Surface *dst, const Common::String &str, int x, int y, int w, uint32 color, TextAlignment align = kTextAlignLeft, int deltax = 0, bool useEllipsis = true, bool scale = false) const;
int getStringWidth(const Common::String &str) const;
};
@@ -65,7 +65,7 @@ public:
virtual int getMaxCharWidth() const { return 8; };
virtual int getCharWidth(byte chr) const;
- virtual void drawChar(const Surface *dst, byte chr, int x, int y, uint32 color) const;
+ virtual void drawChar(const Surface *dst, byte chr, int x, int y, uint32 color, bool scale) const;
};
extern const ScummFont g_scummfont;
@@ -96,12 +96,12 @@ protected:
public:
NewFont(const FontDesc &d) : desc(d) {}
-
+
virtual int getFontHeight() const { return desc.height; }
virtual int getMaxCharWidth() const { return desc.maxwidth; };
virtual int getCharWidth(byte chr) const;
- virtual void drawChar(const Surface *dst, byte chr, int x, int y, uint32 color) const;
+ virtual void drawChar(const Surface *dst, byte chr, int x, int y, uint32 color, bool scale) const;
};
extern const NewFont g_sysfont;