using System; using System.IO; using System.Windows; using Microsoft.Win32; using RainmeterStudio.Business; using RainmeterStudio.Core.Model; using RainmeterStudio.UI.Dialogs; namespace RainmeterStudio.UI.Controller { public class ProjectController { #region Properties /// /// Gets the project manager /// protected ProjectManager Manager { get; private set; } /// /// Gets or sets the owner window. Used for creating dialogs. /// public Window OwnerWindow { get; set; } /// /// Gets the active project /// public Project ActiveProject { get { return Manager.ActiveProject; } } /// /// Gets the active project path /// public string ActiveProjectPath { get { return Manager.ActiveProject.Path; } } #endregion #region Callbacks /// /// Called when a project is opened or the active project closes. /// public event EventHandler ActiveProjectChanged { add { Manager.ActiveProjectChanged += value; } remove { Manager.ActiveProjectChanged -= value; } } #endregion #region Commands public Command ProjectCreateCommand { get; private set; } public Command ProjectOpenCommand { get; private set; } #endregion /// /// Initializes the project controller /// /// Project manager public ProjectController(ProjectManager manager) { Manager = manager; ProjectCreateCommand = new Command("ProjectCreateCommand", () => CreateProject()); ProjectOpenCommand = new Command("ProjectOpenCommand", () => OpenProject()); } /// /// Displays the 'create project' dialog and creates a new project /// public void CreateProject(string name = null, string path = null) { // Create dialog var dialog = new CreateProjectDialog(); dialog.Owner = OwnerWindow; dialog.SelectedLocation = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), "Rainmeter Studio Projects"); if (name != null) dialog.Name = name; if (path != null) dialog.SelectedPath = path; // Display bool? res = dialog.ShowDialog(); if (!res.HasValue || !res.Value) return; string selectedName = dialog.SelectedName; string selectedPath = dialog.SelectedPath; // Call manager Manager.CreateProject(selectedName, selectedPath); } /// /// Displays an 'open file' dialog and opens an existing project /// /// public void OpenProject(string path = null) { // Open dialog OpenFileDialog dialog = new OpenFileDialog(); dialog.Filter = Resources.Strings.Dialog_FileType_Project + "|*.rsproj|" + Resources.Strings.Dialog_FileType_AllFiles + "|*.*"; dialog.Title = Resources.Strings.Dialog_OpenProject_Title; dialog.Multiselect = false; // Show dialog bool? res = dialog.ShowDialog(OwnerWindow); if (!res.HasValue || !res.Value) return; // Call manager string filename = dialog.FileName; Manager.OpenProject(filename); } /// /// Closes the active project /// public void CloseProject() { } } }