2017-07-17 16:59:50 +02:00
|
|
|
|
/*
|
2018-01-16 08:24:00 +01:00
|
|
|
|
* Copyright (c) 2018 ETH Zürich, Educational Development and Technology (LET)
|
2017-07-17 16:59:50 +02: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.Contracts.UserInterface;
|
2017-08-15 15:30:31 +02:00
|
|
|
|
using SafeExamBrowser.Contracts.UserInterface.Taskbar;
|
2017-07-17 16:59:50 +02:00
|
|
|
|
|
|
|
|
|
namespace SafeExamBrowser.Contracts.Behaviour
|
|
|
|
|
{
|
|
|
|
|
public interface INotificationController
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Registers the taskbar notification.
|
|
|
|
|
/// </summary>
|
2017-08-15 15:30:31 +02:00
|
|
|
|
void RegisterNotification(INotificationButton notification);
|
2017-08-02 10:13:23 +02:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Instructs the controller to shut down and release all used resources.
|
|
|
|
|
/// </summary>
|
|
|
|
|
void Terminate();
|
2017-07-17 16:59:50 +02:00
|
|
|
|
}
|
|
|
|
|
}
|