diff options
| author | Marko Njezic <devnull@localhost> | 2011-06-10 14:38:39 +0200 |
|---|---|---|
| committer | Marko Njezic <devnull@localhost> | 2011-06-10 14:38:39 +0200 |
| commit | eb5cb13123d45c775db0499583dde98b7c8341ee (patch) | |
| tree | 7e9f785f2814491f4a85797005def46b2b2aef80 /include/Scintilla.iface | |
| parent | 02d0fdde768bafca67b49ec9d1f2663c40ba2fc7 (diff) | |
| download | scintilla-mirror-eb5cb13123d45c775db0499583dde98b7c8341ee.tar.gz | |
Add an option to control how wrapped lines are selected when clicking on margin.
Diffstat (limited to 'include/Scintilla.iface')
| -rw-r--r-- | include/Scintilla.iface | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 0fe9ca876..773e29427 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1947,6 +1947,16 @@ set void MarginSetStyleOffset=2537(int style,) # Get the start of the range of style numbers used for margin text get int MarginGetStyleOffset=2538(,) +enu MarginOption=SC_MARGINOPTION_ +val SC_MARGINOPTION_NONE=0 +val SC_MARGINOPTION_SUBLINESELECT=1 + +# Set the margin options. +set void SetMarginOptions=2539(int marginOptions,) + +# Get the margin options. +get int GetMarginOptions=2557(,) + # Set the annotation text for a line set void AnnotationSetText=2540(int line, string text) |
