112 lines
2.6 KiB
C#
112 lines
2.6 KiB
C#
/*
|
|
* Copyright (c) 2024 ETH Zürich, IT Services
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
using System.Windows;
|
|
using System.Windows.Input;
|
|
using SafeExamBrowser.I18n.Contracts;
|
|
using SafeExamBrowser.UserInterface.Contracts.Windows;
|
|
using SafeExamBrowser.UserInterface.Contracts.Windows.Data;
|
|
using SafeExamBrowser.UserInterface.Contracts.Windows.Events;
|
|
|
|
namespace SafeExamBrowser.UserInterface.Desktop.Windows
|
|
{
|
|
internal partial class PasswordDialog : Window, IPasswordDialog
|
|
{
|
|
private readonly IText text;
|
|
|
|
private WindowClosedEventHandler closed;
|
|
private WindowClosingEventHandler closing;
|
|
|
|
event WindowClosedEventHandler IWindow.Closed
|
|
{
|
|
add { closed += value; }
|
|
remove { closed -= value; }
|
|
}
|
|
|
|
event WindowClosingEventHandler IWindow.Closing
|
|
{
|
|
add { closing += value; }
|
|
remove { closing -= value; }
|
|
}
|
|
|
|
internal PasswordDialog(string message, string title, IText text)
|
|
{
|
|
this.text = text;
|
|
|
|
InitializeComponent();
|
|
InitializePasswordDialog(message, title);
|
|
}
|
|
|
|
public void BringToForeground()
|
|
{
|
|
Dispatcher.Invoke(Activate);
|
|
}
|
|
|
|
public PasswordDialogResult Show(IWindow parent = null)
|
|
{
|
|
return Dispatcher.Invoke(() =>
|
|
{
|
|
var result = new PasswordDialogResult { Success = false };
|
|
|
|
if (parent is Window)
|
|
{
|
|
Owner = parent as Window;
|
|
WindowStartupLocation = WindowStartupLocation.CenterOwner;
|
|
}
|
|
|
|
if (ShowDialog() is true)
|
|
{
|
|
result.Password = Password.Password;
|
|
result.Success = true;
|
|
}
|
|
|
|
return result;
|
|
});
|
|
}
|
|
|
|
private void InitializePasswordDialog(string message, string title)
|
|
{
|
|
Message.Text = message;
|
|
Title = title;
|
|
WindowStartupLocation = WindowStartupLocation.CenterScreen;
|
|
|
|
Closed += (o, args) => closed?.Invoke();
|
|
Closing += (o, args) => closing?.Invoke();
|
|
Loaded += (o, args) => Activate();
|
|
|
|
CancelButton.Content = text.Get(TextKey.PasswordDialog_Cancel);
|
|
CancelButton.Click += CancelButton_Click;
|
|
|
|
ConfirmButton.Content = text.Get(TextKey.PasswordDialog_Confirm);
|
|
ConfirmButton.Click += ConfirmButton_Click;
|
|
|
|
Password.KeyDown += Password_KeyDown;
|
|
}
|
|
|
|
private void CancelButton_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
DialogResult = false;
|
|
Close();
|
|
}
|
|
|
|
private void ConfirmButton_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
DialogResult = true;
|
|
Close();
|
|
}
|
|
|
|
private void Password_KeyDown(object sender, KeyEventArgs e)
|
|
{
|
|
if (e.Key == Key.Enter)
|
|
{
|
|
DialogResult = true;
|
|
Close();
|
|
}
|
|
}
|
|
}
|
|
}
|