/* UserSettingConstants.cs $
This file is part of the HandBrake source code.
Homepage: .
It may be used under the terms of the GNU General Public License. */
namespace HandBrake.ApplicationServices
{
///
/// Constants for the User Settings Service
///
public class UserSettingConstants
{
///
/// The Verbosity
///
public const string Verbosity = "Verbosity";
///
/// The X264 Stepper
///
public const string X264Step = "X264Step";
///
/// When Complete Action
///
public const string WhenCompleteAction = "WhenCompleteAction";
///
/// Growl Encodes
///
public const string GrowlEncode = "GrowlEncode";
///
/// Growl Queues
///
public const string GrowlQueue = "GrowlQueue";
///
/// Process Priority
///
public const string ProcessPriority = "ProcessPriority";
///
/// Prevent Sleep
///
public const string PreventSleep = "PreventSleep";
///
/// Show the CLI window
///
public const string ShowCLI = "ShowCLI";
///
/// Save Log Directory
///
public const string SaveLogToCopyDirectory = "SaveLogToCopyDirectory";
///
/// Save log with video
///
public const string SaveLogWithVideo = "SaveLogWithVideo";
///
/// Save copy of the log to a directory
///
public const string SaveLogCopyDirectory = "SaveLogCopyDirectory";
///
/// HandBrakes version
///
public const string HandBrakeVersion = "HandBrakeVersion";
///
/// HandBrakes build
///
public const string HandBrakeBuild = "HandBrakeBuild";
///
/// HandBrakes build
///
public const string HandBrakePlatform = "HandBrakePlatform";
///
/// HandBrakes CLI Exe SHA1 Hash
///
public const string HandBrakeExeHash = "HandBrakeExeHash";
///
/// The Instance Id
///
public const string InstanceId = "InstanceId";
///
/// Disable Libdvdnav
///
public const string DisableLibDvdNav = "DisableLibDvdNav";
///
/// Send file enabled.
///
public const string SendFile = "SendFile";
///
/// Send file to application path
///
public const string SendFileTo = "SendFileTo";
///
/// Send file to arguments
///
public const string SendFileToArgs = "SendFileToArgs";
}
}