/* Copyright (C) 2014-2019 de4dot@gmail.com This file is part of dnSpy dnSpy is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. dnSpy is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with dnSpy. If not, see . */ using System; using System.Collections.Generic; using dnSpy.Contracts.Menus; using Microsoft.VisualStudio.Text.Editor; namespace dnSpy.Contracts.Text.Editor { /// /// creator options /// public class TextViewCreatorOptions { /// /// Guid of context menu or null /// public Guid? MenuGuid { get; set; } /// /// Creates s, can be null /// public Func>? CreateGuidObjects { get; set; } /// /// true to enable undo/redo history. Default value is true /// public bool EnableUndoHistory { get; set; } /// /// Clones this /// /// public TextViewCreatorOptions Clone() => CopyTo(new TextViewCreatorOptions()); /// /// Constructor /// public TextViewCreatorOptions() => EnableUndoHistory = true; /// /// Copy this to /// /// Other instance /// public TextViewCreatorOptions CopyTo(TextViewCreatorOptions other) { if (other is null) throw new ArgumentNullException(nameof(other)); other.MenuGuid = MenuGuid; other.CreateGuidObjects = CreateGuidObjects; other.EnableUndoHistory = EnableUndoHistory; return other; } } }