/*
* Copyright (c) 2019 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 SafeExamBrowser.Applications.Contracts.Events;
using SafeExamBrowser.Core.Contracts;
namespace SafeExamBrowser.Applications.Contracts
{
///
/// Defines an instance of an application which can be accessed via the shell.
///
public interface IApplicationInstance
{
///
/// The icon resource for this instance.
///
IconResource Icon { get; }
///
/// The unique identifier for the application instance.
///
InstanceIdentifier Id { get; }
///
/// The name or document title of the application instance.
///
string Name { get; }
///
/// Event fired when the icon of the application instance has changed.
///
event IconChangedEventHandler IconChanged;
///
/// Event fired when the name or (document) title of the application instance has changed.
///
event NameChangedEventHandler NameChanged;
///
/// Event fired when the application instance has been terminated.
///
event InstanceTerminatedEventHandler Terminated;
///
/// Makes this instance the currently active one and brings it to the foreground.
///
void Activate();
///
/// Initializes the application instance.
///
void Initialize();
///
/// Terminates the application instance.
///
void Terminate();
}
}