using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using RainmeterStudio.Core.Model; namespace RainmeterStudio.Core.Documents { /// /// A document editor /// public interface IDocumentEditor { /// /// Gets the document attached to this editor instance /// IDocument AttachedDocument { get; } /// /// Gets the UI control to display for this editor /// UIElement EditorUI { get; } } }