blob: 7e3ee4583e47aa9b1c28f28febd79cdd066b07d9 (
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
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="ASUserSettingConstants.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>
// The User Setting Constants
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.ApplicationServices
{
/// <summary>
/// Constants for the User Settings Service
/// </summary>
public class ASUserSettingConstants
{
/// <summary>
/// The Verbosity
/// </summary>
public const string Verbosity = "Verbosity";
/// <summary>
/// When Complete Action
/// </summary>
public const string WhenCompleteAction = "WhenCompleteAction";
/// <summary>
/// Process Priority
/// </summary>
public const string ProcessPriority = "ProcessPriority";
/// <summary>
/// Prevent Sleep
/// </summary>
public const string PreventSleep = "PreventSleep";
/// <summary>
/// Save Log Directory
/// </summary>
public const string SaveLogToCopyDirectory = "SaveLogToCopyDirectory";
/// <summary>
/// Save log with video
/// </summary>
public const string SaveLogWithVideo = "SaveLogWithVideo";
/// <summary>
/// Save copy of the log to a directory
/// </summary>
public const string SaveLogCopyDirectory = "SaveLogCopyDirectory";
/// <summary>
/// HandBrakes build
/// </summary>
public const string HandBrakeBuild = "HandBrakeBuild";
/// <summary>
/// Disable Libdvdnav
/// </summary>
public const string DisableLibDvdNav = "DisableLibDvdNav";
/// <summary>
/// Send file enabled.
/// </summary>
public const string SendFile = "SendFile";
/// <summary>
/// Send file to application path
/// </summary>
public const string SendFileTo = "SendFileTo";
/// <summary>
/// Send file to arguments
/// </summary>
public const string SendFileToArgs = "SendFileToArgs";
/// <summary>
/// Min Title Scan Duration
/// </summary>
public const string MinScanDuration = "MinTitleScanDuration";
/// <summary>
/// Preview Scan Count
/// </summary>
public const string PreviewScanCount = "previewScanCount";
/// <summary>
/// Clear completed items from the queue automatically.
/// </summary>
public const string ClearCompletedFromQueue = "ClearCompletedFromQueue";
}
}
|