seb-win-refactoring/SafeExamBrowser.Contracts/UserInterface/IBrowserControl.cs

46 lines
1.3 KiB
C#

/*
* Copyright (c) 2018 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/.
*/
namespace SafeExamBrowser.Contracts.UserInterface
{
public delegate void AddressChangedEventHandler(string address);
public delegate void TitleChangedEventHandler(string title);
public interface IBrowserControl
{
/// <summary>
/// Event fired when the address of the browser control changes.
/// </summary>
event AddressChangedEventHandler AddressChanged;
/// <summary>
/// Event fired when the current page (and thus the title) of the browser control changes.
/// </summary>
event TitleChangedEventHandler TitleChanged;
/// <summary>
/// Navigates to the previous page in the browser control history.
/// </summary>
void NavigateBackwards();
/// <summary>
/// Navigates to the next page in the browser control history.
/// </summary>
void NavigateForwards();
/// <summary>
/// Navigates to the specified web address.
/// </summary>
void NavigateTo(string address);
/// <summary>
/// Reloads the current web page.
/// </summary>
void Reload();
}
}