aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/ScintillaMessages.h
AgeCommit message (Collapse)AuthorFilesLines
2021-06-17Add SciFnDirectStatus, a direct access function which also returns status so canNeil1-0/+1
improve performance for client code that called SCI_GETSTATUS after every API to check for failure.
2021-06-10Rename SCI_PASTERECTANGULAR to SCI_REPLACERECTANGULAR as it is inserting textNeil1-1/+1
provided as an argument instead of from the system clipboard.
2021-06-09Add SCI_PASTERECTANGULAR to insert text like a rectangular paste.Mitchell Foral1-0/+1
2021-06-03Add APIs for setting appearance (traditional blob or plain text) and colour ofNeil1-0/+5
representations and support setting a representation for the "\r\n" line end sequence.
2021-05-24Define C++ version of the Scintilla API in ScintillaTypes.h, ScintillaMessages.hNeil1-0/+778
and ScintillaStructures.h using scoped enumerations. Use these headers instead of Scintilla.h internally. External definitions go in the Scintilla namespace and internal definitio0ns in Scintilla::Internal.