mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
38 lines
1.1 KiB
C#
38 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using RainmeterStudio.Core;
|
|
using RainmeterStudio.Core.Editor;
|
|
using RainmeterStudio.Core.Model;
|
|
|
|
namespace RainmeterStudio.SkinDesignerPlugin
|
|
{
|
|
/// <summary>
|
|
/// Skin designer factory
|
|
/// </summary>
|
|
[PluginExport]
|
|
public class SkinDesignerFactory : IDocumentEditorFactory
|
|
{
|
|
/// <summary>
|
|
/// Creates a new editor object
|
|
/// </summary>
|
|
/// <param name="document">Document to be edited by the editor</param>
|
|
/// <returns>A new document editor</returns>
|
|
public IDocumentEditor CreateEditor(IDocument document)
|
|
{
|
|
return new SkinDesigner((SkinDocument)document);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Tests if this editor can edit this document type
|
|
/// </summary>
|
|
/// <param name="type">Document type</param>
|
|
/// <returns>True if the editor can edit the document type</returns>
|
|
public bool CanEdit(Type type)
|
|
{
|
|
return type.Equals(typeof(SkinDocument));
|
|
}
|
|
}
|
|
}
|