blob: d7e456bb1ff2ca47b1fe7b956780c5207400c052 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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);
};
|