summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2012-01-08 15:09:40 +0000
committersr55 <[email protected]>2012-01-08 15:09:40 +0000
commit54e6a851ccec4be58087f8d90d4e04fb2623b4b5 (patch)
treef4d603eeb208ab9c5e09b74d81e8a01823da701b /win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs
parent4eebc527c8183ec0bbc905da7f648e004f44d9db (diff)
WinGui: (WPF) Further work on hooking up the various tabs on the Main Window.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4404 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs')
-rw-r--r--win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs
index d57f19fb9..81a9c07db 100644
--- a/win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs
+++ b/win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs
@@ -20,6 +20,8 @@ namespace HandBrakeWPF.ViewModels
using HandBrakeWPF.ViewModels.Interfaces;
+ using HandBrake.ApplicationServices.Model;
+
/// <summary>
/// The Subtitles View Model
/// </summary>
@@ -46,6 +48,16 @@ namespace HandBrakeWPF.ViewModels
public ObservableCollection<SubtitleTrack> SubtitleTracks { get; set; }
/// <summary>
+ /// Set the currently selected preset.
+ /// </summary>
+ /// <param name="preset">
+ /// The preset.
+ /// </param>
+ public void SetPreset(Preset preset)
+ {
+ }
+
+ /// <summary>
/// Add a new Track
/// </summary>
public void Add()