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.
185 lines
5.6 KiB
185 lines
5.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.Collections.Generic; |
|
using System.Windows; |
|
using System.Windows.Input; |
|
using System.Windows.Media; |
|
using System.Windows.Media.TextFormatting; |
|
using ICSharpCode.AvalonEdit.Rendering; |
|
using ICSharpCode.AvalonEdit.Utils; |
|
|
|
namespace ICSharpCode.AvalonEdit.Folding |
|
{ |
|
/// <summary> |
|
/// A <see cref="VisualLineElementGenerator"/> that produces line elements for folded <see cref="FoldingSection"/>s. |
|
/// </summary> |
|
public sealed class FoldingElementGenerator : VisualLineElementGenerator, ITextViewConnect |
|
{ |
|
readonly List<TextView> textViews = new List<TextView>(); |
|
FoldingManager foldingManager; |
|
|
|
#region FoldingManager property / connecting with TextView |
|
/// <summary> |
|
/// Gets/Sets the folding manager from which the foldings should be shown. |
|
/// </summary> |
|
public FoldingManager FoldingManager { |
|
get { |
|
return foldingManager; |
|
} |
|
set { |
|
if (foldingManager != value) { |
|
if (foldingManager != null) { |
|
foreach (TextView v in textViews) |
|
foldingManager.RemoveFromTextView(v); |
|
} |
|
foldingManager = value; |
|
if (foldingManager != null) { |
|
foreach (TextView v in textViews) |
|
foldingManager.AddToTextView(v); |
|
} |
|
} |
|
} |
|
} |
|
|
|
void ITextViewConnect.AddToTextView(TextView textView) |
|
{ |
|
textViews.Add(textView); |
|
if (foldingManager != null) |
|
foldingManager.AddToTextView(textView); |
|
} |
|
|
|
void ITextViewConnect.RemoveFromTextView(TextView textView) |
|
{ |
|
textViews.Remove(textView); |
|
if (foldingManager != null) |
|
foldingManager.RemoveFromTextView(textView); |
|
} |
|
#endregion |
|
|
|
/// <inheritdoc/> |
|
public override void StartGeneration(ITextRunConstructionContext context) |
|
{ |
|
base.StartGeneration(context); |
|
if (foldingManager != null) { |
|
if (!foldingManager.textViews.Contains(context.TextView)) |
|
throw new ArgumentException("Invalid TextView"); |
|
if (context.Document != foldingManager.document) |
|
throw new ArgumentException("Invalid document"); |
|
} |
|
} |
|
|
|
/// <inheritdoc/> |
|
public override int GetFirstInterestedOffset(int startOffset) |
|
{ |
|
if (foldingManager != null) |
|
return foldingManager.GetNextFoldedFoldingStart(startOffset); |
|
else |
|
return -1; |
|
} |
|
|
|
/// <inheritdoc/> |
|
public override VisualLineElement ConstructElement(int offset) |
|
{ |
|
if (foldingManager == null) |
|
return null; |
|
int foldedUntil = -1; |
|
FoldingSection foldingSection = null; |
|
foreach (FoldingSection fs in foldingManager.GetFoldingsAt(offset)) { |
|
if (fs.IsFolded) { |
|
if (fs.EndOffset > foldedUntil) { |
|
foldedUntil = fs.EndOffset; |
|
foldingSection = fs; |
|
} |
|
} |
|
} |
|
if (foldedUntil > offset && foldingSection != null) { |
|
// Handle overlapping foldings: if there's another folded folding |
|
// (starting within the foldingSection) that continues after the end of the folded section, |
|
// then we'll extend our fold element to cover that overlapping folding. |
|
bool foundOverlappingFolding; |
|
do { |
|
foundOverlappingFolding = false; |
|
foreach (FoldingSection fs in FoldingManager.GetFoldingsContaining(foldedUntil)) { |
|
if (fs.IsFolded && fs.EndOffset > foldedUntil) { |
|
foldedUntil = fs.EndOffset; |
|
foundOverlappingFolding = true; |
|
} |
|
} |
|
} while (foundOverlappingFolding); |
|
|
|
string title = foldingSection.Title; |
|
if (string.IsNullOrEmpty(title)) |
|
title = "..."; |
|
var p = new VisualLineElementTextRunProperties(CurrentContext.GlobalTextRunProperties); |
|
p.SetForegroundBrush(textBrush); |
|
var textFormatter = TextFormatterFactory.Create(CurrentContext.TextView); |
|
var text = FormattedTextElement.PrepareText(textFormatter, title, p); |
|
return new FoldingLineElement(foldingSection, text, foldedUntil - offset) { textBrush = textBrush }; |
|
} else { |
|
return null; |
|
} |
|
} |
|
|
|
sealed class FoldingLineElement : FormattedTextElement |
|
{ |
|
readonly FoldingSection fs; |
|
|
|
internal Brush textBrush; |
|
|
|
public FoldingLineElement(FoldingSection fs, TextLine text, int documentLength) : base(text, documentLength) |
|
{ |
|
this.fs = fs; |
|
} |
|
|
|
public override TextRun CreateTextRun(int startVisualColumn, ITextRunConstructionContext context) |
|
{ |
|
return new FoldingLineTextRun(this, this.TextRunProperties) { textBrush = textBrush }; |
|
} |
|
|
|
protected internal override void OnMouseDown(MouseButtonEventArgs e) |
|
{ |
|
if (e.ClickCount == 2 && e.ChangedButton == MouseButton.Left) { |
|
fs.IsFolded = false; |
|
e.Handled = true; |
|
} else { |
|
base.OnMouseDown(e); |
|
} |
|
} |
|
} |
|
|
|
sealed class FoldingLineTextRun : FormattedTextRun |
|
{ |
|
internal Brush textBrush; |
|
|
|
public FoldingLineTextRun(FormattedTextElement element, TextRunProperties properties) |
|
: base(element, properties) |
|
{ |
|
} |
|
|
|
public override void Draw(DrawingContext drawingContext, Point origin, bool rightToLeft, bool sideways) |
|
{ |
|
var metrics = Format(double.PositiveInfinity); |
|
Rect r = new Rect(origin.X, origin.Y - metrics.Baseline, metrics.Width, metrics.Height); |
|
drawingContext.DrawRectangle(null, new Pen(textBrush, 1), r); |
|
base.Draw(drawingContext, origin, rightToLeft, sideways); |
|
} |
|
} |
|
|
|
/// <summary> |
|
/// Default brush for folding element text. Value: Brushes.Gray |
|
/// </summary> |
|
public static readonly Brush DefaultTextBrush = Brushes.Gray; |
|
|
|
static Brush textBrush = DefaultTextBrush; |
|
|
|
/// <summary> |
|
/// Gets/sets the brush used for folding element text. |
|
/// </summary> |
|
public static Brush TextBrush { |
|
get { return textBrush; } |
|
set { textBrush = value; } |
|
} |
|
} |
|
}
|
|
|