blob: a9cc5410b4ceaf8f939085dace7e1261c4eff8df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="EnumToDescConverter.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>
// Enum to Description Converter
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.ApplicationServices.Converters
{
using System;
using System.ComponentModel;
using HandBrake.ApplicationServices.Functions;
/// <summary>
/// Enum to Description Converter
/// </summary>
public class EnumToDescConverter : EnumConverter
{
/// <summary>
/// Initializes a new instance of the <see cref="EnumToDescConverter"/> class.
/// </summary>
/// <param name="type">
/// The type.
/// </param>
public EnumToDescConverter(Type type)
: base(type)
{
}
/// <summary>
/// Convert To an Object.
/// </summary>
/// <param name="context">
/// The context.
/// </param>
/// <param name="culture">
/// The culture.
/// </param>
/// <param name="value">
/// The value.
/// </param>
/// <param name="destinationType">
/// The destination type.
/// </param>
/// <returns>
/// The Enum Object
/// </returns>
public override object ConvertTo(
ITypeDescriptorContext context,
System.Globalization.CultureInfo culture,
object value,
Type destinationType)
{
return EnumHelper<Enum>.GetDescription((Enum)value);
}
}
}
|