diff options
| author | Iain Clarke <unknown> | 2020-04-08 09:27:43 +1000 |
|---|---|---|
| committer | Iain Clarke <unknown> | 2020-04-08 09:27:43 +1000 |
| commit | 48e716a6bc32736c1035f3f9edc78eba2987fc39 (patch) | |
| tree | dfdc40802f7869684697a0d257b3e6ceb1692b7c /doc | |
| parent | 2ebe1a97728f3d29671b3312e395bf0fb880caa6 (diff) | |
| download | scintilla-mirror-48e716a6bc32736c1035f3f9edc78eba2987fc39.tar.gz | |
Backport: Feature [feature-requests:1344]. Add methods for iterating through the marker
handles and marker numbers on a line.
Backport of changeset 8129:665c31051e3c.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/ScintillaDoc.html | 8 | ||||
| -rw-r--r-- | doc/ScintillaHistory.html | 5 |
2 files changed, 13 insertions, 0 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index db7ee48b8..5a83b8d92 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -4092,6 +4092,8 @@ struct Sci_TextToFind { <a class="message" href="#SCI_MARKERPREVIOUS">SCI_MARKERPREVIOUS(line lineStart, int markerMask) → line</a><br /> <a class="message" href="#SCI_MARKERLINEFROMHANDLE">SCI_MARKERLINEFROMHANDLE(int markerHandle) → line</a><br /> <a class="message" href="#SCI_MARKERDELETEHANDLE">SCI_MARKERDELETEHANDLE(int markerHandle)</a><br /> + <a class="message" href="#SCI_MARKERHANDLEFROMLINE">SCI_MARKERHANDLEFROMLINE(line line, int which) → int</a><br /> + <a class="message" href="#SCI_MARKERNUMBERFROMLINE">SCI_MARKERNUMBERFROMLINE(line line, int which) → int</a><br /> </code> <p><b id="SCI_MARKERDEFINE">SCI_MARKERDEFINE(int markerNumber, int markerSymbol)</b><br /> @@ -4359,6 +4361,12 @@ struct Sci_TextToFind { class="message" href="#SCI_MARKERADD"><code>SCI_MARKERADD</code></a>. This function searches the document for the marker with this handle and deletes the marker if it is found.</p> + <p><b id="SCI_MARKERHANDLEFROMLINE">SCI_MARKERHANDLEFROMLINE(line line, int which) → int</b><br /> + <b id="SCI_MARKERNUMBERFROMLINE">SCI_MARKERNUMBERFROMLINE(line line, int which) → int</b><br /> + These messages returns the Nth marker handle or marker number in a given <code class="parameter">line</code>. + Handles are returned by <a class="message" href="#SCI_MARKERADD"><code>SCI_MARKERADD</code></a>. + If <code class="parameter">which</code> is greater or equal to the number of markers on a line, this returns -1;</p> + <h2 id="Indicators">Indicators</h2> <p>Indicators are used to display additional information over the top of styling. diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index 7b0b5d604..cd6e6acac 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -574,6 +574,11 @@ Build Scintilla with SCI_EMPTYCATALOGUE to avoid making lexers available. </li> <li> + Add methods for iterating through the marker handles and marker numbers on a line: + SCI_MARKERHANDLEFROMLINE and SCI_MARKERNUMBERFROMLINE. + <a href="https://sourceforge.net/p/scintilla/feature-requests/1344/">Feature #1344</a>. + </li> + <li> Fix brace styling in Batch lexer so that brace matching works. <a href="https://sourceforge.net/p/scintilla/bugs/1624/">Bug #1624</a>, <a href="https://sourceforge.net/p/scintilla/bugs/1906/">Bug #1906</a>, |
