diff options
author | Tse Kit Yam <me@kytse.com> | 2016-11-29 14:14:21 +1100 |
---|---|---|
committer | Tse Kit Yam <me@kytse.com> | 2016-11-29 14:14:21 +1100 |
commit | 4ae76e455aec66826a284356d63cc2b5995c0b2f (patch) | |
tree | c0466475514dee0da647dfa800cb1ccfc4647f0e /src/EditView.h | |
parent | 6bed4e4aa02025e1bd0c294a44c9371fb6b176f1 (diff) | |
download | scintilla-mirror-4ae76e455aec66826a284356d63cc2b5995c0b2f.tar.gz |
Textual tags may be displayed on folded lines with SCI_TOGGLEFOLDSHOWTEXT.
Diffstat (limited to 'src/EditView.h')
-rw-r--r-- | src/EditView.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/EditView.h b/src/EditView.h index dcfa352f4..83dd8bb1f 100644 --- a/src/EditView.h +++ b/src/EditView.h @@ -124,6 +124,8 @@ public: void DrawEOL(Surface *surface, const EditModel &model, const ViewStyle &vsDraw, const LineLayout *ll, PRectangle rcLine, int line, int lineEnd, int xStart, int subLine, XYACCUMULATOR subLineStart, ColourOptional background); + void DrawFoldDisplayText(Surface *surface, const EditModel &model, const ViewStyle &vsDraw, const LineLayout *ll, + int line, int xStart, PRectangle rcLine, int subLine, XYACCUMULATOR subLineStart, DrawPhase phase); void DrawAnnotation(Surface *surface, const EditModel &model, const ViewStyle &vsDraw, const LineLayout *ll, int line, int xStart, PRectangle rcLine, int subLine, DrawPhase phase); void DrawCarets(Surface *surface, const EditModel &model, const ViewStyle &vsDraw, const LineLayout *ll, int line, @@ -140,6 +142,8 @@ public: int lineVisible, int xStart, PRectangle rcLine, int subLine, DrawPhase phase); void PaintText(Surface *surfaceWindow, const EditModel &model, PRectangle rcArea, PRectangle rcClient, const ViewStyle &vsDraw); + void FillLineRemainder(Surface *surface, const EditModel &model, const ViewStyle &vsDraw, const LineLayout *ll, + int line, PRectangle rcArea, int subLine); long FormatRange(bool draw, Sci_RangeToFormat *pfr, Surface *surface, Surface *surfaceMeasure, const EditModel &model, const ViewStyle &vs); }; |