diff options
| author | nyamatongwe <unknown> | 2000-05-10 11:53:11 +0000 |
|---|---|---|
| committer | nyamatongwe <unknown> | 2000-05-10 11:53:11 +0000 |
| commit | 9548dec5e36fb3b4c2e844da6d0c7b119940ad70 (patch) | |
| tree | 722bc4ebdab9d5e760b31d87854695c25fecc294 /include/Scintilla.iface | |
| parent | 756bcf30b6ce43e604a91d946bf9baafd6c4e564 (diff) | |
| download | scintilla-mirror-9548dec5e36fb3b4c2e844da6d0c7b119940ad70.tar.gz | |
Added underline attribute to styles.
Added diagonal and strike-through indicators.
Diffstat (limited to 'include/Scintilla.iface')
| -rw-r--r-- | include/Scintilla.iface | 5 |
1 files changed, 5 insertions, 0 deletions
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 |
