summaryrefslogtreecommitdiffstats
path: root/win/CS/Model
diff options
context:
space:
mode:
authorsr55 <[email protected]>2011-03-13 16:44:49 +0000
committersr55 <[email protected]>2011-03-13 16:44:49 +0000
commitb6a5d4eba610711d15ed99dc5f2e9e126ce06086 (patch)
treee72eb5be161c3ac9b01bbc3b3efcd4ab8f91e06c /win/CS/Model
parent38f64c238720fe0524f99b380fbb1a8c795a7586 (diff)
Rename Direction C# to CS
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3846 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/Model')
-rw-r--r--win/CS/Model/ActivityLogMode.cs23
-rw-r--r--win/CS/Model/QueryEncodeMode.cs16
-rw-r--r--win/CS/Model/QueryPictureSettingsMode.cs18
-rw-r--r--win/CS/Model/SourceType.cs33
4 files changed, 90 insertions, 0 deletions
diff --git a/win/CS/Model/ActivityLogMode.cs b/win/CS/Model/ActivityLogMode.cs
new file mode 100644
index 000000000..1ab699ea3
--- /dev/null
+++ b/win/CS/Model/ActivityLogMode.cs
@@ -0,0 +1,23 @@
+/* ActivityLogMode.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 Log Mode, either scan or encode
+ /// </summary>
+ public enum ActivityLogMode
+ {
+ /// <summary>
+ /// Scan Mode
+ /// </summary>
+ Scan,
+
+ /// <summary>
+ /// Encode mode
+ /// </summary>
+ Encode
+ }
+}
diff --git a/win/CS/Model/QueryEncodeMode.cs b/win/CS/Model/QueryEncodeMode.cs
new file mode 100644
index 000000000..63e6eccff
--- /dev/null
+++ b/win/CS/Model/QueryEncodeMode.cs
@@ -0,0 +1,16 @@
+/* AddPresetMode.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>
+ /// Picture Settings Mode when adding presets
+ /// </summary>
+ public enum QueryEncodeMode
+ {
+ Preview,
+ Standard
+ }
+} \ No newline at end of file
diff --git a/win/CS/Model/QueryPictureSettingsMode.cs b/win/CS/Model/QueryPictureSettingsMode.cs
new file mode 100644
index 000000000..539027145
--- /dev/null
+++ b/win/CS/Model/QueryPictureSettingsMode.cs
@@ -0,0 +1,18 @@
+/* AddPresetMode.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>
+ /// Picture Settings Mode when adding presets
+ /// </summary>
+ public enum QueryPictureSettingsMode
+ {
+ None,
+ Custom,
+ SourceMaximum,
+ UserInterfaceSettings
+ }
+} \ No newline at end of file
diff --git a/win/CS/Model/SourceType.cs b/win/CS/Model/SourceType.cs
new file mode 100644
index 000000000..2081ce985
--- /dev/null
+++ b/win/CS/Model/SourceType.cs
@@ -0,0 +1,33 @@
+/* SourceType.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 Type of source that the user has scanned
+ /// </summary>
+ public enum SourceType
+ {
+ /// <summary>
+ /// No Source Selected
+ /// </summary>
+ None = 0,
+
+ /// <summary>
+ /// The soruce selected is a folder
+ /// </summary>
+ Folder,
+
+ /// <summary>
+ /// The source selected is a DVD drive
+ /// </summary>
+ DvdDrive,
+
+ /// <summary>
+ /// The source selected is a Video File
+ /// </summary>
+ VideoFile
+ }
+} \ No newline at end of file