using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace RainmeterStudio.Core.Documents.DocumentEditorFeatures { public interface IToolboxProvider { bool SupportsToolboxDrop { get; } IEnumerable ToolboxItems { get; } event EventHandler ToolboxItemsChanged; } }