diff options
author | nyamatongwe <unknown> | 2000-10-05 12:04:40 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-10-05 12:04:40 +0000 |
commit | 64b89c25354dba83c93e8c05150d6db39f6219da (patch) | |
tree | 4e72dabbd2d96636ddefb203a82ea88e81b7318b | |
parent | eafa7bd1d5d7ed4d2cac42a760416cbba00a93cc (diff) | |
download | scintilla-mirror-64b89c25354dba83c93e8c05150d6db39f6219da.tar.gz |
Added cursor setting.
-rw-r--r-- | include/Scintilla.h | 4 | ||||
-rw-r--r-- | include/Scintilla.iface | 7 |
2 files changed, 11 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index 68df0c82e..de6ef9ba3 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -372,6 +372,10 @@ typedef long (*SciFnDirect)(long ptr, unsigned int iMessage, unsigned long wPara #define SCI_GETSTATUS 2383 #define SCI_SETMOUSEDOWNCAPTURES 2384 #define SCI_GETMOUSEDOWNCAPTURES 2385 +#define SC_CURSORNORMAL -1 +#define SC_CURSORWAIT 3 +#define SCI_SETCURSOR 2386 +#define SCI_GETCURSOR 2387 #define SCI_GRABFOCUS 2400 #define SCI_STARTRECORD 3001 #define SCI_STOPRECORD 3002 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(,) |