diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ScintillaDoc.html | 9 | ||||
-rw-r--r-- | doc/ScintillaHistory.html | 5 |
2 files changed, 11 insertions, 3 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 7e048c273..9fbb50350 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -182,9 +182,12 @@ Scintilla's facilities.</p> <p>There is a more type-safe binding of this API that can be used from C++. - It is implemented in the ScintillaTypes.h, ScintillaMessages.h, and ScintillaStructures.h headers. - SciTE contains (in src) a ScintillaCall module that can help further and will, in the future, be - moved into Scintilla. + It is implemented in the ScintillaTypes.h, ScintillaMessages.h, ScintillaStructures.h, and ScintillaCall.h headers + and call/ScintillaCall.cxx. + The ScintillaTypes.h, ScintillaMessages.h, and ScintillaStructures.h headers can be used without ScintillaCall + but ScintillaCall makes it easier to use the other headers by wrapping the messages in methods + which also avoids much type casting. + ScintillaCall throws Scintilla::Failure exceptions when a call fails. </p> <p>In the descriptions that follow, the messages are described as function calls with zero, one diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index 84a29578e..0ef408ce8 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -587,6 +587,11 @@ improve performance. </li> <li> + Add more type-safe wrappers to the API. + These are defined in include/ScintillaCall.h and implemented in call/ScintillaCall.cxx. + ScintillaCall throws Scintilla::Failure exceptions when a call fails. + </li> + <li> Add APIs for setting appearance (traditional blob or plain text) and colour of representations and support setting a representation for the "\r\n" line end sequence. </li> |