aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.iface
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2017-06-22 17:43:56 +1000
committerNeil <nyamatongwe@gmail.com>2017-06-22 17:43:56 +1000
commit3a993f0a5e97435874e06d5496085c4cb7a0d4cb (patch)
treef1bfbd0aa566e23e67d9340f5fde763ba3621278 /include/Scintilla.iface
parent6c72bb1aba1b8b0cea4bd5360f94847316166a92 (diff)
downloadscintilla-mirror-3a993f0a5e97435874e06d5496085c4cb7a0d4cb.tar.gz
Backport: Add style metadata methods with null implementations.
Backport based on changesets 6345:faecbd0078e5 and 6346:72bd27f81477.
Diffstat (limited to 'include/Scintilla.iface')
-rw-r--r--include/Scintilla.iface15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index 4a2d566a6..1c3b83f3b 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -2709,6 +2709,21 @@ get int DistanceToSecondaryStyles=4025(,)
# Result is NUL-terminated.
get int GetSubStyleBases=4026(, stringresult styles)
+# Retrieve the number of named styles for the lexer.
+get int GetNamedStyles=4029(,)
+
+# Retrieve the name of a style.
+# Result is NUL-terminated.
+fun int NameOfStyle=4030(int style, stringresult names)
+
+# Retrieve a ' ' separated list of style tags like "literal quoted string".
+# Result is NUL-terminated.
+fun int TagsOfStyle=4031(int style, stringresult names)
+
+# Retrieve a description of a style.
+# Result is NUL-terminated.
+fun int DescriptionOfStyle=4032(int style, stringresult names)
+
# Notifications
# Type of modification and the action which caused the modification.
# These are defined as a bit mask to make it easy to specify which notifications are wanted.