2018-01-26 12:33:36 +01:00
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018 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/.
|
|
|
|
|
*/
|
|
|
|
|
|
2018-01-30 14:41:36 +01:00
|
|
|
|
using SafeExamBrowser.Contracts.Logging;
|
2018-01-26 12:33:36 +01:00
|
|
|
|
|
|
|
|
|
namespace SafeExamBrowser.Contracts.UserInterface
|
|
|
|
|
{
|
2018-02-02 09:18:35 +01:00
|
|
|
|
public interface IRuntimeWindow : ILogObserver, IProgressIndicator, IWindow
|
2018-01-26 12:33:36 +01:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2018-02-02 09:18:35 +01:00
|
|
|
|
/// Hides the progress bar.
|
2018-01-26 12:33:36 +01:00
|
|
|
|
/// </summary>
|
2018-02-02 09:18:35 +01:00
|
|
|
|
void HideProgressBar();
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Shows the progress bar.
|
|
|
|
|
/// </summary>
|
|
|
|
|
void ShowProgressBar();
|
2018-01-26 12:33:36 +01:00
|
|
|
|
}
|
|
|
|
|
}
|