using System; using System.IO; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Forms; using MPF.Core.Data; using MPF.Core.UI.ViewModels; using WPFCustomMessageBox; #pragma warning disable IDE1006 // Naming Styles namespace MPF.UI.Core.Windows { /// /// Interaction logic for OptionsWindow.xaml /// public partial class OptionsWindow : WindowBase { /// /// Read-only access to the current options view model /// public OptionsViewModel OptionsViewModel => DataContext as OptionsViewModel ?? new OptionsViewModel(new Options()); #if NET35 private System.Windows.Controls.Button? _AaruPathButton => ItemHelper.FindChild(this, "AaruPathButton"); private System.Windows.Controls.Button? _AcceptButton => ItemHelper.FindChild(this, "AcceptButton"); private System.Windows.Controls.Button? _CancelButton => ItemHelper.FindChild(this, "CancelButton"); private System.Windows.Controls.Button? _DefaultOutputPathButton => ItemHelper.FindChild(this, "DefaultOutputPathButton"); private System.Windows.Controls.Button? _DiscImageCreatorPathButton => ItemHelper.FindChild(this, "DiscImageCreatorPathButton"); private System.Windows.Controls.Button? _RedumperPathButton => ItemHelper.FindChild(this, "RedumperPathButton"); private System.Windows.Controls.Button? _RedumpLoginTestButton => ItemHelper.FindChild(this, "RedumpLoginTestButton"); private PasswordBox? _RedumpPasswordBox => ItemHelper.FindChild(this, "RedumpPasswordBox"); private System.Windows.Controls.TextBox? _RedumpUsernameTextBox => ItemHelper.FindChild(this, "RedumpUsernameTextBox"); #endif /// /// Constructor /// public OptionsWindow(Options options) { #if NET40_OR_GREATER || NETCOREAPP InitializeComponent(); #endif #if NET40_OR_GREATER || NETCOREAPP DumpSpeedCDTextBox.IsReadOnlyCaretVisible = false; DumpSpeedDVDTextBox.IsReadOnlyCaretVisible = false; DumpSpeedHDDVDTextBox.IsReadOnlyCaretVisible = false; DumpSpeedBDTextBox.IsReadOnlyCaretVisible = false; #endif #if NET452_OR_GREATER || NETCOREAPP var chrome = new System.Windows.Shell.WindowChrome { CaptionHeight = 0, ResizeBorderThickness = new Thickness(0), }; System.Windows.Shell.WindowChrome.SetWindowChrome(this, chrome); #endif DataContext = new OptionsViewModel(options); // Set initial value for binding #if NET35 _RedumpPasswordBox!.Password = options.RedumpPassword; #else RedumpPasswordBox.Password = options.RedumpPassword; #endif // Add handlers #if NET35 _AaruPathButton!.Click += BrowseForPathClick; _DiscImageCreatorPathButton!.Click += BrowseForPathClick; _RedumperPathButton!.Click += BrowseForPathClick; _DefaultOutputPathButton!.Click += BrowseForPathClick; _AcceptButton!.Click += OnAcceptClick; _CancelButton!.Click += OnCancelClick; _RedumpPasswordBox!.PasswordChanged += OnPasswordChanged; _RedumpLoginTestButton!.Click += OnRedumpTestClick; #else AaruPathButton.Click += BrowseForPathClick; DiscImageCreatorPathButton.Click += BrowseForPathClick; RedumperPathButton.Click += BrowseForPathClick; DefaultOutputPathButton.Click += BrowseForPathClick; AcceptButton.Click += OnAcceptClick; CancelButton.Click += OnCancelClick; RedumpPasswordBox.PasswordChanged += OnPasswordChanged; RedumpLoginTestButton.Click += OnRedumpTestClick; #endif } /// /// Handler for OptionsWindow OnContentRendered event /// protected override void OnContentRendered(EventArgs e) { base.OnContentRendered(e); // Set the window title OptionsViewModel.Title = this.Title; } #region UI Commands /// /// Browse and set a path based on the invoking button /// private void BrowseForPath(Window parent, System.Windows.Controls.Button? button) { // If the button is null, we can't do anything if (button == null) return; // Strips button prefix to obtain the setting name string pathSettingName = button.Name.Substring(0, button.Name.IndexOf("Button")); // TODO: hack for now, then we'll see bool shouldBrowseForPath = pathSettingName == "DefaultOutputPath"; var currentPath = TextBoxForPathSetting(parent, pathSettingName)?.Text; var initialDirectory = AppDomain.CurrentDomain.BaseDirectory; if (!shouldBrowseForPath && !string.IsNullOrEmpty(currentPath)) initialDirectory = Path.GetDirectoryName(Path.GetFullPath(currentPath)); CommonDialog dialog = shouldBrowseForPath ? (CommonDialog)CreateFolderBrowserDialog() : CreateOpenFileDialog(initialDirectory); using (dialog) { DialogResult result = dialog.ShowDialog(); if (result == System.Windows.Forms.DialogResult.OK) { string path = string.Empty; bool exists = false; if (shouldBrowseForPath && dialog is FolderBrowserDialog folderBrowserDialog) { path = folderBrowserDialog.SelectedPath; exists = Directory.Exists(path); } else if (dialog is OpenFileDialog openFileDialog) { path = openFileDialog.FileName; exists = File.Exists(path); } if (exists) { OptionsViewModel.Options[pathSettingName] = path; var textBox = TextBoxForPathSetting(parent, pathSettingName); if (textBox != null) textBox.Text = path; } else { CustomMessageBox.Show( "Specified path doesn't exist!", "Error", MessageBoxButton.OK, MessageBoxImage.Error ); } } } } /// /// Find a TextBox by setting name /// /// Setting name to find /// TextBox for that setting private static System.Windows.Controls.TextBox? TextBoxForPathSetting(Window parent, string name) => parent.FindName(name + "TextBox") as System.Windows.Controls.TextBox; /// /// Create an open folder dialog box /// private static FolderBrowserDialog CreateFolderBrowserDialog() => new(); /// /// Create an open file dialog box /// private static OpenFileDialog CreateOpenFileDialog(string? initialDirectory) { return new OpenFileDialog() { InitialDirectory = initialDirectory, Filter = "Executables (*.exe)|*.exe", FilterIndex = 0, RestoreDirectory = true, }; } /// /// Test Redump credentials for validity /// private async Task ValidateRedumpCredentials() { #if NET35 (bool? success, string? message) = await OptionsViewModel.TestRedumpLogin(_RedumpUsernameTextBox!.Text, _RedumpPasswordBox!.Password); #else (bool? success, string? message) = await OptionsViewModel.TestRedumpLogin(RedumpUsernameTextBox.Text, RedumpPasswordBox.Password); #endif if (success == true) CustomMessageBox.Show(this, message, "Success", MessageBoxButton.OK, MessageBoxImage.Information); else if (success == false) CustomMessageBox.Show(this, message, "Failure", MessageBoxButton.OK, MessageBoxImage.Error); else CustomMessageBox.Show(this, message, "Error", MessageBoxButton.OK, MessageBoxImage.Error); } #endregion #region Event Handlers /// /// Handler for generic Click event /// private void BrowseForPathClick(object sender, EventArgs e) => BrowseForPath(this, sender as System.Windows.Controls.Button); /// /// Handler for AcceptButton Click event /// private void OnAcceptClick(object sender, EventArgs e) { OptionsViewModel.SavedSettings = true; Close(); } /// /// Handler for CancelButtom Click event /// private void OnCancelClick(object sender, EventArgs e) { OptionsViewModel.SavedSettings = false; Close(); } /// /// Handler for RedumpPasswordBox PasswordChanged event /// private void OnPasswordChanged(object sender, EventArgs e) { #if NET35 OptionsViewModel.Options.RedumpPassword = _RedumpPasswordBox!.Password; #else OptionsViewModel.Options.RedumpPassword = RedumpPasswordBox.Password; #endif } /// /// Test Redump credentials for validity /// #if NET40 private void OnRedumpTestClick(object sender, EventArgs e) { var validateTask = ValidateRedumpCredentials(); validateTask.Wait(); } #else private async void OnRedumpTestClick(object sender, EventArgs e) => await ValidateRedumpCredentials(); #endif #endregion } }