aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Style.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2004-03-29 12:43:42 +0000
committernyamatongwe <devnull@localhost>2004-03-29 12:43:42 +0000
commit9c68461190bd8a25e841b2fc715da96d3143096a (patch)
tree8933c762f7672c3cad39df08ec4da39ff8add3c4 /src/Style.h
parenta86542284db36d95dfe424b7a181e6a85b1859c8 (diff)
downloadscintilla-mirror-9c68461190bd8a25e841b2fc715da96d3143096a.tar.gz
Patch from Robin Dunn to pass an extra flag down to
font rendering to allow a platform-specific tweak.
Diffstat (limited to 'src/Style.h')
-rw-r--r--src/Style.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Style.h b/src/Style.h
index 6ee930b6b..c0f7eca26 100644
--- a/src/Style.h
+++ b/src/Style.h
@@ -44,12 +44,12 @@ public:
void Clear(ColourDesired fore_, ColourDesired back_,
int size_,
const char *fontName_, int characterSet_,
- bool bold_, bool italic_, bool eolFilled_,
- bool underline_, ecaseForced caseForce_,
+ bool bold_, bool italic_, bool eolFilled_,
+ bool underline_, ecaseForced caseForce_,
bool visible_, bool changeable_, bool hotspot_);
void ClearTo(const Style &source);
bool EquivalentFontTo(const Style *other) const;
- void Realise(Surface &surface, int zoomLevel, Style *defaultStyle = 0);
+ void Realise(Surface &surface, int zoomLevel, Style *defaultStyle = 0, bool extraFontFlag = false);
bool IsProtected() const { return !(changeable && visible);};
};