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-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-28 14:52:15 +02:00
|
|
|
|
private IBrowserSettings settings;
|
|
|
|
|
|
|
|
|
|
public event WindowCloseHandler OnClose;
|
|
|
|
|
|
|
|
|
|
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-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-28 14:52:15 +02:00
|
|
|
|
UrlTextBox.IsEnabled = settings.AllowAddressBar;
|
|
|
|
|
UrlTextBox.Visibility = settings.AllowAddressBar ? Visibility.Visible : Visibility.Collapsed;
|
|
|
|
|
|
|
|
|
|
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-28 09:12:17 +02:00
|
|
|
|
Closing += (o, args) => OnClose?.Invoke();
|
2017-07-25 09:02:32 +02:00
|
|
|
|
}
|
2017-07-24 17:31:28 +02:00
|
|
|
|
}
|
|
|
|
|
}
|