diff options
Diffstat (limited to 'xbmc/settings/SettingUtils.h')
-rw-r--r-- | xbmc/settings/SettingUtils.h | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/xbmc/settings/SettingUtils.h b/xbmc/settings/SettingUtils.h new file mode 100644 index 0000000..d7e456b --- /dev/null +++ b/xbmc/settings/SettingUtils.h @@ -0,0 +1,52 @@ +/* + * Copyright (C) 2013-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. + */ + +#pragma once + +#include <memory> +#include <vector> + +class CVariant; +class CSettingList; +class CSetting; + +class CSettingUtils +{ +public: + /*! + \brief Gets the values of the given list setting. + + \param settingList List setting + \return List of values of the given list setting + */ + static std::vector<CVariant> GetList(const std::shared_ptr<const CSettingList>& settingList); + /*! + \brief Sets the values of the given list setting. + + \param settingList List setting + \param value Values to set + \return True if setting the values was successful, false otherwise + */ + static bool SetList(const std::shared_ptr<CSettingList>& settingList, + const std::vector<CVariant>& value); + + static std::vector<CVariant> ListToValues(const std::shared_ptr<const CSettingList>& setting, + const std::vector<std::shared_ptr<CSetting>>& values); + static bool ValuesToList(const std::shared_ptr<const CSettingList>& setting, + const std::vector<CVariant>& values, + std::vector<std::shared_ptr<CSetting>>& newValues); + + /*! + \brief Search in a list of Ints for a given value. + + \param settingList CSettingList instance + \param value value to search for + \return True if value was found in list, false otherwise + */ + static bool FindIntInList(const std::shared_ptr<const CSettingList>& settingList, int value); +}; |