diff options
author | nyamatongwe <unknown> | 2000-05-10 11:58:01 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-05-10 11:58:01 +0000 |
commit | 9b098ca0549b1153d49408f6eaac4c326e3daa86 (patch) | |
tree | 4f8f08a5db1f20a81f969aa8e82db739f7c8eab2 | |
parent | 9548dec5e36fb3b4c2e844da6d0c7b119940ad70 (diff) | |
download | scintilla-mirror-9b098ca0549b1153d49408f6eaac4c326e3daa86.tar.gz |
Added explanantion of new underline style and strike-out and diagonal indicators.
-rw-r--r-- | doc/ScintillaDoc.html | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 329cdbf58..d7e90d9f5 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -73,8 +73,9 @@ SCI_GETSTYLEBITS indicators. This allows 32 fundamental styles which is enough for most languages and three independent indicators so that, for example, syntax errors, deprecated names and bad indentation could all be displayed at once. Indicators may be displayed as simple underlines, - squiggly underlines or a line of small 'T' shapes. Additional indicators such as strike-out - or blurred could be defined in the future. The number of bits used for styles can be altered + squiggly underlines, a line of small 'T' shapes, a line of diagonal hatching or as strike-out. + Additional indicators such as blurred could be defined in the future. + The number of bits used for styles can be altered with SCI_SETSTYLEBITS up to a maximum of 6 bits. The remaining bits can be used for indicators. </p> @@ -284,6 +285,7 @@ SCI_STYLESETITALIC(int stylenumber, bool italic) SCI_STYLESETSIZE(int stylenumber, int sizeinpoints) SCI_STYLESETFONT(int stylenumber, char *fontname) SCI_STYLESETEOLFILLED(int stylenumber, bool eolfilled) +SCI_STYLESETUNDERLINE(int stylenumber, bool underline) </pre> <p> While the style setting messages mentioned above, change the style numbers associated with @@ -540,7 +542,8 @@ SCI_INDICGETFORE(int indicatornumber) indicators. </p> <p> - The indicator styles currently available are INDIC_PLAIN, INDIC_SQUIGGLE, and INDIC_TT. + The indicator styles currently available are INDIC_PLAIN, INDIC_SQUIGGLE, INDIC_TT, + INDIC_DIAGONAL, and INDIC_STRIKE. </p> <p> The indicators are set using SCI_STARTSTYLING with a INDICS_MASK mask and SCI_SETSTYLING |