X-Git-Url: http://git.osdn.jp/view?a=blobdiff_plain;f=win%2FC%23%2FfrmOptions.cs;h=9b33b9030cbad90025389242183c2d469618a412;hb=2157ff283ee677c229c017d13a84805b0ab24fd3;hp=32c63b23a83256573ce0cc0b959b78a48be183fe;hpb=4271438d592e2eb3a97b1e8961c64b2b1d29c2b5;p=handbrake-jp%2Fhandbrake-jp-git.git diff --git a/win/C#/frmOptions.cs b/win/C#/frmOptions.cs index 32c63b23..9b33b903 100644 --- a/win/C#/frmOptions.cs +++ b/win/C#/frmOptions.cs @@ -6,49 +6,52 @@ using System; using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Text; +using System.Globalization; using System.Windows.Forms; +using Handbrake.Functions; namespace Handbrake { public partial class frmOptions : Form { private frmMain mainWindow; - /// - /// When the form loads, Initialise all the setting components with their correct values - /// - public frmOptions(frmMain window) + + public frmOptions(frmMain mw) { InitializeComponent(); - mainWindow = window; + mainWindow = mw; + + IDictionary langList = Main.mapLanguages(); + foreach (string item in langList.Keys) + drop_preferredLang.Items.Add(item); // ############################# // General // ############################# // Enable Tooltips. - if (Properties.Settings.Default.tooltipEnable == "Checked") + if (Properties.Settings.Default.tooltipEnable) { check_tooltip.CheckState = CheckState.Checked; ToolTip.Active = true; } // Setup Widgets to match settings. - if (Properties.Settings.Default.updateStatus == "Checked") + if (Properties.Settings.Default.updateStatus) check_updateCheck.CheckState = CheckState.Checked; - // enable loading of default user settings. - if (Properties.Settings.Default.defaultSettings == "Checked") - check_userDefaultSettings.CheckState = CheckState.Checked; - // On Encode Completeion Action drp_completeOption.Text = Properties.Settings.Default.CompletionOption; - + + // Growl. + if (Properties.Settings.Default.growlEncode) + check_growlEncode.CheckState = CheckState.Checked; + + if (Properties.Settings.Default.growlQueue) + check_GrowlQueue.CheckState = CheckState.Checked; + // Enable auto naming feature. - if (Properties.Settings.Default.autoNaming == "Checked") + if (Properties.Settings.Default.autoNaming) check_autoNaming.CheckState = CheckState.Checked; // Store the auto name path @@ -59,22 +62,35 @@ namespace Handbrake // Store auto name format txt_autoNameFormat.Text = Properties.Settings.Default.autoNameFormat; + // Use iPod/iTunes friendly .m4v extension for MP4 files. + if (Properties.Settings.Default.useM4v) + check_m4v.CheckState = CheckState.Checked; + // ############################# // Picture Tab // ############################# - // Store decomb value string - txt_decomb.Text = Properties.Settings.Default.decomb; - // VLC Path txt_vlcPath.Text = Properties.Settings.Default.VLC_Path; // ############################# + // Audio and Subtitles Tab + // ############################# + + drop_preferredLang.SelectedItem = Properties.Settings.Default.NativeLanguage; + + if (Properties.Settings.Default.DubAudio) + radio_dub.Checked = true; + else + radio_foreignAndSubs.Checked = true; + + + // ############################# // CLI // ############################# // Enable Start CLI minimized - if (Properties.Settings.Default.cli_minimized == "Checked") + if (Properties.Settings.Default.cli_minimized) check_cli_minimized.CheckState = CheckState.Checked; // Number of processor cores @@ -83,14 +99,18 @@ namespace Handbrake // Priority level for encodes drp_Priority.Text = Properties.Settings.Default.processPriority; - // Save individual log files - if (Properties.Settings.Default.saveLog == "Checked") - check_keepLogs.CheckState = CheckState.Checked; + // Log Verbosity Level + cb_logVerboseLvl.SelectedIndex = Properties.Settings.Default.verboseLevel; + // Save logs in the same directory as encoded files - if (Properties.Settings.Default.saveLogWithVideo == "Checked") + if (Properties.Settings.Default.saveLogWithVideo) check_saveLogWithVideo.CheckState = CheckState.Checked; + // Save Logs in a specified path + if (Properties.Settings.Default.saveLogToSpecifiedPath) + check_logsInSpecifiedLocation.CheckState = CheckState.Checked; + // The saved log path text_logPath.Text = Properties.Settings.Default.saveLogPath; @@ -99,59 +119,101 @@ namespace Handbrake // Advanced // ############################# - // Unstable Snapshot checking should only be visible for stable builds. - if (Properties.Settings.Default.hb_build.ToString().EndsWith("1")) + // Minimise to Tray + if (Properties.Settings.Default.trayIconAlerts) + check_trayStatusAlerts.CheckState = CheckState.Checked; + + // Tray Balloon popups + if (Properties.Settings.Default.MainWindowMinimize) + check_mainMinimize.CheckState = CheckState.Checked; + + // Enable / Disable Query editor tab + if (Properties.Settings.Default.QueryEditorTab) + check_queryEditorTab.CheckState = CheckState.Checked; + + // Prompt on inconsistant queries + check_promptOnUnmatchingQueries.Checked = Properties.Settings.Default.PromptOnUnmatchingQueries; + + // Preset update notification + if (Properties.Settings.Default.presetNotification) + check_disablePresetNotification.CheckState = CheckState.Checked; + + // Experimental In-GUI encode status indicator. + if (Properties.Settings.Default.enocdeStatusInGui) + check_inGuiStatus.CheckState = CheckState.Checked; + + // Days between update checks + switch (Properties.Settings.Default.daysBetweenUpdateCheck) { - lbl_appcastUnstable.Visible = false; - check_snapshot.Visible = false; + case 1: + drop_updateCheckDays.SelectedIndex = 0; + break; + case 7: + drop_updateCheckDays.SelectedIndex = 1; + break; + case 30: + drop_updateCheckDays.SelectedIndex = 2; + break; } - // Enable snapshot updating - if (Properties.Settings.Default.checkSnapshot == "Checked") - check_snapshot.CheckState = CheckState.Checked; + // x264 step + string step = Properties.Settings.Default.x264cqstep.ToString(new CultureInfo("en-US")); + switch (step) + { + case "1": + drop_x264step.SelectedIndex = 0; + break; + case "0.5": + drop_x264step.SelectedIndex = 1; + break; + case "0.25": + drop_x264step.SelectedIndex = 2; + break; + case "0.2": + drop_x264step.SelectedIndex = 3; + break; + } - // Enable GUI DVD Drive detection code - if (Properties.Settings.Default.drive_detection == "Checked") - btn_drive_detect.CheckState = CheckState.Checked; + // Use Experimental dvdnav + if (Properties.Settings.Default.dvdnav) + check_dvdnav.CheckState = CheckState.Checked; - // Enable snapshot updating - if (Properties.Settings.Default.MainWindowMinimize == "Checked") - check_mainMinimize.CheckState = CheckState.Checked; + // ############################# + // Debug + // ############################# + if (Properties.Settings.Default.disableResCalc) + check_disableResCalc.Checked = true; } #region General private void check_updateCheck_CheckedChanged(object sender, EventArgs e) { - Properties.Settings.Default.updateStatus = check_updateCheck.CheckState.ToString(); - } - - private void check_userDefaultSettings_CheckedChanged(object sender, EventArgs e) - { - Properties.Settings.Default.defaultSettings = check_userDefaultSettings.CheckState.ToString(); + Properties.Settings.Default.updateStatus = check_updateCheck.Checked; } private void check_tooltip_CheckedChanged(object sender, EventArgs e) { - Properties.Settings.Default.tooltipEnable = check_tooltip.CheckState.ToString(); - if (check_tooltip.Checked) - { - ToolTip.Active = true; - mainWindow.ToolTip.Active = true; - } - else - { - ToolTip.Active = false; - mainWindow.ToolTip.Active = false; - } + Properties.Settings.Default.tooltipEnable = check_tooltip.Checked; } + private void drp_completeOption_SelectedIndexChanged(object sender, EventArgs e) { Properties.Settings.Default.CompletionOption = drp_completeOption.Text; } + private void check_GrowlQueue_CheckedChanged(object sender, EventArgs e) + { + Properties.Settings.Default.growlQueue = check_GrowlQueue.Checked; + } + + private void check_growlEncode_CheckedChanged(object sender, EventArgs e) + { + Properties.Settings.Default.growlEncode = check_growlEncode.Checked; + } + private void check_autoNaming_CheckedChanged(object sender, EventArgs e) { - Properties.Settings.Default.autoNaming = check_autoNaming.CheckState.ToString(); + Properties.Settings.Default.autoNaming = check_autoNaming.Checked; } private void txt_autoNameFormat_TextChanged(object sender, EventArgs e) @@ -175,14 +237,14 @@ namespace Handbrake else Properties.Settings.Default.autoNamePath = text_an_path.Text; } - #endregion - #region Picture - private void txt_decomb_TextChanged(object sender, EventArgs e) + private void check_m4v_CheckedChanged(object sender, EventArgs e) { - Properties.Settings.Default.decomb = txt_decomb.Text; + Properties.Settings.Default.useM4v = check_m4v.Checked; } + #endregion + #region Picture private void btn_vlcPath_Click(object sender, EventArgs e) { openFile_vlc.ShowDialog(); @@ -195,10 +257,27 @@ namespace Handbrake } #endregion + #region Audio and Subtitles + private void drop_preferredLang_SelectedIndexChanged(object sender, EventArgs e) + { + Properties.Settings.Default.NativeLanguage = drop_preferredLang.SelectedItem.ToString(); + } + private void radio_dub_CheckedChanged(object sender, EventArgs e) + { + if (radio_dub.Checked) + Properties.Settings.Default.DubAudio = true; + } + private void radio_foreignAndSubs_CheckedChanged(object sender, EventArgs e) + { + if (radio_foreignAndSubs.Checked) + Properties.Settings.Default.DubAudio = false; + } + #endregion + #region CLI private void check_cli_minimized_CheckedChanged(object sender, EventArgs e) { - Properties.Settings.Default.cli_minimized = check_cli_minimized.CheckState.ToString(); + Properties.Settings.Default.cli_minimized = check_cli_minimized.Checked; } private void drp_processors_SelectedIndexChanged(object sender, EventArgs e) @@ -211,16 +290,19 @@ namespace Handbrake Properties.Settings.Default.processPriority = drp_Priority.Text; } - private void check_keepLogs_CheckedChanged(object sender, EventArgs e) + private void cb_logVerboseLvl_SelectedIndexChanged(object sender, EventArgs e) { - Properties.Settings.Default.saveLog = check_keepLogs.CheckState.ToString(); + Properties.Settings.Default.verboseLevel = cb_logVerboseLvl.SelectedIndex; } private void check_saveLogWithVideo_CheckedChanged(object sender, EventArgs e) { - Properties.Settings.Default.saveLogWithVideo = check_saveLogWithVideo.CheckState.ToString(); - if (check_saveLogWithVideo.Checked == true) - text_logPath.Text = ""; + Properties.Settings.Default.saveLogWithVideo = check_saveLogWithVideo.Checked; + } + + private void check_logsInSpecifiedLocation_CheckedChanged(object sender, EventArgs e) + { + Properties.Settings.Default.saveLogToSpecifiedPath = check_logsInSpecifiedLocation.Checked; } private void btn_saveLog_Click(object sender, EventArgs e) @@ -234,26 +316,110 @@ namespace Handbrake private void text_logPath_TextChanged(object sender, EventArgs e) { Properties.Settings.Default.saveLogPath = text_logPath.Text; - if (text_logPath.Text != String.Empty) - check_saveLogWithVideo.Checked = false; } + private void btn_viewLogs_Click(object sender, EventArgs e) + { + string logDir = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\HandBrake\\logs"; + string windir = Environment.GetEnvironmentVariable("WINDIR"); + System.Diagnostics.Process prc = new System.Diagnostics.Process(); + prc.StartInfo.FileName = windir + @"\explorer.exe"; + prc.StartInfo.Arguments = logDir; + prc.Start(); + } + + private void btn_clearLogs_Click(object sender, EventArgs e) + { + DialogResult result = MessageBox.Show("Are you sure you wish to clear the log file directory?", "Clear Logs", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question); + if (result == DialogResult.Yes) + { + Main.clearLogs(); + MessageBox.Show(this, "HandBrake's Log file directory has been cleared!", "Notice", MessageBoxButtons.OK, + MessageBoxIcon.Information); + } + } #endregion #region Advanced - private void btn_drive_detect_CheckedChanged(object sender, EventArgs e) + + private void check_mainMinimize_CheckedChanged(object sender, EventArgs e) { - Properties.Settings.Default.drive_detection = btn_drive_detect.CheckState.ToString(); + Properties.Settings.Default.MainWindowMinimize = check_mainMinimize.Checked; + check_trayStatusAlerts.Enabled = check_mainMinimize.Checked; } - private void check_mainMinimize_CheckedChanged(object sender, EventArgs e) + private void check_trayStatusAlerts_CheckedChanged(object sender, EventArgs e) + { + Properties.Settings.Default.trayIconAlerts = check_trayStatusAlerts.Checked; + } + + private void check_queryEditorTab_CheckedChanged(object sender, EventArgs e) { - Properties.Settings.Default.MainWindowMinimize = check_mainMinimize.CheckState.ToString(); + Properties.Settings.Default.QueryEditorTab = check_queryEditorTab.Checked; + check_promptOnUnmatchingQueries.Enabled = check_queryEditorTab.Checked; } - private void check_snapshot_CheckedChanged(object sender, EventArgs e) + private void check_promptOnUnmatchingQueries_CheckedChanged(object sender, EventArgs e) + { + Properties.Settings.Default.PromptOnUnmatchingQueries = check_promptOnUnmatchingQueries.Checked; + } + + private void check_disablePresetNotification_CheckedChanged(object sender, EventArgs e) + { + Properties.Settings.Default.presetNotification = check_disablePresetNotification.Checked; + } + + private void check_inGuiStatus_CheckedChanged(object sender, EventArgs e) + { + Properties.Settings.Default.enocdeStatusInGui = check_inGuiStatus.Checked; + } + + private void drop_updateCheckDays_SelectedIndexChanged(object sender, EventArgs e) + { + switch (drop_updateCheckDays.SelectedIndex) + { + case 0: + Properties.Settings.Default.daysBetweenUpdateCheck = 1; + break; + case 1: + Properties.Settings.Default.daysBetweenUpdateCheck = 7; + break; + case 2: + Properties.Settings.Default.daysBetweenUpdateCheck = 30; + break; + } + } + + private void x264step_SelectedIndexChanged(object sender, EventArgs e) + { + switch (drop_x264step.SelectedIndex) + { + case 0: + Properties.Settings.Default.x264cqstep = 1.0; + break; + case 1: + Properties.Settings.Default.x264cqstep = 0.50; + break; + case 2: + Properties.Settings.Default.x264cqstep = 0.25; + break; + case 3: + Properties.Settings.Default.x264cqstep = 0.20; + break; + } + mainWindow.setQualityFromSlider(); + } + + private void check_dvdnav_CheckedChanged(object sender, EventArgs e) + { + Properties.Settings.Default.dvdnav = check_dvdnav.Checked; + } + #endregion + + #region Debug + private void check_disableResCalc_CheckedChanged(object sender, EventArgs e) { - Properties.Settings.Default.checkSnapshot = check_snapshot.CheckState.ToString(); + Properties.Settings.Default.disableResCalc = check_disableResCalc.Checked; } #endregion