From 75a65a855202ba0fb5e5af97edbd17c38862a7c5 Mon Sep 17 00:00:00 2001
From: Neil
SCI_SETEOLMODE(int eolMode)
+ SCI_SETEOLMODE(int eolMode)
SCI_GETEOLMODE
SCI_CONVERTEOLS(int eolMode)
SCI_SETVIEWEOL(bool visible)
@@ -2286,7 +2286,6 @@ struct Sci_TextToFind {
SCI_GETLINEENDTYPESALLOWED
SCI_GETLINEENDTYPESACTIVE
-
SCI_SETEOLMODE(int eolMode)
SCI_GETEOLMODE
@@ -2887,8 +2886,7 @@ struct Sci_TextToFind {
SCI_SETREPRESENTATION(const char *encodedCharacter, const char *representation)
SCI_GETREPRESENTATION(const char *encodedCharacter, char *representation)
SCI_CLEARREPRESENTATION(const char *encodedCharacter)
-
-
Any character, including those normally displayed as mnemonics may be represented by a + Any character, including those normally displayed as mnemonics may be represented by a string inverted in a rounded rectangle.
For example, the Ohm sign Ω U+2126 looks very similar to the Greek Omega character Ω U+03C9 so, @@ -2903,8 +2901,7 @@ struct Sci_TextToFind {
SCI_SETCONTROLCHARSYMBOL(int symbol)
SCI_GETCONTROLCHARSYMBOL
-
-
The mnemonics may be replaced by a nominated symbol with an ASCII code in the
+ The mnemonics may be replaced by a nominated symbol with an ASCII code in the
range 32 to 255. If you set a symbol value less than 32, all control characters are displayed
as mnemonics. The symbol you set is rendered in the font of the style set for the character.
You can read back the current symbol with the SCI_GETCONTROLCHARSYMBOL message.
@@ -3373,10 +3370,10 @@ struct Sci_TextToFind {
that is unmatched. Using a position of INVALID_POSITION (-1) removes the
highlight.
SCI_BRACEHIGHLIGHTINDICATOR(bool useBraceHighlightIndicator, int indicatorNumber)
+
SCI_BRACEHIGHLIGHTINDICATOR(bool useBraceHighlightIndicator, int indicatorNumber)
Use specified indicator to highlight matching braces instead of changing their style.
SCI_BRACEBADLIGHTINDICATOR(bool useBraceBadLightIndicator, int indicatorNumber)
+
SCI_BRACEBADLIGHTINDICATOR(bool useBraceBadLightIndicator, int indicatorNumber)
Use specified indicator to highlight non matching brace instead of changing its style.
SCI_BRACEMATCH(int pos, int maxReStyle)
@@ -4223,10 +4220,10 @@ struct Sci_TextToFind {
-
-
-
-
+
+
+
+
SCI_AUTOCSETCASEINSENSITIVEBEHAVIOUR(int behaviour)
- SCI_AUTOCGETCASEINSENSITIVEBEHAVIOUR
+
SCI_AUTOCSETCASEINSENSITIVEBEHAVIOUR(int behaviour)
+ SCI_AUTOCGETCASEINSENSITIVEBEHAVIOUR
When autocompletion is set to ignore case (SCI_AUTOCSETIGNORECASE), by default it will
nonetheless select the first list member that matches in a case sensitive way to entered characters.
This corresponds to a behaviour property of SC_CASEINSENSITIVEBEHAVIOUR_RESPECTCASE (0).
If you want autocompletion to ignore case at all, choose SC_CASEINSENSITIVEBEHAVIOUR_IGNORECASE (1).
SCI_AUTOCSETORDER(int order)
- SCI_AUTOCGETORDER
+
SCI_AUTOCSETORDER(int order)
+ SCI_AUTOCGETORDER
The default setting SC_ORDER_PRESORTED (0) requires that the list be provided in alphabetical sorted order.
Sorting the list can be done by Scintilla instead of the application with SC_ORDER_PERFORMSORT (1).
@@ -4969,7 +4966,7 @@ struct Sci_RangeToFormat {
On GTK+, the surface IDs to use can be found from the printing context with
gtk_print_context_get_cairo_context(context).
chrg.cpMin and chrg.cpMax define the start position and maximum
+ chrg.cpMin and chrg.cpMax define the start position and maximum
position of characters to output. All of each line within this character range is drawn.
When printing, the most tedious part is always working out what the margins should be to @@ -5215,7 +5212,7 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){
To ensure a responsive user interface, applications may decide to load and save documents using a separate thread from the user interface.
-An application can load all of a file into a buffer it allocates on a background thread and then add the data in that buffer
into a Scintilla document on the user interface thread. That technique uses extra memory to store a complete copy of the
@@ -5251,11 +5248,11 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){
.
There is no need to call Release after ConvertToDocument.
An application that wants to save in the background should lock the document with SCI_SETREADONLY(1)
to prevent modifications and retrieve a pointer to the unified document contents with
- .
+ .
The buffer of a locked document will not move so the pointer is valid until the application calls SCI_SETREADONLY(0).
If the user tries to performs a modification while the document is locked then a
SCI_SETLEXER(int lexer)
+ SCI_SETLEXER(int lexer)
SCI_GETLEXER
SCI_SETLEXERLANGUAGE(<unused>, const char
*name)
@@ -5975,8 +5972,6 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){
SCI_SETIDENTIFIERS(int style, const char *identifiers)
-
-
SCI_SETLEXER(int lexer)
SCI_GETLEXER
You can select the lexer to use with an integer code from the SCLEX_* enumeration
--
cgit v1.2.3