blob: a5ba0c7ffb290dbf66e5dafb158cd78ba8b7f088 (
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="UserSettingConstants.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>
// Constants for the User Settings Service
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF
{
/// <summary>
/// Constants for the User Settings Service
/// </summary>
public class UserSettingConstants
{
#region Constants and Fields
/// <summary>
/// Auto name format
/// </summary>
public const string AutoNameFormat = "autoNameFormat";
/// <summary>
/// Autoname path
/// </summary>
public const string AutoNamePath = "autoNamePath";
/// <summary>
/// Auto Name Remove underscore
/// </summary>
public const string AutoNameRemoveUnderscore = "AutoNameRemoveUnderscore";
/// <summary>
/// Auto Name Title Case
/// </summary>
public const string AutoNameTitleCase = "AutoNameTitleCase";
/// <summary>
/// Auto Naming
/// </summary>
public const string AutoNaming = "autoNaming";
/// <summary>
/// Clear old logs
/// </summary>
public const string ClearOldLogs = "clearOldLogs";
/// <summary>
/// Update check interval
/// </summary>
public const string DaysBetweenUpdateCheck = "daysBetweenUpdateCheck";
/// <summary>
/// Use Default Player
/// </summary>
public const string DefaultPlayer = "defaultPlayer";
/// <summary>
/// Last Update Check
/// </summary>
public const string LastUpdateCheckDate = "lastUpdateCheckDate";
/// <summary>
/// Main Window Minimise
/// </summary>
public const string MainWindowMinimize = "MainWindowMinimize";
/// <summary>
/// Min Title Length
/// </summary>
public const string MinTitleLength = "MinTitleLength";
/// <summary>
/// Update Status
/// </summary>
public const string UpdateStatus = "updateStatus";
/// <summary>
/// Use m4v
/// </summary>
public const string UseM4v = "useM4v";
/// <summary>
/// Vlc Path
/// </summary>
public const string VLCPath = "VLC_Path";
/// <summary>
/// The Instance Id
/// </summary>
public const string InstanceId = "InstanceId";
/// <summary>
/// The X264 Stepper
/// </summary>
public const string X264Step = "X264Step";
/// <summary>
/// The show advanced tab.
/// </summary>
public const string ShowAdvancedTab = "ShowAdvancedTab";
/// <summary>
/// The last preview duration
/// </summary>
public const string LastPreviewDuration = "LastPreviewDuration";
/// <summary>
/// When Complete Action
/// </summary>
public const string WhenCompleteAction = "WhenCompleteAction";
/// <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>
/// Prevent Sleep
/// </summary>
public const string PreventSleep = "PreventSleep";
/// <summary>
/// Pause Queue on Low Disk Space
/// </summary>
public const string PauseOnLowDiskspace = "PauseOnLowDiskspace";
/// <summary>
/// Low Disk Space Warning Level in Bytes.
/// </summary>
public const string PauseOnLowDiskspaceLevel = "LowDiskSpaceWarningLevelInBytes";
/// <summary>
/// The remove punctuation.
/// </summary>
public const string RemovePunctuation = "RemovePunctuation";
/// <summary>
/// The Show Preset Panel
/// </summary>
public const string ShowPresetPanel = "ShowPresetPanel";
/// <summary>
/// The reset when done action.
/// </summary>
public const string ResetWhenDoneAction = "ResetWhenDoneAction";
/// <summary>
/// The disable lib dvd nav.
/// </summary>
public const string DisableLibDvdNav = "DisableLibDvdNav";
/// <summary>
/// The disable quick sync decoding.
/// </summary>
public const string DisableQuickSyncDecoding = "DisableQuickSyncDecoding";
/// <summary>
/// Setting indicating whether to use qsv decode for non qsv encoders
/// </summary>
public const string UseQSVDecodeForNonQSVEnc = "UseQSVDecodeForNonQSVEnc";
/// <summary>
/// The scaling mode.
/// </summary>
public const string ScalingMode = "ScalingMode";
/// <summary>
/// Preview Scan Count
/// </summary>
public const string PreviewScanCount = "previewScanCount";
/// <summary>
/// The Verbosity
/// </summary>
public const string Verbosity = "Verbosity";
/// <summary>
/// Min Title Scan Duration
/// </summary>
public const string MinScanDuration = "MinTitleScanDuration";
/// <summary>
/// Process Priority
/// </summary>
public const string ProcessPriority = "ProcessPriority";
/// <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>
/// The clear completed from queue.
/// </summary>
public const string ClearCompletedFromQueue = "ClearCompletedFromQueue";
/// <summary>
/// The Show Queue in-line option.
/// </summary>
public const string ShowQueueInline = "ShowQueueInline";
/// <summary>
/// Setting to allow mid-version upgrades of presets.
/// </summary>
public const string ForcePresetReset = "ForcePresetReset";
/// <summary>
/// Setting to record the expansion state of preset categories.
/// </summary>
public const string PresetExpandedStateList = "PresetExpandedStateList";
#endregion
}
}
|