// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// The User Setting Constants
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.ApplicationServices
{
///
/// Constants for the User Settings Service
///
public class ASUserSettingConstants
{
///
/// The Verbosity
///
public const string Verbosity = "Verbosity";
///
/// When Complete Action
///
public const string WhenCompleteAction = "WhenCompleteAction";
///
/// Process Priority
///
public const string ProcessPriority = "ProcessPriority";
///
/// Prevent Sleep
///
public const string PreventSleep = "PreventSleep";
///
/// 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";
///
/// 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";
///
/// Min Title Scan Duration
///
public const string MinScanDuration = "MinTitleScanDuration";
///
/// Preview Scan Count
///
public const string PreviewScanCount = "previewScanCount";
///
/// Clear completed items from the queue automatically.
///
public const string ClearCompletedFromQueue = "ClearCompletedFromQueue";
}
}