/*
* Copyright (c) 2017 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.Monitoring
{
public delegate void DisplayChangedEventHandler();
public interface IDisplayMonitor
{
///
/// Event fired when the primary display or its settings have changed.
///
event DisplayChangedEventHandler DisplayChanged;
///
/// Sets the desktop working area to accommodate to the taskbar's height, removes the configured wallpaper (if possible) and
/// prevents the computer from entering sleep mode or turning its display(s) off.
///
void InitializePrimaryDisplay(int taskbarHeight);
///
/// Resets the desktop working area and wallpaper to their previous (initial) state.
///
void ResetPrimaryDisplay();
///
/// Starts monitoring for display changes, i.e. display changes will trigger the DisplaySettingsChanged event.
///
void StartMonitoringDisplayChanges();
///
/// Stops monitoring for display changes.
///
void StopMonitoringDisplayChanges();
}
}