diff options
author | Marko Njezic <devnull@localhost> | 2012-04-15 17:44:42 +0200 |
---|---|---|
committer | Marko Njezic <devnull@localhost> | 2012-04-15 17:44:42 +0200 |
commit | 423f81b9e19da08af4992aca9acdf8cfa121413a (patch) | |
tree | 46d50fd43b5b019342ab8e7662502140c1f1c123 /include | |
parent | 8ebe86f15bd3de9a87c1ce3bb3f150bb197e1ea8 (diff) | |
download | scintilla-mirror-423f81b9e19da08af4992aca9acdf8cfa121413a.tar.gz |
Add an option to draw wrap markers in line number margin. Feature #3518198.
Diffstat (limited to 'include')
-rw-r--r-- | include/Scintilla.h | 1 | ||||
-rw-r--r-- | include/Scintilla.iface | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index 0df0900de..d4da54a9d 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -460,6 +460,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SC_WRAPVISUALFLAG_NONE 0x0000 #define SC_WRAPVISUALFLAG_END 0x0001 #define SC_WRAPVISUALFLAG_START 0x0002 +#define SC_WRAPVISUALFLAG_MARGIN 0x0004 #define SCI_SETWRAPVISUALFLAGS 2460 #define SCI_GETWRAPVISUALFLAGS 2461 #define SC_WRAPVISUALFLAGLOC_DEFAULT 0x0000 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index b7f9eede8..42a9bb33c 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1152,6 +1152,7 @@ enu WrapVisualFlag=SC_WRAPVISUALFLAG_ val SC_WRAPVISUALFLAG_NONE=0x0000 val SC_WRAPVISUALFLAG_END=0x0001 val SC_WRAPVISUALFLAG_START=0x0002 +val SC_WRAPVISUALFLAG_MARGIN=0x0004 # Set the display mode of visual flags for wrapped lines. set void SetWrapVisualFlags=2460(int wrapVisualFlags,) |