diff options
author | nyamatongwe <unknown> | 2006-02-26 00:58:22 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2006-02-26 00:58:22 +0000 |
commit | 3443ea8530e6e6f2a1195b4ae472e9c50b9434f4 (patch) | |
tree | 43f3b3cd67b11f8e5950bbae9e9ed0fc02af99ed /include/Scintilla.h | |
parent | f6994eeda16b695b2abcb9654e704749b28a85b1 (diff) | |
download | scintilla-mirror-3443ea8530e6e6f2a1195b4ae472e9c50b9434f4.tar.gz |
Translucency implementation for INDIC_ROUNDBOX and caret line.
Diffstat (limited to 'include/Scintilla.h')
-rw-r--r-- | include/Scintilla.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index 29ffdb23d..035ca04fa 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -215,6 +215,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define INDIC_STRIKE 4 #define INDIC_HIDDEN 5 #define INDIC_BOX 6 +#define INDIC_ROUNDBOX 7 #define INDIC0_MASK 0x20 #define INDIC1_MASK 0x40 #define INDIC2_MASK 0x80 @@ -609,6 +610,11 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCI_SETPASTECONVERTENDINGS 2467 #define SCI_GETPASTECONVERTENDINGS 2468 #define SCI_SELECTIONDUPLICATE 2469 +#define SC_ALPHA_TRANSPARENT 0 +#define SC_ALPHA_OPAQUE 255 +#define SC_ALPHA_NOALPHA 256 +#define SCI_SETCARETLINEBACKALPHA 2470 +#define SCI_GETCARETLINEBACKALPHA 2471 #define SCI_STARTRECORD 3001 #define SCI_STOPRECORD 3002 #define SCI_SETLEXER 4001 |