aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.iface
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2000-05-15 14:19:52 +0000
committernyamatongwe <devnull@localhost>2000-05-15 14:19:52 +0000
commite77cc3907af16f9393f745423e39540436d85444 (patch)
treeb5e3048d8416aefd2a461149fbb755f71fc49f39 /include/Scintilla.iface
parentbfd29c74a006b38b3c722145a94e4af05ebe9603 (diff)
downloadscintilla-mirror-e77cc3907af16f9393f745423e39540436d85444.tar.gz
Support for different character sets for each style.
Diffstat (limited to 'include/Scintilla.iface')
-rw-r--r--include/Scintilla.iface8
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(,)