diff options
| author | nyamatongwe <unknown> | 2004-04-27 22:13:00 +0000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2004-04-27 22:13:00 +0000 | 
| commit | 05db48d45c9dbf617f6195074743aaeffc65abc7 (patch) | |
| tree | 211ca7e06ffa83b909aba98c601e0e8907c963b9 /src/Editor.h | |
| parent | 8ded31632d1d4bcbef15896849bf657f420bb664 (diff) | |
| download | scintilla-mirror-05db48d45c9dbf617f6195074743aaeffc65abc7.tar.gz | |
Continuation Marker feature from Hans Eckardt.
Diffstat (limited to 'src/Editor.h')
| -rw-r--r-- | src/Editor.h | 8 | 
1 files changed, 7 insertions, 1 deletions
diff --git a/src/Editor.h b/src/Editor.h index c9c4c26e1..76635e658 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -296,6 +296,10 @@ protected:	// ScintillaBase subclass needs access to much of Editor  	int wrapWidth;  	int docLineLastWrapped;  	int docLastLineToWrap; +	int wrapVisualFlags; +	int wrapVisualFlagsLocation; +	int wrapVisualStartIndent; +	int actualWrapVisualStartIndent;  	Document *pdoc; @@ -368,9 +372,11 @@ protected:	// ScintillaBase subclass needs access to much of Editor  		int width=LineLayout::wrapWidthInfinite);  	ColourAllocated TextBackground(ViewStyle &vsDraw, bool overrideBackground, ColourAllocated background, bool inSelection, bool inHotspot, int styleMain, int i, LineLayout *ll);  	void DrawIndentGuide(Surface *surface, int lineVisible, int lineHeight, int start, PRectangle rcSegment, bool highlight); +	void DrawWrapMarker(Surface *surface, PRectangle rcPlace, bool isEndMarker, ColourAllocated wrapColour);  	void DrawEOL(Surface *surface, ViewStyle &vsDraw, PRectangle rcLine, LineLayout *ll,  		int line, int lineEnd, int xStart, int subLine, int subLineStart, -		bool overrideBackground, ColourAllocated background); +		bool overrideBackground, ColourAllocated background, +		bool drawWrapMark, ColourAllocated wrapColour);  	void DrawLine(Surface *surface, ViewStyle &vsDraw, int line, int lineVisible, int xStart,  		PRectangle rcLine, LineLayout *ll, int subLine=0);  	void RefreshPixMaps(Surface *surfaceWindow);  | 
