From fc8a05358a92cc3c77c5f1e30d536807ef0614fd Mon Sep 17 00:00:00 2001 From: Victoria Plitt Date: Mon, 8 Apr 2019 13:49:55 +0300 Subject: were added scripting projects --- .../Editing/AbstractMargin.cs | 102 +++++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100644 Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Editing/AbstractMargin.cs (limited to 'Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Editing/AbstractMargin.cs') diff --git a/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Editing/AbstractMargin.cs b/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Editing/AbstractMargin.cs new file mode 100644 index 000000000..c82ff94a0 --- /dev/null +++ b/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Editing/AbstractMargin.cs @@ -0,0 +1,102 @@ +// 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.Diagnostics; +using System.Windows; + +using Tango.Scripting.Editors.Document; +using Tango.Scripting.Editors.Rendering; + +namespace Tango.Scripting.Editors.Editing +{ + /// + /// Base class for margins. + /// Margins don't have to derive from this class, it just helps maintaining a reference to the TextView + /// and the TextDocument. + /// AbstractMargin derives from FrameworkElement, so if you don't want to handle visual children and rendering + /// on your own, choose another base class for your margin! + /// + public abstract class AbstractMargin : FrameworkElement, ITextViewConnect + { + /// + /// TextView property. + /// + public static readonly DependencyProperty TextViewProperty = + DependencyProperty.Register("TextView", typeof(TextView), typeof(AbstractMargin), + new FrameworkPropertyMetadata(OnTextViewChanged)); + + /// + /// Gets/sets the text view for which line numbers are displayed. + /// + /// Adding a margin to will automatically set this property to the text area's TextView. + public TextView TextView { + get { return (TextView)GetValue(TextViewProperty); } + set { SetValue(TextViewProperty, value); } + } + + static void OnTextViewChanged(DependencyObject dp, DependencyPropertyChangedEventArgs e) + { + AbstractMargin margin = (AbstractMargin)dp; + margin.wasAutoAddedToTextView = false; + margin.OnTextViewChanged((TextView)e.OldValue, (TextView)e.NewValue); + } + + // automatically set/unset TextView property using ITextViewConnect + bool wasAutoAddedToTextView; + + void ITextViewConnect.AddToTextView(TextView textView) + { + if (this.TextView == null) { + this.TextView = textView; + wasAutoAddedToTextView = true; + } else if (this.TextView != textView) { + throw new InvalidOperationException("This margin belongs to a different TextView."); + } + } + + void ITextViewConnect.RemoveFromTextView(TextView textView) + { + if (wasAutoAddedToTextView && this.TextView == textView) { + this.TextView = null; + Debug.Assert(!wasAutoAddedToTextView); // setting this.TextView should have unset this flag + } + } + + TextDocument document; + + /// + /// Gets the document associated with the margin. + /// + public TextDocument Document { + get { return document; } + } + + /// + /// Called when the is changing. + /// + protected virtual void OnTextViewChanged(TextView oldTextView, TextView newTextView) + { + if (oldTextView != null) { + oldTextView.DocumentChanged -= TextViewDocumentChanged; + } + if (newTextView != null) { + newTextView.DocumentChanged += TextViewDocumentChanged; + } + TextViewDocumentChanged(null, null); + } + + void TextViewDocumentChanged(object sender, EventArgs e) + { + OnDocumentChanged(document, TextView != null ? TextView.Document : null); + } + + /// + /// Called when the is changing. + /// + protected virtual void OnDocumentChanged(TextDocument oldDocument, TextDocument newDocument) + { + document = newDocument; + } + } +} -- cgit v1.3.1