| 2552 | } |
| 2553 | |
| 2554 | void Editor::DrawIndentGuide ( Surface *surface, int lineVisible, int lineHeight, int start, PRectangle rcSegment, bool highlight ) |
| 2555 | { |
| 2556 | Point from ( 0, ( ( lineVisible & 1 ) && ( lineHeight & 1 ) ) ? 1 : 0 ); |
| 2557 | PRectangle rcCopyArea ( start + 1, rcSegment.top, start + 2, rcSegment.bottom ); |
| 2558 | surface->Copy ( rcCopyArea, from, |
| 2559 | highlight ? *pixmapIndentGuideHighlight : *pixmapIndentGuide ); |
| 2560 | } |
| 2561 | |
| 2562 | void Editor::DrawWrapMarker ( Surface *surface, PRectangle rcPlace, |
| 2563 | bool isEndMarker, ColourDesired wrapColour ) |