2017-07-17 16:59:50 +02:00
|
|
|
|
/*
|
2024-03-05 18:37:42 +01:00
|
|
|
|
* Copyright (c) 2024 ETH Zürich, IT Services
|
2017-07-17 16:59:50 +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/.
|
|
|
|
|
*/
|
|
|
|
|
|
2019-03-06 16:10:00 +01:00
|
|
|
|
using System;
|
2018-07-06 15:57:38 +02:00
|
|
|
|
|
2019-09-06 09:39:28 +02:00
|
|
|
|
namespace SafeExamBrowser.Settings.UserInterface
|
2017-07-17 16:59:50 +02:00
|
|
|
|
{
|
2018-03-06 11:38:12 +01:00
|
|
|
|
/// <summary>
|
2019-09-10 11:53:30 +02:00
|
|
|
|
/// Defines all settings for the action center.
|
2018-03-06 11:38:12 +01:00
|
|
|
|
/// </summary>
|
2019-03-06 16:10:00 +01:00
|
|
|
|
[Serializable]
|
|
|
|
|
public class ActionCenterSettings
|
2017-07-17 16:59:50 +02:00
|
|
|
|
{
|
2019-03-08 15:56:38 +01:00
|
|
|
|
/// <summary>
|
2019-03-12 16:18:27 +01:00
|
|
|
|
/// Determines whether the action center itself is enabled and visible to the user.
|
2019-03-08 15:56:38 +01:00
|
|
|
|
/// </summary>
|
2019-03-12 16:18:27 +01:00
|
|
|
|
public bool EnableActionCenter { get; set; }
|
2019-03-08 15:56:38 +01:00
|
|
|
|
|
2019-05-08 10:12:22 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Determines whether the about window is accessible via the action center.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool ShowApplicationInfo { get; set; }
|
|
|
|
|
|
2017-07-17 16:59:50 +02:00
|
|
|
|
/// <summary>
|
2019-03-12 16:18:27 +01:00
|
|
|
|
/// Determines whether the application log is accessible via the action center.
|
2017-07-17 16:59:50 +02:00
|
|
|
|
/// </summary>
|
2019-03-12 16:18:27 +01:00
|
|
|
|
public bool ShowApplicationLog { get; set; }
|
2022-04-19 18:21:29 +02:00
|
|
|
|
|
2019-08-15 10:46:47 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Determines whether the system control for audio is accessible via the action center.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool ShowAudio { get; set; }
|
|
|
|
|
|
2019-03-15 11:38:59 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Determines whether the current date and time will be rendered in the action center.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool ShowClock { get; set; }
|
2019-03-12 16:18:27 +01:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Determines whether the system control for the keyboard layout is accessible via the action center.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool ShowKeyboardLayout { get; set; }
|
2019-03-15 09:44:17 +01:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2022-04-19 18:21:29 +02:00
|
|
|
|
/// Determines whether the system control for the network is accessible via the action center.
|
2019-03-15 09:44:17 +01:00
|
|
|
|
/// </summary>
|
2022-04-19 18:21:29 +02:00
|
|
|
|
public bool ShowNetwork { get; set; }
|
2017-07-17 16:59:50 +02:00
|
|
|
|
}
|
|
|
|
|
}
|