// 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; using System.Globalization; namespace ICSharpCode.Editor { /// /// A line/column position. /// Text editor lines/columns are counted started from one. /// /// /// The document provides the methods and /// to convert between offsets and TextLocations. /// [Serializable] public struct TextLocation : IComparable, IEquatable { /// /// Represents no text location (0, 0). /// public static readonly TextLocation Empty = new TextLocation(0, 0); /// /// Constant of the minimum line. /// public const int MinLine = 1; /// /// Constant of the minimum column. /// public const int MinColumn = 1; /// /// Creates a TextLocation instance. /// public TextLocation(int line, int column) { this.line = line; this.column = column; } int column, line; /// /// Gets the line number. /// public int Line { get { return line; } } /// /// Gets the column number. /// public int Column { get { return column; } } /// /// Gets whether the TextLocation instance is empty. /// public bool IsEmpty { get { return column < MinLine && line < MinColumn; } } /// /// Gets a string representation for debugging purposes. /// public override string ToString() { return string.Format(CultureInfo.InvariantCulture, "(Line {1}, Col {0})", this.column, this.line); } /// /// Gets a hash code. /// public override int GetHashCode() { return unchecked (191 * column.GetHashCode() ^ line.GetHashCode()); } /// /// Equality test. /// public override bool Equals(object obj) { if (!(obj is TextLocation)) return false; return (TextLocation)obj == this; } /// /// Equality test. /// public bool Equals(TextLocation other) { return this == other; } /// /// Equality test. /// public static bool operator ==(TextLocation left, TextLocation right) { return left.column == right.column && left.line == right.line; } /// /// Inequality test. /// public static bool operator !=(TextLocation left, TextLocation right) { return left.column != right.column || left.line != right.line; } /// /// Compares two text locations. /// public static bool operator <(TextLocation left, TextLocation right) { if (left.line < right.line) return true; else if (left.line == right.line) return left.column < right.column; else return false; } /// /// Compares two text locations. /// public static bool operator >(TextLocation left, TextLocation right) { if (left.line > right.line) return true; else if (left.line == right.line) return left.column > right.column; else return false; } /// /// Compares two text locations. /// public static bool operator <=(TextLocation left, TextLocation right) { return !(left > right); } /// /// Compares two text locations. /// public static bool operator >=(TextLocation left, TextLocation right) { return !(left < right); } /// /// Compares two text locations. /// public int CompareTo(TextLocation other) { if (this == other) return 0; if (this < other) return -1; else return 1; } } }