blob: c81f315a58ee9417fa8d4c681e09e0a2f20df47b (
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
|
// --------------------------------------------------------------------------------------------------------------------
// <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
public const string AutoNameFormat = "autoNameFormat";
public const string AutoNamePath = "autoNamePath";
public const string AutoNameRemoveUnderscore = "AutoNameRemoveUnderscore";
public const string AutoNameTitleCase = "AutoNameTitleCase";
public const string AutoNaming = "autoNaming";
public const string ClearOldLogs = "clearOldLogs";
public const string DaysBetweenUpdateCheck = "daysBetweenUpdateCheck";
public const string DefaultPlayer = "defaultPlayer";
public const string LastUpdateCheckDate = "lastUpdateCheckDate";
public const string MainWindowMinimize = "MainWindowMinimize";
public const string UpdateStatus = "updateStatus";
public const string UseM4v = "useM4v";
public const string VLCPath = "VLC_Path";
public const string InstanceId = "InstanceId";
public const string X264Step = "X264Step";
public const string ShowAdvancedTab = "ShowAdvancedTab";
public const string LastPreviewDuration = "LastPreviewDuration";
public const string WhenCompleteAction = "WhenCompleteAction";
public const string SendFile = "SendFile";
public const string SendFileTo = "SendFileTo";
public const string SendFileToArgs = "SendFileToArgs";
public const string PreventSleep = "PreventSleep";
public const string PauseOnLowDiskspace = "PauseOnLowDiskspace";
public const string PauseOnLowDiskspaceLevel = "LowDiskSpaceWarningLevelInBytes";
public const string RemovePunctuation = "RemovePunctuation";
public const string ShowPresetPanel = "ShowPresetPanelOption";
public const string ResetWhenDoneAction = "ResetWhenDoneAction";
public const string DisableLibDvdNav = "DisableLibDvdNav";
public const string EnableQuickSyncDecoding = "EnableQuickSyncDecoding";
public const string UseQSVDecodeForNonQSVEnc = "UseQSVDecodeForNonQSVEnc";
public const string ScalingMode = "ScalingMode";
public const string PreviewScanCount = "previewScanCount";
public const string Verbosity = "Verbosity";
public const string MinScanDuration = "MinTitleScanDuration";
public const string ProcessPriority = "ProcessPriority";
public const string SaveLogToCopyDirectory = "SaveLogToCopyDirectory";
public const string SaveLogWithVideo = "SaveLogWithVideo";
public const string SaveLogCopyDirectory = "SaveLogCopyDirectory";
public const string ClearCompletedFromQueue = "ClearCompletedFromQueue";
public const string ShowQueueInline = "ShowQueueInline";
public const string ForcePresetReset = "ForcePresetReset";
public const string PresetExpandedStateList = "PresetExpandedStateList";
public const string ShowStatusInTitleBar = "ShowStatusInTitleBar";
public const string ShowPreviewOnSummaryTab = "ShowPreviewOnSummaryTab";
public const string PlaySoundWhenDone = "PlaySoundWhenDone";
public const string PlaySoundWhenQueueDone = "PlaySoundWhenQueueDone";
public const string WhenDoneAudioFile = "WhenDoneAudioFile";
public const string RemoteServiceEnabled = "RemoteServiceEnabled";
public const string RemoteServicePort = "RemoteServicePort";
public const string EnableQuickSyncEncoding = "EnableQuickSyncEncoding";
public const string EnableVceEncoder = "EnableVceEncoder";
public const string EnableNvencEncoder = "EnableNvencEncoder";
public const string ShowExperimentalQueue = "ShowExperimentalQueue";
#endregion
}
}
|