aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.iface
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2001-03-22 03:21:23 +0000
committernyamatongwe <devnull@localhost>2001-03-22 03:21:23 +0000
commitc1bb8ba8c80bb71ad1445d4c0df149c52f5f72c0 (patch)
treeb2598e5922670b7ba9685ac4ef8029e064672927 /include/Scintilla.iface
parenta4c4ed0147ff7cc15eb51d6ffb66a6ab23f32c53 (diff)
downloadscintilla-mirror-c1bb8ba8c80bb71ad1445d4c0df149c52f5f72c0.tar.gz
Patch from James Larcombe.
Functions to delete from caret to end of line and from start of line to caret. Mode for caret policy to be even handed with respect to left and right margins rather than favouring display to the left.
Diffstat (limited to 'include/Scintilla.iface')
-rw-r--r--include/Scintilla.iface9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index c4d3c54f7..87bfccc7a 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -971,6 +971,9 @@ val CARET_CENTER=0x02
# If CARET_SLOP also set then reposition whenever outside slop border
# If CARET_SLOP not set then recentre even when visible
val CARET_STRICT=0x04
+# If CARET_XEVEN set then both left and right margins are given equal weight
+# rather than favouring left following behaviour.
+val CARET_XEVEN=0x08
# Set the way the line the caret is on is kept visible.
fun void SetCaretPolicy=2369(int caretPolicy, int caretSlop)
@@ -1038,6 +1041,12 @@ val VISIBLE_STRICT=0x04
# Set the way the display area is determined when a particular line is to be moved to.
fun void SetVisiblePolicy=2394(int visiblePolicy, int visibleSlop)
+# Delete back from the current position to the start of the line
+fun void DelLineLeft=2395(,)
+
+# Delete forwards from the current position to the end of the line
+fun void DelLineRight=2396(,)
+
# Set the focus to this Scintilla widget.
# GTK+ Specific
fun void GrabFocus=2400(,)