diff options
| author | nyamatongwe <unknown> | 2011-04-07 21:26:47 +1000 |
|---|---|---|
| committer | nyamatongwe <unknown> | 2011-04-07 21:26:47 +1000 |
| commit | 0adca4ad14500910cca14a54d7d4c19e740606da (patch) | |
| tree | be10d8a118fb4e5fd92a549d47aa80c1df01a5cf /doc | |
| parent | e7dea4ff60eba17362902d514ff29ebfbc8ea3a1 (diff) | |
| download | scintilla-mirror-0adca4ad14500910cca14a54d7d4c19e740606da.tar.gz | |
Add highlighting of current folding block. Feature #3147069.
APIs MarkerEnableHighlight and MarkerSetBackSelected.
From Jérôme Laforge.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/ScintillaDoc.html | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 208ffe8ea..7fa92a273 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -3275,6 +3275,9 @@ struct Sci_TextToFind { colour)</a><br /> <a class="message" href="#SCI_MARKERSETBACK">SCI_MARKERSETBACK(int markerNumber, int colour)</a><br /> + <a class="message" href="#SCI_MARKERSETBACKSELECTED">SCI_MARKERSETBACKSELECTED(int markerNumber, int + colour)</a><br /> + <a class="message" href="#SCI_MARKERENABLEHIGHLIGHT">SCI_MARKERENABLEHIGHLIGHT(int enabled)</a><br /> <a class="message" href="#SCI_MARKERSETALPHA">SCI_MARKERSETALPHA(int markerNumber, int alpha)</a><br /> <a class="message" href="#SCI_MARKERADD">SCI_MARKERADD(int line, int markerNumber)</a><br /> @@ -3461,7 +3464,12 @@ struct Sci_TextToFind { href="#colour">colour</a>)</b><br /> <b id="SCI_MARKERSETBACK">SCI_MARKERSETBACK(int markerNumber, int <a class="jump" href="#colour">colour</a>)</b><br /> - These two messages set the foreground and background colour of a marker number.</p> + These two messages set the foreground and background colour of a marker number.<br /> + <b id="SCI_MARKERSETBACKSELECTED">SCI_MARKERSETBACKSELECTED(int markerNumber, int <a class="jump" + href="#colour">colour</a>)</b><br /> + This message sets the highlight background colour of a marker number when its folding block is selected. The default colour is #FF0000.</p> + <p><b id="SCI_MARKERENABLEHIGHLIGHT">SCI_MARKERENABLEHIGHLIGHT(bool enabled)</b><br /> + This message allows to enable/disable the highlight folding block when it is selected. (i.e. block that contains the caret)</p> <p><b id="SCI_MARKERSETALPHA">SCI_MARKERSETALPHA(int markerNumber, int <a class="jump" href="#alpha">alpha</a>)</b><br /> When markers are drawn in the content area, either because there is no margin for them or |
