diff options
| author | nyamatongwe <devnull@localhost> | 2011-04-07 21:26:47 +1000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2011-04-07 21:26:47 +1000 |
| commit | 4012f14e6397f5709586102540df824d8c9ca4a5 (patch) | |
| tree | 9f1535ca2d7a2690ba79a62d0d96ec58b9c9af96 /doc | |
| parent | c3d271e16f72cad5bf4f669614a78a67c5663037 (diff) | |
| download | scintilla-mirror-4012f14e6397f5709586102540df824d8c9ca4a5.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 |
