diff options
author | nyamatongwe <unknown> | 2000-05-15 14:19:52 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-05-15 14:19:52 +0000 |
commit | 02e0afd5a9d78f997df5e498550e5b2832ca5aa0 (patch) | |
tree | b5e3048d8416aefd2a461149fbb755f71fc49f39 /src/Style.h | |
parent | e149d7bf98c013bad08a5c7aeb0e652e83042ce2 (diff) | |
download | scintilla-mirror-02e0afd5a9d78f997df5e498550e5b2832ca5aa0.tar.gz |
Support for different character sets for each style.
Diffstat (limited to 'src/Style.h')
-rw-r--r-- | src/Style.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Style.h b/src/Style.h index a8a0a859a..dc643d08d 100644 --- a/src/Style.h +++ b/src/Style.h @@ -15,6 +15,7 @@ public: bool italic; int size; const char *fontName; + int characterSet; bool eolFilled; bool underline; @@ -32,7 +33,7 @@ public: Style &operator=(const Style &source); void Clear(Colour fore_, Colour back_, int size_, - const char *fontName_, + const char *fontName_, int characterSet_, bool bold_, bool italic_, bool eolFilled_, bool underline_); bool EquivalentFontTo(const Style *other) const; void Realise(Surface &surface, int zoomLevel, Style *defaultStyle=0); |