Implemented project manager

This commit is contained in:
2014-07-26 13:49:11 +03:00
parent 6eec29a3a7
commit 48972dfb52
18 changed files with 1028 additions and 52 deletions

View File

@ -2,7 +2,7 @@
namespace RainmeterStudio.Model
{
public class DocumentFormat
public class DocumentTemplate
{
public string Name { get; set; }
public ImageSource Icon { get; set; }

View File

@ -16,7 +16,7 @@ namespace RainmeterStudio.Model
/// <summary>
/// Formats that will be used to populate the 'create document' dialog
/// </summary>
IEnumerable<DocumentFormat> CreateDocumentFormats { get; }
IEnumerable<DocumentTemplate> CreateDocumentFormats { get; }
/// <summary>
/// Creates a new editor object
@ -29,7 +29,7 @@ namespace RainmeterStudio.Model
/// Creates a new document
/// </summary>
/// <returns>A new document</returns>
IDocument CreateDocument(DocumentFormat format, string path);
IDocument CreateDocument(DocumentTemplate format, string path);
/// <summary>
/// Gets the storage of this factory