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 /include/Scintilla.h | |
| 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 'include/Scintilla.h')
| -rw-r--r-- | include/Scintilla.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index f7afa4f50..b6786097e 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -1194,6 +1194,8 @@ typedef sptr_t (*SciFnDirectStatus)(sptr_t ptr, unsigned int iMessage, uptr_t wP #define SCI_RELEASELINECHARACTERINDEX 2712 #define SCI_LINEFROMINDEXPOSITION 2713 #define SCI_INDEXPOSITIONFROMLINE 2714 +#define SCI_GETDRAGDROPENABLED 2818 +#define SCI_SETDRAGDROPENABLED 2819 #define SCI_STARTRECORD 3001 #define SCI_STOPRECORD 3002 #define SCI_GETLEXER 4002 |
