summaryrefslogtreecommitdiffstats
path: root/win/C#/HandBrake.ApplicationServices/EventArgs/QueueProgressEventArgs.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2011-01-07 21:19:49 +0000
committersr55 <[email protected]>2011-01-07 21:19:49 +0000
commit9f60eb35c21d513c6ce6b272e371a279b8a32ae5 (patch)
tree8663ceb2de2b74c05bc639fdcdd720034005a1af /win/C#/HandBrake.ApplicationServices/EventArgs/QueueProgressEventArgs.cs
parentee94883ba1b2e3d0dc432c84a2c05db5812fe1c6 (diff)
WinGui:
- First of many check-ins to refactor the ApplicationServices library to make it more friendly and reliable. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3737 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/HandBrake.ApplicationServices/EventArgs/QueueProgressEventArgs.cs')
-rw-r--r--win/C#/HandBrake.ApplicationServices/EventArgs/QueueProgressEventArgs.cs33
1 files changed, 33 insertions, 0 deletions
diff --git a/win/C#/HandBrake.ApplicationServices/EventArgs/QueueProgressEventArgs.cs b/win/C#/HandBrake.ApplicationServices/EventArgs/QueueProgressEventArgs.cs
new file mode 100644
index 000000000..c2af07fb1
--- /dev/null
+++ b/win/C#/HandBrake.ApplicationServices/EventArgs/QueueProgressEventArgs.cs
@@ -0,0 +1,33 @@
+/* QueueProgressEventArgs.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 HandBrake.ApplicationServices.EventArgs
+{
+ using System;
+
+ using HandBrake.ApplicationServices.Model;
+
+ /// <summary>
+ /// Queue Progress Event Args
+ /// </summary>
+ public class QueueProgressEventArgs : EventArgs
+ {
+ /// <summary>
+ /// Initializes a new instance of the <see cref="QueueProgressEventArgs"/> class.
+ /// </summary>
+ /// <param name="newJob">
+ /// The new job.
+ /// </param>
+ public QueueProgressEventArgs(Job newJob)
+ {
+ this.NewJob = newJob;
+ }
+
+ /// <summary>
+ /// Gets or sets the new job which is about to be processed.
+ /// </summary>
+ public Job NewJob { get; set; }
+ }
+}