diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/Scintilla.h | 4 | ||||
| -rw-r--r-- | include/Scintilla.iface | 8 | 
2 files changed, 12 insertions, 0 deletions
| diff --git a/include/Scintilla.h b/include/Scintilla.h index c0bb32332..ed1102010 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -159,6 +159,8 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam,  #define SCI_GETMARGINMASKN 2245  #define SCI_SETMARGINSENSITIVEN 2246  #define SCI_GETMARGINSENSITIVEN 2247 +#define SCI_SETMARGINCURSORN 2248 +#define SCI_GETMARGINCURSORN 2249  #define STYLE_DEFAULT 32  #define STYLE_LINENUMBER 33  #define STYLE_BRACELIGHT 34 @@ -590,7 +592,9 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam,  #define SCI_SETMOUSEDOWNCAPTURES 2384  #define SCI_GETMOUSEDOWNCAPTURES 2385  #define SC_CURSORNORMAL -1 +#define SC_CURSORARROW 2  #define SC_CURSORWAIT 4 +#define SC_CURSORREVERSEARROW 7  #define SCI_SETCURSOR 2386  #define SCI_GETCURSOR 2387  #define SCI_SETCONTROLCHARSYMBOL 2388 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index b3c10ea6a..8d5db4941 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -352,6 +352,12 @@ set void SetMarginSensitiveN=2246(int margin, bool sensitive)  # Retrieve the mouse click sensitivity of a margin.  get bool GetMarginSensitiveN=2247(int margin,) +# Set the cursor shown when the mouse is inside a margin. +set void SetMarginCursorN=2248(int margin, int cursor) + +# Retrieve the cursor shown in a margin. +get int GetMarginCursorN=2249(int margin,) +  # Styles in range 32..38 are predefined for parts of the UI and are not used as normal styles.  # Style 39 is for future use.  enu StylesCommon=STYLE_ @@ -1540,7 +1546,9 @@ get bool GetMouseDownCaptures=2385(,)  enu CursorShape=SC_CURSOR  val SC_CURSORNORMAL=-1 +val SC_CURSORARROW=2  val SC_CURSORWAIT=4 +val SC_CURSORREVERSEARROW=7  # Sets the cursor to one of the SC_CURSOR* values.  set void SetCursor=2386(int cursorType,)  # Get cursor type. | 
