// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) // This code is distributed under MIT license (for details please see \doc\license.txt) using System; namespace ICSharpCode.Editor { /// /// The TextAnchor class references an offset (a position between two characters). /// It automatically updates the offset when text is inserted/removed in front of the anchor. /// /// /// Use the property to get the offset from a text anchor. /// Use the method to create an anchor from an offset. /// /// /// The document will automatically update all text anchors; and because it uses weak references to do so, /// the garbage collector can simply collect the anchor object when you don't need it anymore. /// /// Moreover, the document is able to efficiently update a large number of anchors without having to look /// at each anchor object individually. Updating the offsets of all anchors usually only takes time logarithmic /// to the number of anchors. Retrieving the property also runs in O(lg N). /// /// /// Usage: /// TextAnchor anchor = document.CreateAnchor(offset); /// ChangeMyDocument(); /// int newOffset = anchor.Offset; /// /// public interface ITextAnchor { /// /// Gets the text location of this anchor. /// /// Thrown when trying to get the Offset from a deleted anchor. TextLocation Location { get; } /// /// Gets the offset of the text anchor. /// /// Thrown when trying to get the Offset from a deleted anchor. int Offset { get; } /// /// Controls how the anchor moves. /// AnchorMovementType MovementType { get; set; } /// /// Specifies whether the anchor survives deletion of the text containing it. /// false: The anchor is deleted when the a selection that includes the anchor is deleted. /// true: The anchor is not deleted. /// bool SurviveDeletion { get; set; } /// /// Gets whether the anchor was deleted. /// bool IsDeleted { get; } /// /// Occurs after the anchor was deleted. /// event EventHandler Deleted; /// /// Gets the line number of the anchor. /// /// Thrown when trying to get the Offset from a deleted anchor. int Line { get; } /// /// Gets the column number of this anchor. /// /// Thrown when trying to get the Offset from a deleted anchor. int Column { get; } } /// /// Defines how a text anchor moves. /// public enum AnchorMovementType { /// /// When text is inserted at the anchor position, the type of the insertion /// determines where the caret moves to. For normal insertions, the anchor will stay /// behind the inserted text. /// Default, /// /// Behaves like a start marker - when text is inserted at the anchor position, the anchor will stay /// before the inserted text. /// BeforeInsertion, /// /// Behave like an end marker - when text is insered at the anchor position, the anchor will move /// after the inserted text. /// AfterInsertion } }