2014-08-12 13:33:13 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Windows;
|
|
|
|
|
using RainmeterStudio.Core.Model;
|
|
|
|
|
|
2014-09-12 10:26:52 +00:00
|
|
|
|
namespace RainmeterStudio.Core.Editor
|
2014-08-12 13:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A document editor
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IDocumentEditor
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the document attached to this editor instance
|
|
|
|
|
/// </summary>
|
|
|
|
|
IDocument AttachedDocument { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the UI control to display for this editor
|
|
|
|
|
/// </summary>
|
|
|
|
|
UIElement EditorUI { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|