blob: cd1904cb3eb64af4c31be78f7892497cfb2e1538 (
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="AdvancedViewModel.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 Advanced View Model
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.ViewModels
{
using System.Collections.Generic;
using System.ComponentModel.Composition;
using Caliburn.Micro;
using HandBrake.ApplicationServices.Functions;
using HandBrake.ApplicationServices.Model;
using HandBrake.ApplicationServices.Parsing;
using HandBrake.ApplicationServices.Services.Interfaces;
using HandBrake.Interop.Model.Encoding;
using HandBrake.Interop.Model.Encoding.x264;
using HandBrakeWPF.ViewModels.Interfaces;
/// <summary>
/// The Advanced View Model
/// </summary>
[Export(typeof(IAdvancedViewModel))]
public class AdvancedViewModel : ViewModelBase, IAdvancedViewModel
{
#region Constants and Fields
/// <summary>
/// Backing field used to display / hide the x264 options
/// </summary>
private bool displayX264Options;
#endregion
#region Constructors and Destructors
/// <summary>
/// Initializes a new instance of the <see cref="AdvancedViewModel"/> class.
/// </summary>
/// <param name="windowManager">
/// The window manager.
/// </param>
/// <param name="userSettingService">
/// The user Setting Service.
/// </param>
public AdvancedViewModel(IWindowManager windowManager, IUserSettingService userSettingService)
{
this.Task = new EncodeTask();
X264Presets = EnumHelper<x264Preset>.GetEnumList();
X264Profiles = EnumHelper<x264Profile>.GetEnumList();
X264Tunes = EnumHelper<x264Tune>.GetEnumList();
}
#endregion
#region Public Properties
/// <summary>
/// Gets or sets Task.
/// </summary>
public EncodeTask Task { get; set; }
/// <summary>
/// Gets or sets State.
/// </summary>
public string Query
{
get
{
return this.Task.AdvancedEncoderOptions;
}
set
{
this.Task.AdvancedEncoderOptions = value;
this.NotifyOfPropertyChange(() => this.Query);
}
}
/// <summary>
/// Gets or sets X264Preset.
/// </summary>
public x264Preset X264Preset
{
get
{
return this.Task.x264Preset;
}
set
{
this.Task.x264Preset = value;
this.NotifyOfPropertyChange(() => this.X264Preset);
}
}
/// <summary>
/// Gets or sets X264Profile.
/// </summary>
public x264Profile X264Profile
{
get
{
return this.Task.x264Profile;
}
set
{
this.Task.x264Profile = value;
this.NotifyOfPropertyChange(() => this.X264Profile);
}
}
/// <summary>
/// Gets or sets X264Tune.
/// </summary>
public x264Tune X264Tune
{
get
{
return this.Task.X264Tune;
}
set
{
this.Task.X264Tune = value;
this.NotifyOfPropertyChange(() => this.X264Tune);
}
}
/// <summary>
/// Gets or sets X264Presets.
/// </summary>
public IEnumerable<x264Preset> X264Presets { get; set; }
/// <summary>
/// Gets or sets X264Profiles.
/// </summary>
public IEnumerable<x264Profile> X264Profiles { get; set; }
/// <summary>
/// Gets or sets X264Tunes.
/// </summary>
public IEnumerable<x264Tune> X264Tunes { get; set; }
/// <summary>
/// Gets or sets a value indicating whether DisplayX264Options.
/// </summary>
public bool DisplayX264Options
{
get
{
return this.displayX264Options;
}
set
{
this.displayX264Options = value;
this.NotifyOfPropertyChange(() => this.DisplayX264Options);
}
}
#endregion
#region Public Methods
/// <summary>
/// Setup this window for a new source
/// </summary>
/// <param name="title">
/// The title.
/// </param>
/// <param name="preset">
/// The preset.
/// </param>
/// <param name="task">
/// The task.
/// </param>
public void SetSource(Title title, Preset preset, EncodeTask task)
{
this.Task = task;
this.NotifyOfPropertyChange(() => this.Task);
}
/// <summary>
/// Setup this tab for the specified preset.
/// </summary>
/// <param name="preset">
/// The preset.
/// </param>
/// <param name="task">
/// The task.
/// </param>
public void SetPreset(Preset preset, EncodeTask task)
{
this.Task = task;
this.NotifyOfPropertyChange(() => this.Task);
if (preset != null && preset.Task != null)
{
this.Query = preset.Task.AdvancedEncoderOptions;
this.SetEncoder(preset.Task.VideoEncoder);
this.X264Preset = preset.Task.x264Preset;
this.X264Profile = preset.Task.x264Profile;
this.X264Tune = preset.Task.X264Tune;
}
}
/// <summary>
/// Set the currently selected encoder.
/// </summary>
/// <param name="encoder">
/// The Video Encoder.
/// </param>
public void SetEncoder(VideoEncoder encoder)
{
this.DisplayX264Options = encoder == VideoEncoder.X264;
}
#endregion
}
}
|