diff options
| author | Nathaniel Braun <unknown> | 2026-01-08 08:22:01 +1100 |
|---|---|---|
| committer | Nathaniel Braun <unknown> | 2026-01-08 08:22:01 +1100 |
| commit | 56c071e2734e3812c7c77b611637cbc2698eb7d3 (patch) | |
| tree | 5da57f71c12bef0a8bd2706a0d8773cb5442ddfe /doc | |
| parent | 0627663abd14c81cafde85ce9cc0502d9bc3a6c3 (diff) | |
| download | scintilla-mirror-56c071e2734e3812c7c77b611637cbc2698eb7d3.tar.gz | |
Feature [feature-requests:#184]. Add option to disable drag/drop editing
SCI_SETDRAGDROPENABLED. Fully implemented on Win32 but may only prevent dragging
on other platforms.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/ScintillaDoc.html | 6 | ||||
| -rw-r--r-- | doc/ScintillaHistory.html | 5 |
2 files changed, 11 insertions, 0 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 0dfe986f4..d432043f6 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -482,6 +482,8 @@ *text)</a><br /> <a class="message" href="#SCI_SETREADONLY">SCI_SETREADONLY(bool readOnly)</a><br /> <a class="message" href="#SCI_GETREADONLY">SCI_GETREADONLY → bool</a><br /> + <a class="message" href="#SCI_GETDRAGDROPENABLED">SCI_GETDRAGDROPENABLED → bool</a><br /> + <a class="message" href="#SCI_SETDRAGDROPENABLED">SCI_SETDRAGDROPENABLED(bool dragDropEnabled)</a><br /> <a class="message" href="#SCI_GETTEXTRANGE">SCI_GETTEXTRANGE(<unused>, Sci_TextRange *tr) → position</a><br /> <a class="message" href="#SCI_GETTEXTRANGEFULL">SCI_GETTEXTRANGEFULL(<unused>, Sci_TextRangeFull *tr) → position</a><br /> <a class="message" href="#SCI_ALLOCATE">SCI_ALLOCATE(position bytes)</a><br /> @@ -568,6 +570,10 @@ only, attempts to modify the text cause the <a class="message" href="#SCN_MODIFYATTEMPTRO"><code>SCN_MODIFYATTEMPTRO</code></a> notification.</p> + <p><b id="SCI_GETDRAGDROPENABLED">SCI_GETDRAGDROPENABLED → bool</b><br /> + <b id="SCI_SETDRAGDROPENABLED">SCI_SETDRAGDROPENABLED(bool dragDropEnabled)</b><br /> + These messages get and set the flag controlling whether drag-and-drop is enabled or not.</p> + <p> <b id="SCI_GETTEXTRANGE">SCI_GETTEXTRANGE(<unused>, <a class="jump" href="#Sci_TextRange">Sci_TextRange</a> *tr) → position</b><br /> <b id="SCI_GETTEXTRANGEFULL">SCI_GETTEXTRANGEFULL(<unused>, <a class="jump" href="#Sci_TextRangeFull">Sci_TextRangeFull</a> *tr) → position</b><br /> diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index 12b233b4f..1148abaa1 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -592,6 +592,7 @@ <td>Ahmet Sait</td> <td>Sven Ritter</td> <td>Stefan Löffler</td> + <td>Nathaniel Braun</td> </tr> </table> <h2 id="Releases">Releases</h2> @@ -603,6 +604,10 @@ Released 10 November 2025. </li> <li> + Add option to disable drag/drop editing. + <a href="https://sourceforge.net/p/scintilla/feature-requests/184/">Feature #184</a>. + </li> + <li> Fix SCI_SETSELECTIONNSTART and SCI_SETSELECTIONNEND to behave more sensibly. <a href="https://sourceforge.net/p/scintilla/bugs/2488/">Bug #2488</a>. </li> |
