diff options
author | sr55 <[email protected]> | 2013-02-16 20:12:16 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2013-02-16 20:12:16 +0000 |
commit | 8fc8275d2b78f5212be0caf83f2a96bffa486817 (patch) | |
tree | e07609a0667128ccab7221d4f32d7ce82170251d /win/CS/HandBrakeWPF/ViewModels/Interfaces | |
parent | 11062c02cb1ab077e582c2c9bb4c1c209360b843 (diff) |
WinGui: Split out the advanced tab code into separate panels.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5253 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/Interfaces')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/Interfaces/IEncoderOptionsViewModel.cs | 32 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/Interfaces/IX264ViewModel.cs | 32 |
2 files changed, 64 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/Interfaces/IEncoderOptionsViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/Interfaces/IEncoderOptionsViewModel.cs new file mode 100644 index 000000000..10f1270d4 --- /dev/null +++ b/win/CS/HandBrakeWPF/ViewModels/Interfaces/IEncoderOptionsViewModel.cs @@ -0,0 +1,32 @@ +// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="IEncoderOptionsViewModel.cs" company="HandBrake Project (http://handbrake.fr)">
+// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
+// </copyright>
+// <summary>
+// The Simple Encoder Options Tab
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrakeWPF.ViewModels.Interfaces
+{
+ using HandBrake.Interop.Model.Encoding;
+
+ /// <summary>
+ /// The Simple Encoder Options Tab
+ /// </summary>
+ public interface IEncoderOptionsViewModel : ITabInterface
+ {
+ /// <summary>
+ /// Set the currently selected encoder.
+ /// </summary>
+ /// <param name="encoder">
+ /// The Video Encoder.
+ /// </param>
+ void SetEncoder(VideoEncoder encoder);
+
+ /// <summary>
+ /// Clear out the settings.
+ /// </summary>
+ void Clear();
+ }
+}
diff --git a/win/CS/HandBrakeWPF/ViewModels/Interfaces/IX264ViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/Interfaces/IX264ViewModel.cs new file mode 100644 index 000000000..70b72affe --- /dev/null +++ b/win/CS/HandBrakeWPF/ViewModels/Interfaces/IX264ViewModel.cs @@ -0,0 +1,32 @@ +// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="IX264ViewModel.cs" company="HandBrake Project (http://handbrake.fr)">
+// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
+// </copyright>
+// <summary>
+// Defines the IX264ViewModel type.
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrakeWPF.ViewModels.Interfaces
+{
+ using HandBrake.Interop.Model.Encoding;
+
+ /// <summary>
+ /// The Advanced View Model Interface
+ /// </summary>
+ public interface IX264ViewModel : ITabInterface
+ {
+ /// <summary>
+ /// Set the currently selected encoder.
+ /// </summary>
+ /// <param name="encoder">
+ /// The Video Encoder.
+ /// </param>
+ void SetEncoder(VideoEncoder encoder);
+
+ /// <summary>
+ /// Clear out the settings.
+ /// </summary>
+ void Clear();
+ }
+}
|