aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.iface
diff options
context:
space:
mode:
authornyamatongwe <unknown>2000-10-05 12:04:40 +0000
committernyamatongwe <unknown>2000-10-05 12:04:40 +0000
commit64b89c25354dba83c93e8c05150d6db39f6219da (patch)
tree4e72dabbd2d96636ddefb203a82ea88e81b7318b /include/Scintilla.iface
parenteafa7bd1d5d7ed4d2cac42a760416cbba00a93cc (diff)
downloadscintilla-mirror-64b89c25354dba83c93e8c05150d6db39f6219da.tar.gz
Added cursor setting.
Diffstat (limited to 'include/Scintilla.iface')
-rw-r--r--include/Scintilla.iface7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index bedf0083d..b5b88bc45 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -1008,6 +1008,13 @@ set void SetMouseDownCaptures=2384(bool captures,)
# Get whether mouse gets captured
get bool GetMouseDownCaptures=2385(,)
+val SC_CURSORNORMAL=-1
+val SC_CURSORWAIT=3
+# Sets the cursor to one of the SC_CURSOR* values
+set void SetCursor=2386(int cursorType,)
+# Get cursor type
+get int GetCursor=2387(,)
+
# Set the focus to this Scintilla widget.
# GTK+ Specific
fun void GrabFocus=2400(,)