From e2ae1d2acff8f10d0a6020c8ee7433027f097eaf Mon Sep 17 00:00:00 2001 From: Neil Date: Tue, 3 Sep 2013 19:29:12 +1000 Subject: Documentation for GetStyleFromSubStyle. --- doc/ScintillaDoc.html | 7 ++++++- doc/ScintillaHistory.html | 13 +++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index bd5fc286a..5b3ca0717 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -82,7 +82,7 @@

Scintilla Documentation

-

Last edited 22/August/2013 NH

+

Last edited 3 September 2013 NH

There is an overview of the internal design of Scintilla.
@@ -5930,6 +5930,7 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){ SCI_FREESUBSTYLES
SCI_GETSUBSTYLESSTART(int styleBase)
SCI_GETSUBSTYLESLENGTH(int styleBase)
+ SCI_GETSTYLEFROMSUBSTYLE(int subStyle)
SCI_SETIDENTIFIERS(int style, const char *identifiers)
@@ -6105,6 +6106,9 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){ SCI_GETSUBSTYLESLENGTH(int styleBase)
Return the start and length of the substyles allocated for a base style.

+

SCI_GETSTYLEFROMSUBSTYLE(int subStyle)
+ Returns the base style of a substyle.

+

SCI_SETIDENTIFIERS(int style, const char *identifiers)
Similar to SCI_SETKEYWORDS but for substyles.

@@ -6237,6 +6241,7 @@ To allow lexers to report which line ends they support, and to support substyles         virtual int SCI_METHOD AllocateSubStyles(int styleBase, int numberStyles) = 0;
        virtual int SCI_METHOD SubStylesStart(int styleBase) = 0;
        virtual int SCI_METHOD SubStylesLength(int styleBase) = 0;
+        virtual int SCI_METHOD StyleFromSubStyle(int subStyle) = 0;
        virtual void SCI_METHOD FreeSubStyles() = 0;
        virtual void SCI_METHOD SetIdentifiers(int style, const char *identifiers) = 0;
        virtual int SCI_METHOD DistanceToSecondaryStyles() = 0;
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index fa6ca1692..73f91ea5a 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -441,6 +441,19 @@ Icons Copyright(C) 1998 by Dean S. Jones
+

+ Release 3.3.6 +

+

Release 3.3.5

-- cgit v1.2.3