summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Model/Options/ProcessPriority.cs
diff options
context:
space:
mode:
Diffstat (limited to 'win/CS/HandBrakeWPF/Model/Options/ProcessPriority.cs')
-rw-r--r--win/CS/HandBrakeWPF/Model/Options/ProcessPriority.cs33
1 files changed, 33 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Model/Options/ProcessPriority.cs b/win/CS/HandBrakeWPF/Model/Options/ProcessPriority.cs
new file mode 100644
index 000000000..f39843d26
--- /dev/null
+++ b/win/CS/HandBrakeWPF/Model/Options/ProcessPriority.cs
@@ -0,0 +1,33 @@
+// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="ProcessPriority.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>
+// Defines the ProcessPriority type.
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrakeWPF.Model.Options
+{
+ using HandBrake.Interop.Attributes;
+
+ using HandBrakeWPF.Properties;
+
+ public enum ProcessPriority
+ {
+ [DisplayName(typeof(Resources), "ProcessPriority_High")]
+ High = 0,
+
+ [DisplayName(typeof(Resources), "ProcessPriority_AboveNormal")]
+ AboveNormal,
+
+ [DisplayName(typeof(Resources), "ProcessPriority_Normal")]
+ Normal,
+
+ [DisplayName(typeof(Resources), "ProcessPriority_BelowNormal")]
+ BelowNormal,
+
+ [DisplayName(typeof(Resources), "ProcessPriority_Low")]
+ Low
+ }
+} \ No newline at end of file