blob: 7003ca2c7abffb076701321fea631e2ea53d2bbb (
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="Preset.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>
// A Preset for encoding with.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.ApplicationServices.Model
{
using Caliburn.Micro;
/// <summary>
/// A Preset for encoding with.
/// </summary>
public class Preset : PropertyChangedBase
{
#region Constants and Fields
/// <summary>
/// The is default.
/// </summary>
private bool isDefault;
#endregion
#region Properties
/// <summary>
/// Gets or sets the category which the preset resides under
/// </summary>
public string Category { get; set; }
/// <summary>
/// Gets or sets the Description for the preset
/// </summary>
public string Description { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this is a built in preset
/// </summary>
public bool IsBuildIn { get; set; }
/// <summary>
/// Gets or sets a value indicating whether IsDefault.
/// </summary>
public bool IsDefault
{
get
{
return this.isDefault;
}
set
{
this.isDefault = value;
this.NotifyOfPropertyChange(() => this.IsDefault);
}
}
/// <summary>
/// Gets or sets the preset name
/// </summary>
public string Name { get; set; }
/// <summary>
/// Gets or sets PictureSettingsMode.
/// Source Maximum, Custom or None
/// </summary>
public PresetPictureSettingsMode PictureSettingsMode { get; set; }
/// <summary>
/// Gets or sets a value indicating whether use deinterlace.
/// </summary>
public bool UseDeinterlace { get; set; }
/// <summary>
/// Gets or sets task.
/// </summary>
public EncodeTask Task { get; set; }
/// <summary>
/// Gets or sets a value indicating whether Picture Filters are used with this preset.
/// </summary>
public bool UsePictureFilters { get; set; }
/// <summary>
/// Gets or sets The version number which associates this preset with a HB build
/// </summary>
public string Version { get; set; }
#endregion
#region Public Methods
/// <summary>
/// Override the ToString Method
/// </summary>
/// <returns>
/// The Preset Name
/// </returns>
public override string ToString()
{
return this.Name;
}
#endregion
}
}
|