/*
* Copyright (c) 2019 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.UserInterface.Shell
{
///
/// The control of the audio system component.
///
public interface ISystemAudioControl : ISystemControl
{
///
/// Defines whether the computer has an audio output device.
///
bool HasOutputDevice { set; }
///
/// Indicates whether the current output device is muted.
///
bool OutputDeviceMuted { set; }
///
/// Shows the name of the currently active audio output device.
///
string OutputDeviceName { set; }
///
/// Shows the current audio output volume, where 0.0 is the lowest and 1.0 the highest possible value.
///
double OutputDeviceVolume { set; }
}
}