mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
26 lines
629 B
C#
26 lines
629 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Windows;
|
|||
|
using RainmeterStudio.Core.Model;
|
|||
|
|
|||
|
namespace RainmeterStudio.Core.Documents
|
|||
|
{
|
|||
|
/// <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; }
|
|||
|
}
|
|||
|
}
|