diff options
author | nyamatongwe <devnull@localhost> | 2001-03-31 10:35:47 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-03-31 10:35:47 +0000 |
commit | c1505c5abb1e1135e5b496aa097f632caa2527cc (patch) | |
tree | f2922d4c74654d2ae7a23954a923d03b696bafbc /include | |
parent | 1150283816a23b066b34406a7d03e42dc328830d (diff) | |
download | scintilla-mirror-c1505c5abb1e1135e5b496aa097f632caa2527cc.tar.gz |
Added caret line feature.
Diffstat (limited to 'include')
-rw-r--r-- | include/Scintilla.h | 4 | ||||
-rw-r--r-- | include/Scintilla.iface | 12 |
2 files changed, 16 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index da708d16b..cc9eeb593 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -178,6 +178,10 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCI_SETLINESTATE 2092 #define SCI_GETLINESTATE 2093 #define SCI_GETMAXLINESTATE 2094 +#define SCI_GETCARETLINEVISIBLE 2095 +#define SCI_SETCARETLINEVISIBLE 2096 +#define SCI_GETCARETLINEBACK 2097 +#define SCI_SETCARETLINEBACK 2098 #define SCI_AUTOCSHOW 2100 #define SCI_AUTOCCANCEL 2101 #define SCI_AUTOCACTIVE 2102 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index e542785fc..cb524f185 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -411,6 +411,18 @@ get int GetLineState=2093(int line,) # Retrieve the last line number that has line state. get int GetMaxLineState=2094(,) +# Is the background of the line containing the caret in a different colour? +get bool GetCaretLineVisible=2095(,) + +# Dsplay the background of the line containing the caret in a different colour. +set void SetCaretLineVisible=2096(bool show,) + +# Get the colour of the background of the line containing the caret. +get colour GetCaretLineBack=2097(,) + +# Set the colour of the background of the line containing the caret. +set void SetCaretLineBack=2098(colour back,) + # Display a auto-completion list. # The lenEntered parameter indicates how many characters before # the caret should be used to provide context. |