/* * Copyright (c) 2024 ETH Zürich, IT Services * * 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.Monitoring { /// /// Defines all settings for monitoring keyboard input. /// [Serializable] public class KeyboardSettings { /// /// Determines whether the user may use the ALT+ESC shortcut. /// public bool AllowAltEsc { get; set; } /// /// Determines whether the user may use the ALT+F4 shortcut. /// public bool AllowAltF4 { get; set; } /// /// Determines whether the user may use the ALT+TAB shortcut. /// public bool AllowAltTab { get; set; } /// /// Determines whether the user may use the CTRL+C shortcut. /// public bool AllowCtrlC { get; set; } /// /// Determines whether the user may use the CTRL+ESC shortcut. /// public bool AllowCtrlEsc { get; set; } /// /// Determines whether the user may use the CTRL+V shortcut. /// public bool AllowCtrlV { get; set; } /// /// Determines whether the user may use the CTRL+X shortcut. /// public bool AllowCtrlX { get; set; } /// /// Determines whether the user may use the escape key. /// public bool AllowEsc { get; set; } /// /// Determines whether the user may use the F1 key. /// public bool AllowF1 { get; set; } /// /// Determines whether the user may use the F2 key. /// public bool AllowF2 { get; set; } /// /// Determines whether the user may use the F3 key. /// public bool AllowF3 { get; set; } /// /// Determines whether the user may use the F4 key. /// public bool AllowF4 { get; set; } /// /// Determines whether the user may use the F5 key. /// public bool AllowF5 { get; set; } /// /// Determines whether the user may use the F6 key. /// public bool AllowF6 { get; set; } /// /// Determines whether the user may use the F7 key. /// public bool AllowF7 { get; set; } /// /// Determines whether the user may use the F8 key. /// public bool AllowF8 { get; set; } /// /// Determines whether the user may use the F9 key. /// public bool AllowF9 { get; set; } /// /// Determines whether the user may use the F10 key. /// public bool AllowF10 { get; set; } /// /// Determines whether the user may use the F11 key. /// public bool AllowF11 { get; set; } /// /// Determines whether the user may use the F12 key. /// public bool AllowF12 { get; set; } /// /// Determines whether the user may use the print screen key. /// public bool AllowPrintScreen { get; set; } /// /// Determines whether the user may use the system key. /// public bool AllowSystemKey { get; set; } } }