diff options
author | sr55 <[email protected]> | 2012-03-24 21:31:49 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2012-03-24 21:31:49 +0000 |
commit | 654057c737c7b51f236bdc6f5100f24f3fc4f8be (patch) | |
tree | c3c42ba0c649bab1a3a393b7fcbb460b3352e5e6 /win/CS/HandBrakeWPF/Model | |
parent | 71be55c4db11cd6e2f8ba2f2df25e030fa089644 (diff) |
WinGui: (WPF) Port the Advanced Panel for x264 from VidCoder.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4536 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Model')
-rw-r--r-- | win/CS/HandBrakeWPF/Model/AdvancedChoice.cs | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Model/AdvancedChoice.cs b/win/CS/HandBrakeWPF/Model/AdvancedChoice.cs new file mode 100644 index 000000000..53c43f5c2 --- /dev/null +++ b/win/CS/HandBrakeWPF/Model/AdvancedChoice.cs @@ -0,0 +1,32 @@ +// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="AdvancedChoice.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 AdvancedChoice type.
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrakeWPF.Model
+{
+ /// <summary>
+ /// Advanced Choce model for the Advanced Panel
+ /// </summary>
+ public class AdvancedChoice
+ {
+ /// <summary>
+ /// Gets or sets a value indicating whether the given choice is default.
+ /// </summary>
+ public bool IsDefault { get; set; }
+
+ /// <summary>
+ /// Gets or sets the UI label for the choice.
+ /// </summary>
+ public string Label { get; set; }
+
+ /// <summary>
+ /// Gets or sets the value on the options string for the choice.
+ /// </summary>
+ public string Value { get; set; }
+ }
+}
|