mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.6 KiB
48 lines
1.6 KiB
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) |
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt) |
|
|
|
using System; |
|
using System.Windows; |
|
using ICSharpCode.AvalonEdit.Document; |
|
using ICSharpCode.AvalonEdit.Rendering; |
|
|
|
namespace ICSharpCode.AvalonEdit.Editing |
|
{ |
|
sealed class SelectionColorizer : ColorizingTransformer |
|
{ |
|
TextArea textArea; |
|
|
|
public SelectionColorizer(TextArea textArea) |
|
{ |
|
if (textArea == null) |
|
throw new ArgumentNullException("textArea"); |
|
this.textArea = textArea; |
|
} |
|
|
|
protected override void Colorize(ITextRunConstructionContext context) |
|
{ |
|
// if SelectionForeground is null, keep the existing foreground color |
|
if (textArea.SelectionForeground == null) |
|
return; |
|
|
|
int lineStartOffset = context.VisualLine.FirstDocumentLine.Offset; |
|
int lineEndOffset = context.VisualLine.LastDocumentLine.Offset + context.VisualLine.LastDocumentLine.TotalLength; |
|
|
|
foreach (ISegment segment in textArea.Selection.Segments) { |
|
int segmentStart = segment.Offset; |
|
int segmentEnd = segment.Offset + segment.Length; |
|
if (segmentEnd <= lineStartOffset) |
|
continue; |
|
if (segmentStart >= lineEndOffset) |
|
continue; |
|
int startColumn = context.VisualLine.GetVisualColumn(Math.Max(0, segmentStart - lineStartOffset)); |
|
int endColumn = context.VisualLine.GetVisualColumn(segmentEnd - lineStartOffset); |
|
ChangeVisualElements( |
|
startColumn, endColumn, |
|
element => { |
|
element.TextRunProperties.SetForegroundBrush(textArea.SelectionForeground); |
|
}); |
|
} |
|
} |
|
} |
|
}
|
|
|