summaryrefslogtreecommitdiffstats
path: root/win/C#/Model
diff options
context:
space:
mode:
authorsr55 <[email protected]>2010-06-06 18:22:39 +0000
committersr55 <[email protected]>2010-06-06 18:22:39 +0000
commit0c9a71f626e0e552cf670103b8dad8e61de1fb69 (patch)
tree8bda1188ea4fd4f15700b5c997c491bbe37f9f4e /win/C#/Model
parent21edb5248c8d25d334e3225e2f52ff9e8d9782dd (diff)
WinGui:
- Moved all the services that handle parsing, scanning, encodes and the queue out into a separate library. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3362 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Model')
-rw-r--r--win/C#/Model/Cropping.cs56
-rw-r--r--win/C#/Model/Job.cs55
-rw-r--r--win/C#/Model/SubtitleType.cs18
3 files changed, 0 insertions, 129 deletions
diff --git a/win/C#/Model/Cropping.cs b/win/C#/Model/Cropping.cs
deleted file mode 100644
index 63a84afb1..000000000
--- a/win/C#/Model/Cropping.cs
+++ /dev/null
@@ -1,56 +0,0 @@
-/* Cropping.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.Model
-{
- /// <summary>
- /// Cropping T B L R
- /// </summary>
- public class Cropping
- {
- /// <summary>
- /// Gets or sets Top.
- /// </summary>
- public int Top { get; set; }
-
- /// <summary>
- /// Gets or sets Bottom.
- /// </summary>
- public int Bottom { get; set; }
-
- /// <summary>
- /// Gets or sets Left.
- /// </summary>
- public int Left { get; set; }
-
- /// <summary>
- /// Gets or sets Right.
- /// </summary>
- public int Right { get; set; }
-
- /// <summary>
- /// Create a cropping object
- /// </summary>
- /// <param name="top">
- /// The top.
- /// </param>
- /// <param name="bottom">
- /// The bottom.
- /// </param>
- /// <param name="left">
- /// The left.
- /// </param>
- /// <param name="right">
- /// The right.
- /// </param>
- /// <returns>
- /// A Cropping object
- /// </returns>
- public static Cropping CreateCroppingObject(int top, int bottom, int left, int right)
- {
- return new Cropping { Top = top, Bottom = bottom, Left = left, Right = right };
- }
- }
-}
diff --git a/win/C#/Model/Job.cs b/win/C#/Model/Job.cs
deleted file mode 100644
index 6f2721272..000000000
--- a/win/C#/Model/Job.cs
+++ /dev/null
@@ -1,55 +0,0 @@
-/* QueueItem.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.Model
-{
- /// <summary>
- /// The job.
- /// </summary>
- public struct Job
- {
- /// <summary>
- /// Gets or sets the job ID.
- /// </summary>
- public int Id { get; set; }
-
- /// <summary>
- /// Gets or sets the selected Title.
- /// </summary>
- public int Title { get; set; }
-
- /// <summary>
- /// Gets or sets the query string.
- /// </summary>
- public string Query { get; set; }
-
- /// <summary>
- /// Gets or sets a value indicating whether if this is a user or GUI generated query
- /// </summary>
- public bool CustomQuery { get; set; }
-
- /// <summary>
- /// Gets or sets the source file of encoding.
- /// </summary>
- public string Source { get; set; }
-
- /// <summary>
- /// Gets or sets the destination for the file to be encoded.
- /// </summary>
- public string Destination { get; set; }
-
- /// <summary>
- /// Gets a value indicating whether or not this instance is empty.
- /// </summary>
- public bool IsEmpty
- {
- get
- {
- return this.Id == 0 && string.IsNullOrEmpty(this.Query) && string.IsNullOrEmpty(this.Source) &&
- string.IsNullOrEmpty(this.Destination);
- }
- }
- }
-} \ No newline at end of file
diff --git a/win/C#/Model/SubtitleType.cs b/win/C#/Model/SubtitleType.cs
deleted file mode 100644
index a9c8609f3..000000000
--- a/win/C#/Model/SubtitleType.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-/* SubtitleType.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.Model
-{
- /// <summary>
- /// Subtitle Type.
- /// 0: Picture
- /// 1: Text
- /// </summary>
- public enum SubtitleType
- {
- Picture,
- Text
- }
-}