diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/Scintilla.h | 3 | ||||
-rw-r--r-- | include/Scintilla.iface | 5 |
2 files changed, 8 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 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 0233a24ca..af4a9583b 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -277,6 +277,9 @@ set void StyleSetEOLFilled=2057(int style, bool filled) # Reset the default style to its state at startup fun void StyleResetDefault=2058(,) +# Set a style to be underlined or not. +set void StyleSetUnderline=2059(int style, bool underline) + # Set the foreground colour of the selection and whether to use this setting. fun void SetSelFore=2067(bool useSetting, colour fore) @@ -319,6 +322,8 @@ val INDIC_MAX=7 val INDIC_PLAIN=0 val INDIC_SQUIGGLE=1 val INDIC_TT=2 +val INDIC_DIAGONAL=3 +val INDIC_STRIKE=4 val INDIC0_MASK=32 val INDIC1_MASK=64 val INDIC2_MASK=128 |