2017-07-24 17:31:28 +02:00
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2017 ETH Zürich, Educational Development and Technology (LET)
|
|
|
|
|
*
|
|
|
|
|
* 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;
|
2017-07-31 20:22:53 +02:00
|
|
|
|
using System.Windows.Controls;
|
2017-07-28 14:52:15 +02:00
|
|
|
|
using SafeExamBrowser.Contracts.Configuration.Settings;
|
2017-07-24 17:31:28 +02:00
|
|
|
|
using SafeExamBrowser.Contracts.UserInterface;
|
|
|
|
|
|
|
|
|
|
namespace SafeExamBrowser.UserInterface
|
|
|
|
|
{
|
|
|
|
|
public partial class BrowserWindow : Window, IBrowserWindow
|
|
|
|
|
{
|
2017-07-31 20:22:53 +02:00
|
|
|
|
private bool isMainWindow;
|
2017-07-28 14:52:15 +02:00
|
|
|
|
private IBrowserSettings settings;
|
2017-07-31 20:22:53 +02:00
|
|
|
|
public WindowClosingHandler closing;
|
2017-07-28 14:52:15 +02:00
|
|
|
|
|
2017-07-31 20:22:53 +02:00
|
|
|
|
public bool IsMainWindow
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return isMainWindow;
|
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
isMainWindow = value;
|
|
|
|
|
ApplySettings();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public event AddressChangedHandler AddressChanged;
|
|
|
|
|
public event ActionRequestedHandler BackwardNavigationRequested;
|
|
|
|
|
public event ActionRequestedHandler ForwardNavigationRequested;
|
|
|
|
|
public event ActionRequestedHandler ReloadRequested;
|
|
|
|
|
|
|
|
|
|
event WindowClosingHandler IWindow.Closing
|
|
|
|
|
{
|
|
|
|
|
add { closing += value; }
|
|
|
|
|
remove { closing -= value; }
|
|
|
|
|
}
|
2017-07-28 14:52:15 +02:00
|
|
|
|
|
|
|
|
|
public BrowserWindow(IBrowserControl browserControl, IBrowserSettings settings)
|
2017-07-24 17:31:28 +02:00
|
|
|
|
{
|
2017-07-28 14:52:15 +02:00
|
|
|
|
this.settings = settings;
|
|
|
|
|
|
2017-07-24 17:31:28 +02:00
|
|
|
|
InitializeComponent();
|
2017-07-26 08:50:36 +02:00
|
|
|
|
InitializeBrowserWindow(browserControl);
|
2017-07-24 17:31:28 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void BringToForeground()
|
|
|
|
|
{
|
2017-07-26 08:50:36 +02:00
|
|
|
|
if (WindowState == WindowState.Minimized)
|
|
|
|
|
{
|
|
|
|
|
WindowState = WindowState.Normal;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-24 17:31:28 +02:00
|
|
|
|
Activate();
|
|
|
|
|
}
|
2017-07-25 09:02:32 +02:00
|
|
|
|
|
2017-07-31 20:22:53 +02:00
|
|
|
|
public void UpdateAddress(string url)
|
|
|
|
|
{
|
|
|
|
|
Dispatcher.Invoke(() =>
|
|
|
|
|
{
|
|
|
|
|
UrlTextBox.TextChanged -= UrlTextBox_TextChanged;
|
|
|
|
|
UrlTextBox.Text = url;
|
|
|
|
|
UrlTextBox.TextChanged += UrlTextBox_TextChanged;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void UpdateTitle(string title)
|
|
|
|
|
{
|
|
|
|
|
Dispatcher.Invoke(() => Title = title);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void UrlTextBox_TextChanged(object sender, TextChangedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
AddressChanged?.Invoke(UrlTextBox.Text);
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-26 08:50:36 +02:00
|
|
|
|
private void InitializeBrowserWindow(IBrowserControl browserControl)
|
2017-07-25 09:02:32 +02:00
|
|
|
|
{
|
2017-07-26 08:50:36 +02:00
|
|
|
|
if (browserControl is System.Windows.Forms.Control)
|
|
|
|
|
{
|
|
|
|
|
BrowserControlHost.Child = browserControl as System.Windows.Forms.Control;
|
|
|
|
|
}
|
2017-07-28 09:12:17 +02:00
|
|
|
|
|
2017-07-31 20:22:53 +02:00
|
|
|
|
Closing += (o, args) => closing?.Invoke();
|
|
|
|
|
UrlTextBox.TextChanged += UrlTextBox_TextChanged;
|
|
|
|
|
ReloadButton.Click += (o, args) => ReloadRequested?.Invoke();
|
|
|
|
|
BackButton.Click += (o, args) => BackwardNavigationRequested?.Invoke();
|
|
|
|
|
ForwardButton.Click += (o, args) => ForwardNavigationRequested?.Invoke();
|
|
|
|
|
|
|
|
|
|
ApplySettings();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void ApplySettings()
|
|
|
|
|
{
|
|
|
|
|
if (IsMainWindow && settings.FullScreenMode)
|
|
|
|
|
{
|
|
|
|
|
MaxHeight = SystemParameters.WorkArea.Height;
|
|
|
|
|
ResizeMode = ResizeMode.NoResize;
|
|
|
|
|
WindowState = WindowState.Maximized;
|
|
|
|
|
WindowStyle = WindowStyle.None;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-28 14:52:15 +02:00
|
|
|
|
UrlTextBox.IsEnabled = settings.AllowAddressBar;
|
|
|
|
|
|
|
|
|
|
ReloadButton.IsEnabled = settings.AllowReloading;
|
|
|
|
|
ReloadButton.Visibility = settings.AllowReloading ? Visibility.Visible : Visibility.Collapsed;
|
|
|
|
|
|
|
|
|
|
BackButton.IsEnabled = settings.AllowBackwardNavigation;
|
|
|
|
|
BackButton.Visibility = settings.AllowBackwardNavigation ? Visibility.Visible : Visibility.Collapsed;
|
|
|
|
|
|
|
|
|
|
ForwardButton.IsEnabled = settings.AllowForwardNavigation;
|
|
|
|
|
ForwardButton.Visibility = settings.AllowForwardNavigation ? Visibility.Visible : Visibility.Collapsed;
|
2017-07-25 09:02:32 +02:00
|
|
|
|
}
|
2017-07-24 17:31:28 +02:00
|
|
|
|
}
|
|
|
|
|
}
|