blob: dc8a62a487e829dd46d9df84ff05e35020e57640 (
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
|
/* MainViewModel.cs $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.fr>.
It may be used under the terms of the GNU General Public License. */
namespace HandBrakeWPF.ViewModels
{
using System;
using System.Collections.ObjectModel;
using System.ComponentModel.Composition;
using System.Diagnostics;
using System.IO;
using System.Windows;
using Caliburn.PresentationFramework.ApplicationModel;
using HandBrake.ApplicationServices.Model;
using HandBrake.ApplicationServices.Parsing;
using HandBrake.ApplicationServices.Services;
using HandBrake.ApplicationServices.Services.Interfaces;
using HandBrakeWPF.ViewModels.Interfaces;
/// <summary>
/// HandBrakes Main Window
/// </summary>
[Export(typeof(IMainViewModel))]
public class MainViewModel : ViewModelBase, IMainViewModel
{
#region Private Variables and Services
/// <summary>
/// The Source Scan Service.
/// </summary>
private readonly IScan scanService;
/// <summary>
/// The Encode Service
/// </summary>
private readonly IQueueProcessor queueProcessor;
/// <summary>
/// The preset service
/// </summary>
private readonly IPresetService presetService;
/// <summary>
/// HandBrakes Main Window Title
/// </summary>
private string windowName;
/// <summary>
/// The Source Label
/// </summary>
private string sourceLabel;
/// <summary>
/// The Toolbar Status Label
/// </summary>
private string programStatusLabel;
#endregion
#region Properties
[ImportingConstructor]
public MainViewModel(IWindowManager windowManager) : base(windowManager)
{
// Setup Services (TODO - Bring Castle back into the project to wire these up for us)
this.scanService = File.Exists("hb.dll") ? (IScan)new LibScan() : new ScanService();
this.queueProcessor = new QueueProcessor(Process.GetProcessesByName("HandBrake").Length);
this.presetService = new PresetService();
// Setup Properties
this.WindowTitle = "HandBrake WPF Test Application";
// Setup Events
this.scanService.ScanStared += this.ScanStared;
this.scanService.ScanCompleted += this.ScanCompleted;
this.scanService.ScanStatusChanged += this.ScanStatusChanged;
this.queueProcessor.QueueCompleted += this.QueueCompleted;
this.queueProcessor.QueuePaused += this.QueuePaused;
this.queueProcessor.EncodeService.EncodeStarted += this.EncodeStarted;
this.queueProcessor.EncodeService.EncodeStatusChanged += this.EncodeStatusChanged;
}
/// <summary>
/// Gets or sets TestProperty.
/// </summary>
public string WindowTitle
{
get
{
return this.windowName;
}
set
{
if (!object.Equals(this.windowName, value))
{
this.windowName = value;
}
}
}
/// <summary>
/// Gets a list of presets
/// </summary>
public ObservableCollection<Preset> Presets
{
get
{
return this.presetService.Presets;
}
}
/// <summary>
/// Gets or sets The Current Encode Task that the user is building
/// </summary>
public EncodeTask CurrentTask { get; set; }
/// <summary>
/// Gets or sets the Last Scanned Source
/// This object contains information about the scanned source.
/// </summary>
public Source ScannedSource { get; set; }
/// <summary>
/// Gets or sets the Source Label
/// This indicates the status of scans.
/// </summary>
public string SourceLabel
{
get
{
return string.IsNullOrEmpty(this.sourceLabel) ? "Select 'Source' to continue" : this.sourceLabel;
}
set
{
if (!object.Equals(this.sourceLabel, value))
{
this.sourceLabel = value;
}
}
}
/// <summary>
/// Gets or sets the Program Status Toolbar Label
/// This indicates the status of HandBrake
/// </summary>
public string ProgramStatusLabel
{
get
{
return string.IsNullOrEmpty(this.programStatusLabel) ? "Ready" : this.sourceLabel;
}
set
{
if (!object.Equals(this.programStatusLabel, value))
{
this.programStatusLabel = value;
}
}
}
#endregion
/// <summary>
/// Shutdown this View
/// </summary>
public void Shutdown()
{
// Unsubscribe from Events.
this.scanService.ScanStared -= this.ScanStared;
this.scanService.ScanCompleted -= this.ScanCompleted;
this.scanService.ScanStatusChanged -= this.ScanStatusChanged;
this.queueProcessor.QueueCompleted -= this.QueueCompleted;
this.queueProcessor.QueuePaused -= this.QueuePaused;
this.queueProcessor.EncodeService.EncodeStarted -= this.EncodeStarted;
this.queueProcessor.EncodeService.EncodeStatusChanged -= this.EncodeStatusChanged;
}
#region Menu and Taskbar
public void AboutApplication()
{
}
/// <summary>
/// Shutdown the Application
/// </summary>
public void ExitApplication()
{
Application.Current.Shutdown();
}
#endregion
#region Event Handlers
/// <summary>
/// Handle the Scan Status Changed Event.
/// </summary>
/// <param name="sender">
/// The Sender
/// </param>
/// <param name="e">
/// The EventArgs
/// </param>
private void ScanStatusChanged(object sender, HandBrake.ApplicationServices.EventArgs.ScanProgressEventArgs e)
{
this.SourceLabel = "Scanning Title " + e.CurrentTitle + " of " + e.Titles;
}
/// <summary>
/// Handle the Scan Completed Event
/// </summary>
/// <param name="sender">
/// The Sender
/// </param>
/// <param name="e">
/// The EventArgs
/// </param>
private void ScanCompleted(object sender, HandBrake.ApplicationServices.EventArgs.ScanCompletedEventArgs e)
{
if (e.Successful)
{
this.ScannedSource = this.scanService.SouceData;
}
}
/// <summary>
/// Handle the Scan Started Event
/// </summary>
/// <param name="sender">
/// The Sender
/// </param>
/// <param name="e">
/// The EventArgs
/// </param>
private void ScanStared(object sender, EventArgs e)
{
// TODO - Disable relevant parts of the UI.
}
/// <summary>
/// The Encode Status has changed Handler
/// </summary>
/// <param name="sender">
/// The Sender
/// </param>
/// <param name="e">
/// The Encode Progress Event Args
/// </param>
private void EncodeStatusChanged(object sender, HandBrake.ApplicationServices.EventArgs.EncodeProgressEventArgs e)
{
//
}
/// <summary>
/// Encode Started Handler
/// </summary>
/// <param name="sender">
/// The Sender
/// </param>
/// <param name="e">
/// The EventArgs
/// </param>
private void EncodeStarted(object sender, EventArgs e)
{
// TODO Handle Updating the UI
}
/// <summary>
/// The Queue has been paused handler
/// </summary>
/// <param name="sender">
/// The Sender
/// </param>
/// <param name="e">
/// The EventArgs
/// </param>
private void QueuePaused(object sender, EventArgs e)
{
// TODO Handle Updating the UI
}
/// <summary>
/// The Queue has completed handler
/// </summary>
/// <param name="sender">
/// The Sender
/// </param>
/// <param name="e">
/// The EventArgs
/// </param>
private void QueueCompleted(object sender, EventArgs e)
{
// TODO Handle Updating the UI
}
#endregion
}
}
|