mirror of
				https://github.com/chibicitiberiu/rainmeter-studio.git
				synced 2024-02-24 04:33:31 +00:00 
			
		
		
		
	Implemented project manager
This commit is contained in:
		@@ -2,7 +2,7 @@
 | 
			
		||||
 | 
			
		||||
namespace RainmeterStudio.Model
 | 
			
		||||
{
 | 
			
		||||
    public class DocumentFormat
 | 
			
		||||
    public class DocumentTemplate
 | 
			
		||||
    {
 | 
			
		||||
        public string Name { get; set; }
 | 
			
		||||
        public ImageSource Icon { get; set; }
 | 
			
		||||
 
 | 
			
		||||
@@ -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
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user