diff options
Diffstat (limited to 'xbmc/powermanagement/DPMSSupport.cpp')
-rw-r--r-- | xbmc/powermanagement/DPMSSupport.cpp | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/xbmc/powermanagement/DPMSSupport.cpp b/xbmc/powermanagement/DPMSSupport.cpp new file mode 100644 index 0000000..077117d --- /dev/null +++ b/xbmc/powermanagement/DPMSSupport.cpp @@ -0,0 +1,44 @@ +/* + * Copyright (C) 2009-2018 Team Kodi + * This file is part of Kodi - https://kodi.tv + * + * SPDX-License-Identifier: GPL-2.0-or-later + * See LICENSES/README.md for more information. + */ + +#include "DPMSSupport.h" + +#include "ServiceBroker.h" +#include "settings/Settings.h" +#include "settings/SettingsComponent.h" +#include "settings/lib/Setting.h" +#include "utils/log.h" + +#include <array> +#include <string> + +CDPMSSupport::CDPMSSupport() +{ + auto settingsComponent = CServiceBroker::GetSettingsComponent(); + if (settingsComponent) + { + auto settings = settingsComponent->GetSettings(); + if (settings) + { + auto setting = settings->GetSetting(CSettings::SETTING_POWERMANAGEMENT_DISPLAYSOFF); + if (setting) + setting->SetRequirementsMet(true); + } + } +} + +bool CDPMSSupport::IsModeSupported(PowerSavingMode mode) const +{ + for (const auto& supportedModes : m_supportedModes) + { + if (supportedModes == mode) + return true; + } + + return false; +} |