/* * Copyright (c) 2023 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.UserInterface.Contracts.Windows; namespace SafeExamBrowser.UserInterface.Contracts.Proctoring { /// /// Defines the functionality of a proctoring window. /// public interface IProctoringWindow : IWindow { /// /// First moves the window to the background and then hides it after a timeout. This might be necessary to allow the meeting client to /// finish its initialization work and start the microphone as well as the camera before being hidden. /// void HideWithDelay(); /// /// Sets the window title to the given value. /// void SetTitle(string title); /// /// Toggles the window visibility. /// void Toggle(); } }