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
commitcac2f69f221ca31545681968fc746dc590f060bd (patch)
tree3abb1f938fe6415544e1eac1c27d9b10277c3082 /include/Scintilla.iface
parente7375474b0697983b727a1efd32eb8b6bbbbd00d (diff)
downloadscintilla-mirror-cac2f69f221ca31545681968fc746dc590f060bd.tar.gz
Add style metadata methods with null implementations.
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 8406fa6fc..60c6b993b 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -2702,6 +2702,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.