// // ISelectionSurroundingProvider.cs // // Author: // Mike Krüger // // Copyright (c) 2012 Xamarin Inc. (http://xamarin.com) // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. using System; using MonoDevelop.Ide.Editor; using MonoDevelop.Ide.Editor.Extension; namespace Mono.TextEditor { /// /// Null selection surrounding provider. Basically turns off that feature. /// sealed class NullSelectionSurroundingProvider : SelectionSurroundingProvider { public override bool GetSelectionSurroundings (uint unicodeKey, out string start, out string end) { start = end = ""; return false; } public override void HandleSpecialSelectionKey (uint unicodeKey) { throw new NotSupportedException (); } } /// /// Default selection surrounding provider. /// class DefaultSelectionSurroundingProvider : SelectionSurroundingProvider { TextEditorData textEditorData; public DefaultSelectionSurroundingProvider (TextEditorData textEditorData) { this.textEditorData = textEditorData; } public override bool GetSelectionSurroundings (uint unicodeKey, out string start, out string end) { switch ((char)unicodeKey) { case '"': start = end = "\""; return true; case '\'': start = end = "'"; return true; case '(': start = "("; end = ")"; return true; case '<': start = "<"; end = ">"; return true; case '[': start = "["; end = "]"; return true; case '{': start = "{"; end = "}"; return true; default: start = end = ""; return false; } } public override void HandleSpecialSelectionKey (uint unicodeKey) { string start, end; GetSelectionSurroundings (unicodeKey, out start, out end); if (textEditorData.MainSelection.SelectionMode == SelectionMode.Block) { var selection = textEditorData.MainSelection; int startCol = System.Math.Min (selection.Anchor.Column, selection.Lead.Column) - 1; int endCol = System.Math.Max (selection.Anchor.Column, selection.Lead.Column); for (int lineNumber = selection.MinLine; lineNumber <= selection.MaxLine; lineNumber++) { DocumentLine lineSegment = textEditorData.GetLine (lineNumber); if (lineSegment.Offset + startCol < lineSegment.EndOffset) textEditorData.Insert (lineSegment.Offset + startCol, start); if (lineSegment.Offset + endCol < lineSegment.EndOffset) textEditorData.Insert (lineSegment.Offset + endCol, end); } textEditorData.MainSelection = new MonoDevelop.Ide.Editor.Selection ( new DocumentLocation (selection.Anchor.Line, endCol == selection.Anchor.Column ? endCol + start.Length : startCol + 1 + start.Length), new DocumentLocation (selection.Lead.Line, endCol == selection.Anchor.Column ? startCol + 1 + start.Length : endCol + start.Length), MonoDevelop.Ide.Editor.SelectionMode.Block); textEditorData.Document.CommitMultipleLineUpdate (textEditorData.MainSelection.MinLine, textEditorData.MainSelection.MaxLine); } else { int anchorOffset = textEditorData.MainSelection.GetAnchorOffset (textEditorData); int leadOffset = textEditorData.MainSelection.GetLeadOffset (textEditorData); if (leadOffset < anchorOffset) { int tmp = anchorOffset; anchorOffset = leadOffset; leadOffset = tmp; } textEditorData.Insert (anchorOffset, start); textEditorData.Insert (leadOffset >= anchorOffset ? leadOffset + start.Length : leadOffset, end); textEditorData.SetSelection (anchorOffset + start.Length, leadOffset + start.Length); } } } }