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.
87 lines
2.2 KiB
87 lines
2.2 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; |
|
|
|
namespace ICSharpCode.AvalonEdit.Document |
|
{ |
|
/// <summary> |
|
/// A TextAnchorNode is placed in the TextAnchorTree. |
|
/// It describes a section of text with a text anchor at the end of the section. |
|
/// A weak reference is used to refer to the TextAnchor. (to save memory, we derive from WeakReference instead of referencing it) |
|
/// </summary> |
|
sealed class TextAnchorNode : WeakReference |
|
{ |
|
internal TextAnchorNode left, right, parent; |
|
internal bool color; |
|
internal int length; |
|
internal int totalLength; // totalLength = length + left.totalLength + right.totalLength |
|
|
|
public TextAnchorNode(TextAnchor anchor) : base(anchor) |
|
{ |
|
} |
|
|
|
internal TextAnchorNode LeftMost { |
|
get { |
|
TextAnchorNode node = this; |
|
while (node.left != null) |
|
node = node.left; |
|
return node; |
|
} |
|
} |
|
|
|
internal TextAnchorNode RightMost { |
|
get { |
|
TextAnchorNode node = this; |
|
while (node.right != null) |
|
node = node.right; |
|
return node; |
|
} |
|
} |
|
|
|
/// <summary> |
|
/// Gets the inorder successor of the node. |
|
/// </summary> |
|
internal TextAnchorNode Successor { |
|
get { |
|
if (right != null) { |
|
return right.LeftMost; |
|
} else { |
|
TextAnchorNode node = this; |
|
TextAnchorNode oldNode; |
|
do { |
|
oldNode = node; |
|
node = node.parent; |
|
// go up until we are coming out of a left subtree |
|
} while (node != null && node.right == oldNode); |
|
return node; |
|
} |
|
} |
|
} |
|
|
|
/// <summary> |
|
/// Gets the inorder predecessor of the node. |
|
/// </summary> |
|
internal TextAnchorNode Predecessor { |
|
get { |
|
if (left != null) { |
|
return left.RightMost; |
|
} else { |
|
TextAnchorNode node = this; |
|
TextAnchorNode oldNode; |
|
do { |
|
oldNode = node; |
|
node = node.parent; |
|
// go up until we are coming out of a right subtree |
|
} while (node != null && node.left == oldNode); |
|
return node; |
|
} |
|
} |
|
} |
|
|
|
public override string ToString() |
|
{ |
|
return "[TextAnchorNode Length=" + length + " TotalLength=" + totalLength + " Target=" + Target + "]"; |
|
} |
|
} |
|
}
|
|
|