seb-win-refactoring/SafeExamBrowser.Client/Notifications/LogNotificationController.cs

58 lines
1.4 KiB
C#
Raw Normal View History

2017-08-07 12:23:56 +02:00
/*
* Copyright (c) 2019 ETH Zürich, Educational Development and Technology (LET)
2017-08-07 12:23:56 +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.Client.Contracts;
using SafeExamBrowser.Logging.Contracts;
using SafeExamBrowser.UserInterface.Contracts;
using SafeExamBrowser.UserInterface.Contracts.Shell;
using SafeExamBrowser.UserInterface.Contracts.Windows;
2017-08-07 12:23:56 +02:00
namespace SafeExamBrowser.Client.Notifications
2017-08-07 12:23:56 +02:00
{
internal class LogNotificationController : INotificationController
2017-08-07 12:23:56 +02:00
{
private INotificationControl notification;
2017-08-07 12:23:56 +02:00
private ILogger logger;
private IUserInterfaceFactory uiFactory;
private IWindow window;
public LogNotificationController(ILogger logger, IUserInterfaceFactory uiFactory)
2017-08-07 12:23:56 +02:00
{
this.logger = logger;
this.uiFactory = uiFactory;
}
public void RegisterNotification(INotificationControl notification)
2017-08-07 12:23:56 +02:00
{
this.notification = notification;
notification.Clicked += Notification_Clicked;
}
public void Terminate()
{
window?.Close();
}
private void Notification_Clicked()
{
if (window == null)
{
window = uiFactory.CreateLogWindow(logger);
2017-08-07 12:23:56 +02:00
window.Closing += () => window = null;
window.Show();
}
else
{
window.BringToForeground();
}
}
}
}