/* * 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 SafeExamBrowser.Settings; using SafeExamBrowser.Settings.UserInterface; namespace SafeExamBrowser.Configuration.ConfigurationData.DataMapping { internal class UserInterfaceDataMapper : BaseDataMapper { internal override void Map(string key, object value, AppSettings settings) { switch (key) { case Keys.UserInterface.ActionCenter.EnableActionCenter: MapEnableActionCenter(settings, value); break; case Keys.UserInterface.SystemControls.Audio.Show: MapShowAudio(settings, value); break; case Keys.UserInterface.SystemControls.Clock.Show: MapShowClock(settings, value); break; case Keys.UserInterface.SystemControls.KeyboardLayout.Show: MapShowKeyboardLayout(settings, value); break; case Keys.UserInterface.SystemControls.Network.Show: MapShowNetwork(settings, value); break; case Keys.UserInterface.SystemControls.PowerSupply.ChargeThresholdCritical: MapChargeThresholdCritical(settings, value); break; case Keys.UserInterface.SystemControls.PowerSupply.ChargeThresholdLow: MapChargeThresholdLow(settings, value); break; case Keys.UserInterface.Taskbar.EnableTaskbar: MapEnableTaskbar(settings, value); break; case Keys.UserInterface.Taskbar.ShowApplicationLog: MapShowApplicationLog(settings, value); break; case Keys.UserInterface.UserInterfaceMode: MapUserInterfaceMode(settings, value); break; } } private void MapEnableActionCenter(AppSettings settings, object value) { if (value is bool enable) { settings.ActionCenter.EnableActionCenter = enable; } } private void MapShowAudio(AppSettings settings, object value) { if (value is bool show) { settings.ActionCenter.ShowAudio = show; settings.Taskbar.ShowAudio = show; } } private void MapShowClock(AppSettings settings, object value) { if (value is bool show) { settings.ActionCenter.ShowClock = show; settings.Taskbar.ShowClock = show; } } private void MapShowKeyboardLayout(AppSettings settings, object value) { if (value is bool show) { settings.ActionCenter.ShowKeyboardLayout = show; settings.Taskbar.ShowKeyboardLayout = show; } } private void MapShowNetwork(AppSettings settings, object value) { if (value is bool show) { settings.ActionCenter.ShowNetwork = show; settings.Taskbar.ShowNetwork = show; } } private void MapChargeThresholdCritical(AppSettings settings, object value) { if (value is double threshold) { settings.PowerSupply.ChargeThresholdCritical = threshold; } } private void MapChargeThresholdLow(AppSettings settings, object value) { if (value is double threshold) { settings.PowerSupply.ChargeThresholdLow = threshold; } } private void MapEnableTaskbar(AppSettings settings, object value) { if (value is bool enable) { settings.Taskbar.EnableTaskbar = enable; } } private void MapShowApplicationLog(AppSettings settings, object value) { if (value is bool show) { settings.Taskbar.ShowApplicationLog = show; } } private void MapUserInterfaceMode(AppSettings settings, object value) { if (value is bool mobile) { settings.UserInterfaceMode = mobile ? UserInterfaceMode.Mobile : UserInterfaceMode.Desktop; } } } }