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 /include/Scintilla.iface | |
| parent | e149d7bf98c013bad08a5c7aeb0e652e83042ce2 (diff) | |
| download | scintilla-mirror-02e0afd5a9d78f997df5e498550e5b2832ca5aa0.tar.gz | |
Support for different character sets for each style.
Diffstat (limited to 'include/Scintilla.iface')
| -rw-r--r-- | include/Scintilla.iface | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index af4a9583b..5187070c5 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -280,6 +280,9 @@ fun void StyleResetDefault=2058(,) # Set a style to be underlined or not. set void StyleSetUnderline=2059(int style, bool underline) +# Set the character set of the font in a style. +set void StyleSetCharacterSet=2066(int style, int characterSet) + # Set the foreground colour of the selection and whether to use this setting. fun void SetSelFore=2067(bool useSetting, colour fore) @@ -701,6 +704,11 @@ set void SetZoom=2373(int zoom,) # Retrieve the zoom level. get int GetZoom=2374(,) +# Extend life of document. +fun void AddRefDoc=2375(, int doc) +# Release a reference to the document, deleting document if it fades to black. +fun void ReleaseDoc=2376(, int doc) + # Set the focus to this Scintilla widget. fun void GrabFocus=2400(,) |
