2019-11-14 14:03:43 +01:00
|
|
|
|
/*
|
2024-03-05 18:37:42 +01:00
|
|
|
|
* Copyright (c) 2024 ETH Zürich, IT Services
|
2019-11-14 14:03:43 +01:00
|
|
|
|
*
|
|
|
|
|
* 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;
|
|
|
|
|
|
|
|
|
|
namespace SafeExamBrowser.UserInterface.Contracts.Shell
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The task view provides an overview of all currently running application instances.
|
|
|
|
|
/// </summary>
|
2019-12-06 17:42:46 +01:00
|
|
|
|
public interface ITaskview
|
2019-11-14 14:03:43 +01:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Adds the given application to the task view.
|
|
|
|
|
/// </summary>
|
2024-02-13 11:04:36 +01:00
|
|
|
|
void Add(IApplication<IApplicationWindow> application);
|
2019-11-14 14:03:43 +01:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Registers the specified activator for the task view.
|
|
|
|
|
/// </summary>
|
2019-12-06 17:42:46 +01:00
|
|
|
|
void Register(ITaskviewActivator activator);
|
2019-11-14 14:03:43 +01:00
|
|
|
|
}
|
|
|
|
|
}
|