summaryrefslogtreecommitdiffstats
path: root/xbmc/settings/SettingUtils.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 18:07:22 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 18:07:22 +0000
commitc04dcc2e7d834218ef2d4194331e383402495ae1 (patch)
tree7333e38d10d75386e60f336b80c2443c1166031d /xbmc/settings/SettingUtils.h
parentInitial commit. (diff)
downloadkodi-c04dcc2e7d834218ef2d4194331e383402495ae1.tar.xz
kodi-c04dcc2e7d834218ef2d4194331e383402495ae1.zip
Adding upstream version 2:20.4+dfsg.upstream/2%20.4+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'xbmc/settings/SettingUtils.h')
-rw-r--r--xbmc/settings/SettingUtils.h52
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);
+};