diff options
author | nyamatongwe <devnull@localhost> | 2000-05-10 11:53:11 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2000-05-10 11:53:11 +0000 |
commit | 256989e8407879dbacdfb618c2cad67de160ac00 (patch) | |
tree | 722bc4ebdab9d5e760b31d87854695c25fecc294 /include/Scintilla.h | |
parent | 8d20ab7b6e45c33d073b53638c60d4348712be09 (diff) | |
download | scintilla-mirror-256989e8407879dbacdfb618c2cad67de160ac00.tar.gz |
Added underline attribute to styles.
Added diagonal and strike-through indicators.
Diffstat (limited to 'include/Scintilla.h')
-rw-r--r-- | include/Scintilla.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index 6a58e9324..2a7f51613 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -169,6 +169,7 @@ extern "C" { #define SCI_STYLESETFONT SCI_START + 56 #define SCI_STYLESETEOLFILLED SCI_START + 57 #define SCI_STYLERESETDEFAULT SCI_START + 58 +#define SCI_STYLESETUNDERLINE SCI_START + 59 #define SCI_SETSELFORE SCI_START + 67 #define SCI_SETSELBACK SCI_START + 68 @@ -192,6 +193,8 @@ extern "C" { #define INDIC_PLAIN 0 #define INDIC_SQUIGGLE 1 #define INDIC_TT 2 +#define INDIC_DIAGONAL 3 +#define INDIC_STRIKE 4 #define INDIC0_MASK 32 #define INDIC1_MASK 64 |