diff options
-rw-r--r-- | doc/ScintillaDoc.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index bf6971aa2..c38819ce0 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -4725,6 +4725,8 @@ struct SCNotification { <a class="message" href="#SCN_ZOOM">SCN_ZOOM</a><br /> <a class="message" href="#SCN_HOTSPOTCLICK">SCN_HOTSPOTCLICK</a><br /> <a class="message" href="#SCN_HOTSPOTDOUBLECLICK">SCN_HOTSPOTDOUBLECLICK</a><br /> + <a class="message" href="#SCN_INDICATORCLICK">SCN_INDICATORCLICK</a><br /> + <a class="message" href="#SCN_INDICATORRELEASE">SCN_INDICATORRELEASE</a><br /> <a class="message" href="#SCN_CALLTIPCLICK">SCN_CALLTIPCLICK</a><br /> <a class="message" href="#SCN_AUTOCSELECTION">SCN_AUTOCSELECTION</a><br /> </code> @@ -5022,6 +5024,16 @@ href="#SCI_POSITIONFROMLINE">SCI_POSITIONFROMLINE</a>(lineNumber); </tr> <tr> + <td align="left"><code>SC_MOD_CHANGEINDICATOR</code></td> + + <td align="center">0x4000</td> + + <td>An indicator has been added or removed from a range of text.</td> + + <td><code>position, length</code></td> + </tr> + + <tr> <td align="left"><code>SC_MULTILINEUNDOREDO</code></td> <td align="center">0x1000</td> @@ -5296,6 +5308,15 @@ for line = lineStart to lineEnd do SCI_ENSUREVISIBLE(line) next double click and the <code>modifiers</code> field set to the key modifiers held down in a similar manner to <a class="message" href="#SCN_KEY">SCN_KEY</a>.</p> + <p> + <b id="SCN_INDICATORCLICK">SCN_INDICATORCLICK</b><br /> + <b id="SCN_INDICATORRELEASE">SCN_INDICATORRELEASE</b><br /> + These notifications are generated when the user clicks or releases the mouse on + text that has an indicator. + The <code>position</code> field is set the text position of the click or + double click and the <code>modifiers</code> field set to the key modifiers + held down in a similar manner to <a class="message" href="#SCN_KEY">SCN_KEY</a>.</p> + <p><b id="SCN_CALLTIPCLICK">SCN_CALLTIPCLICK</b><br /> This notification is generated when the user clicks on a calltip. This notification can be used to display the next function prototype when a |