diff options
author | nyamatongwe <unknown> | 2006-12-28 23:00:32 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2006-12-28 23:00:32 +0000 |
commit | da1ad1ff7405b0b6ee3b02e1d07b83b617d53c9b (patch) | |
tree | 2c314e2385e119e07f52371502742b8213dcf16b /include | |
parent | c6b7c5cc5e9241b3f207637de4ad790214f112ed (diff) | |
download | scintilla-mirror-da1ad1ff7405b0b6ee3b02e1d07b83b617d53c9b.tar.gz |
Patch from Jason Haslam to optionally extend selection colour to left side when
end of line selected.
Diffstat (limited to 'include')
-rw-r--r-- | include/Scintilla.h | 2 | ||||
-rw-r--r-- | include/Scintilla.iface | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index 21bcbf490..adb85695b 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -201,6 +201,8 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCI_SETSELBACK 2068 #define SCI_GETSELALPHA 2477 #define SCI_SETSELALPHA 2478 +#define SCI_GETSELEOLFILLED 2479 +#define SCI_SETSELEOLFILLED 2480 #define SCI_SETCARETFORE 2069 #define SCI_ASSIGNCMDKEY 2070 #define SCI_CLEARCMDKEY 2071 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 085470e04..779378047 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -442,6 +442,12 @@ get int GetSelAlpha=2477(,) # Set the alpha of the selection. set void SetSelAlpha=2478(int alpha,) +# Is the selection end of line filled? +get bool GetSelEOLFilled=2479(,) + +# Set the selection to have its end of line filled or not. +set void SetSelEOLFilled=2480(bool filled,) + # Set the foreground colour of the caret. set void SetCaretFore=2069(colour fore,) |