diff options
author | nyamatongwe <unknown> | 2007-05-29 12:39:35 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2007-05-29 12:39:35 +0000 |
commit | 1ac62f75e51df6fd1521c0bb7633ff20a128e169 (patch) | |
tree | 4528e55558ba91dde9709755cc5a1abec6540425 /include/Scintilla.iface | |
parent | 38ae0852c15b8c2475f5f78b4e678379ce0be3de (diff) | |
download | scintilla-mirror-1ac62f75e51df6fd1521c0bb7633ff20a128e169.tar.gz |
Block caret feature added by Todd Whiteman.
Diffstat (limited to 'include/Scintilla.iface')
-rw-r--r-- | include/Scintilla.iface | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 85d45780e..c46d8dbd7 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1734,6 +1734,17 @@ set void SetCaretLineBackAlpha=2470(int alpha,) # Get the background alpha of the caret line. get int GetCaretLineBackAlpha=2471(,) +enu CaretStyle=CARETSTYLE_ +val CARETSTYLE_INVISIBLE=0 +val CARETSTYLE_LINE=1 +val CARETSTYLE_BLOCK=2 + +# Set the style of the caret to be drawn. +set void SetCaretStyle=2950(int caretStyle,) + +# Returns the current style of the caret. +get int GetCaretStyle=2951(,) + # Set the indicator used for IndicatorFillRange and IndicatorClearRange set void SetIndicatorCurrent=2500(int indicator,) |