summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/ViewModels/Interfaces
diff options
context:
space:
mode:
authorsr55 <[email protected]>2011-12-21 18:01:05 +0000
committersr55 <[email protected]>2011-12-21 18:01:05 +0000
commit122ea23a9cc9b22313fee0648fa9831132074817 (patch)
tree84388224cf67ea970b3fcb4a1402439cab3444bc /win/CS/HandBrakeWPF/ViewModels/Interfaces
parentce0f63d8cb8bfacaf4fc139ac49eaf0775bb27e1 (diff)
WinGui: (WPF) Some further work on the WPF GUI. Started to hook up presets.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4379 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/Interfaces')
-rw-r--r--win/CS/HandBrakeWPF/ViewModels/Interfaces/IMainViewModel.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/Interfaces/IMainViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/Interfaces/IMainViewModel.cs
index 96519f42b..e9e2c4901 100644
--- a/win/CS/HandBrakeWPF/ViewModels/Interfaces/IMainViewModel.cs
+++ b/win/CS/HandBrakeWPF/ViewModels/Interfaces/IMainViewModel.cs
@@ -9,12 +9,19 @@
namespace HandBrakeWPF.ViewModels.Interfaces
{
+ using HandBrake.ApplicationServices.Model;
+
/// <summary>
/// The Main Window View Model
/// </summary>
public interface IMainViewModel
{
/// <summary>
+ /// Sets SelectedPreset.
+ /// </summary>
+ Preset SelectedPreset { set; }
+
+ /// <summary>
/// Shutdown the Application
/// </summary>
void ExitApplication();