/*
 * Copyright (c) 2021 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 System;
namespace SafeExamBrowser.Settings.UserInterface
{
	/// 
	/// Defines all settings for the taskbar.
	/// 
	[Serializable]
	public class TaskbarSettings
	{
		/// 
		/// Determines whether the taskbar itself is enabled and visible to the user.
		/// 
		public bool EnableTaskbar { get; set; }
		/// 
		/// Determines whether the about window is accessible via the taskbar.
		/// 
		public bool ShowApplicationInfo { get; set; }
		/// 
		/// Determines whether the application log is accessible via the taskbar.
		/// 
		public bool ShowApplicationLog { get; set; }
		/// 
		/// Determines whether the system control for audio is accessible via the taskbar.
		/// 
		public bool ShowAudio { get; set; }
		/// 
		/// Determines whether the current date and time will be rendered in the taskbar.
		/// 
		public bool ShowClock { get; set; }
		/// 
		/// Determines whether the system control for the keyboard layout is accessible via the taskbar.
		/// 
		public bool ShowKeyboardLayout { get; set; }
		/// 
		/// Determines whether the system control for the wireless network is accessible via the taskbar.
		/// 
		public bool ShowWirelessNetwork { get; set; }
	}
}