From 37eea51490ef76553ff0ae21f622016eb7c13869 Mon Sep 17 00:00:00 2001 From: Neil Date: Sun, 28 Mar 2021 12:05:42 +1100 Subject: Add shapes with curved and rounded ends to EOL annotations as EOLANNOTATION_*. --- doc/ScintillaDoc.html | 78 +++++++++++++++++++++++++++++++++++++++++++++-- doc/ScintillaHistory.html | 3 ++ 2 files changed, 78 insertions(+), 3 deletions(-) (limited to 'doc') diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index ccbdf6550..8971f4d93 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -3835,7 +3835,7 @@ struct Sci_TextToFind { EOLANNOTATION_HIDDEN - 0 + 0x0 End of Line Annotations are not displayed. @@ -3843,7 +3843,7 @@ struct Sci_TextToFind { EOLANNOTATION_STANDARD - 1 + 0x1 End of Line Annotations are drawn left justified with no adornment. @@ -3851,11 +3851,83 @@ struct Sci_TextToFind { EOLANNOTATION_BOXED - 2 + 0x2 End of Line Annotations are indented to match the text and are surrounded by a box. + + EOLANNOTATION_STADIUM + + 0x100 + + Surround with a ◖stadium◗ - a rectangle with rounded ends. + + + + EOLANNOTATION_FLAT_CIRCLE + + 0x101 + + Surround with a |shape◗ with flat left end and curved right end. + + + + EOLANNOTATION_ANGLE_CIRCLE + + 0x102 + + Surround with a ◄shape◗ with angled left end and curved right end. + + + + EOLANNOTATION_CIRCLE_FLAT + + 0x110 + + Surround with a ◖shape| with curved left end and flat right end. + + + + EOLANNOTATION_FLATS + + 0x111 + + Surround with a |shape| with flat ends. + + + + EOLANNOTATION_ANGLE_FLAT + + 0x112 + + Surround with a ◄shape| with angled left end and flat right end. + + + + EOLANNOTATION_CIRCLE_ANGLE + + 0x120 + + Surround with a ◖shape▶ with curved left end and angled right end. + + + + EOLANNOTATION_FLAT_ANGLE + + 0x121 + + Surround with a |shape▶ with flat left end and angled right end. + + + + EOLANNOTATION_ANGLES + + 0x122 + + Surround with a ◄shape▶ with angles on each end. + + diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index 614866e30..c518cd60e 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -605,6 +605,9 @@ SCI_MARKERSETBACKSELECTEDTRANSLUCENT, SCI_MARKERSETSTROKEWIDTH.
  • + Add shapes with curved and rounded ends to EOL annotations as EOLANNOTATION_*. +
  • +
  • Change graphics coordinates from float (32-bit) to double (64-bit). Fixes uneven line heights in large documents on Cocoa. Increases memory use. -- cgit v1.2.3