diff options
| author | nyamatongwe <devnull@localhost> | 2000-05-15 14:19:52 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2000-05-15 14:19:52 +0000 |
| commit | e77cc3907af16f9393f745423e39540436d85444 (patch) | |
| tree | b5e3048d8416aefd2a461149fbb755f71fc49f39 /src/Style.h | |
| parent | bfd29c74a006b38b3c722145a94e4af05ebe9603 (diff) | |
| download | scintilla-mirror-e77cc3907af16f9393f745423e39540436d85444.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); |
