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/Converters/AdvancedVisibilityConverter.cs | |
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/Converters/AdvancedVisibilityConverter.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/Converters/AdvancedVisibilityConverter.cs | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Converters/AdvancedVisibilityConverter.cs b/win/CS/HandBrakeWPF/Converters/AdvancedVisibilityConverter.cs new file mode 100644 index 000000000..905d8798a --- /dev/null +++ b/win/CS/HandBrakeWPF/Converters/AdvancedVisibilityConverter.cs @@ -0,0 +1,94 @@ +// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="AdvancedVisibilityConverter.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 AdvancedVisibilityConverter type.
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrakeWPF.Converters
+{
+ using System;
+ using System.Globalization;
+ using System.Windows;
+ using System.Windows.Data;
+
+ /// <summary>
+ /// The advanced visibility converter.
+ /// </summary>
+ [Obsolete("This will be refactored out soon! Don't use.")]
+ public class AdvancedVisibilityConverter : IValueConverter
+ {
+ #region Implemented Interfaces
+
+ #region IValueConverter
+
+ /// <summary>
+ /// The convert.
+ /// </summary>
+ /// <param name="value">
+ /// The value.
+ /// </param>
+ /// <param name="targetType">
+ /// The target type.
+ /// </param>
+ /// <param name="parameter">
+ /// The parameter.
+ /// </param>
+ /// <param name="culture">
+ /// The culture.
+ /// </param>
+ /// <returns>
+ /// The convert.
+ /// </returns>
+ public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
+ {
+ bool visibility = (bool)value;
+
+ // If we are given a parameter, reverse it
+ if (parameter != null)
+ {
+ visibility = !visibility;
+ }
+
+ return visibility ? Visibility.Visible : Visibility.Collapsed;
+ }
+
+ /// <summary>
+ /// The convert back.
+ /// </summary>
+ /// <param name="value">
+ /// The value.
+ /// </param>
+ /// <param name="targetType">
+ /// The target type.
+ /// </param>
+ /// <param name="parameter">
+ /// The parameter.
+ /// </param>
+ /// <param name="culture">
+ /// The culture.
+ /// </param>
+ /// <returns>
+ /// The convert back.
+ /// </returns>
+ public object ConvertBack(
+ object value, Type targetType, object parameter, CultureInfo culture)
+ {
+ Visibility visibility = (Visibility)value;
+ bool result = visibility == Visibility.Visible;
+
+ if (parameter != null)
+ {
+ result = !result;
+ }
+
+ return result;
+ }
+
+ #endregion
+
+ #endregion
+ }
+}
\ No newline at end of file |