From cac2f69f221ca31545681968fc746dc590f060bd Mon Sep 17 00:00:00 2001 From: Neil Date: Thu, 22 Jun 2017 17:43:56 +1000 Subject: Add style metadata methods with null implementations. --- include/Scintilla.iface | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'include/Scintilla.iface') 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. -- cgit v1.2.3