summaryrefslogtreecommitdiffstats
path: root/xbmc/settings/SettingControl.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/SettingControl.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/SettingControl.h')
-rw-r--r--xbmc/settings/SettingControl.h314
1 files changed, 314 insertions, 0 deletions
diff --git a/xbmc/settings/SettingControl.h b/xbmc/settings/SettingControl.h
new file mode 100644
index 0000000..c86f040
--- /dev/null
+++ b/xbmc/settings/SettingControl.h
@@ -0,0 +1,314 @@
+/*
+ * 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 "settings/lib/ISettingControl.h"
+#include "settings/lib/ISettingControlCreator.h"
+
+#define SETTING_XML_ELM_CONTROL_FORMATLABEL "formatlabel"
+#define SETTING_XML_ELM_CONTROL_HIDDEN "hidden"
+#define SETTING_XML_ELM_CONTROL_VERIFYNEW "verifynew"
+#define SETTING_XML_ELM_CONTROL_HEADING "heading"
+#define SETTING_XML_ELM_CONTROL_HIDEVALUE "hidevalue"
+#define SETTING_XML_ELM_CONTROL_MULTISELECT "multiselect"
+#define SETTING_XML_ELM_CONTROL_POPUP "popup"
+#define SETTING_XML_ELM_CONTROL_FORMATVALUE "value"
+#define SETTING_XML_ELM_CONTROL_ADDBUTTONLABEL "addbuttonlabel"
+#define SETTING_XML_ATTR_SHOW_MORE "more"
+#define SETTING_XML_ATTR_SHOW_DETAILS "details"
+#define SETTING_XML_ATTR_SEPARATOR_POSITION "separatorposition"
+#define SETTING_XML_ATTR_HIDE_SEPARATOR "hideseparator"
+
+class CVariant;
+
+class CSettingControlCreator : public ISettingControlCreator
+{
+public:
+ // implementation of ISettingControlCreator
+ std::shared_ptr<ISettingControl> CreateControl(const std::string &controlType) const override;
+
+protected:
+ CSettingControlCreator() = default;
+ ~CSettingControlCreator() override = default;
+};
+
+class CSettingControlCheckmark : public ISettingControl
+{
+public:
+ CSettingControlCheckmark()
+ {
+ m_format = "boolean";
+ }
+ ~CSettingControlCheckmark() override = default;
+
+ // implementation of ISettingControl
+ std::string GetType() const override { return "toggle"; }
+ bool SetFormat(const std::string &format) override;
+};
+
+class CSettingControlFormattedRange : public ISettingControl
+{
+public:
+ ~CSettingControlFormattedRange() override = default;
+
+ bool Deserialize(const TiXmlNode *node, bool update = false) override;
+
+ int GetFormatLabel() const { return m_formatLabel; }
+ void SetFormatLabel(int formatLabel) { m_formatLabel = formatLabel; }
+ const std::string& GetFormatString() const { return m_formatString; }
+ void SetFormatString(const std::string &formatString) { m_formatString = formatString; }
+ int GetMinimumLabel() const { return m_minimumLabel; }
+ void SetMinimumLabel(int minimumLabel) { m_minimumLabel = minimumLabel; }
+
+protected:
+ CSettingControlFormattedRange() = default;
+
+ int m_formatLabel = -1;
+ std::string m_formatString = "{}";
+ int m_minimumLabel = -1;
+};
+
+class CSettingControlSpinner : public CSettingControlFormattedRange
+{
+public:
+ CSettingControlSpinner() = default;
+ ~CSettingControlSpinner() override = default;
+
+ // implementation of ISettingControl
+ std::string GetType() const override { return "spinner"; }
+
+ // specialization of CSettingControlFormattedRange
+ bool SetFormat(const std::string &format) override;
+};
+
+class CSettingControlEdit : public ISettingControl
+{
+public:
+ CSettingControlEdit()
+ {
+ m_delayed = true;
+ }
+ ~CSettingControlEdit() override = default;
+
+ // implementation of ISettingControl
+ std::string GetType() const override { return "edit"; }
+ bool Deserialize(const TiXmlNode *node, bool update = false) override;
+ bool SetFormat(const std::string &format) override;
+
+ bool IsHidden() const { return m_hidden; }
+ void SetHidden(bool hidden) { m_hidden = hidden; }
+ bool VerifyNewValue() const { return m_verifyNewValue; }
+ void SetVerifyNewValue(bool verifyNewValue) { m_verifyNewValue = verifyNewValue; }
+ int GetHeading() const { return m_heading; }
+ void SetHeading(int heading) { m_heading = heading; }
+
+protected:
+ bool m_hidden = false;
+ bool m_verifyNewValue = false;
+ int m_heading = -1;
+};
+
+class CSettingControlButton : public ISettingControl
+{
+public:
+ CSettingControlButton() = default;
+ ~CSettingControlButton() override = default;
+
+ // implementation of ISettingControl
+ std::string GetType() const override { return "button"; }
+ bool Deserialize(const TiXmlNode *node, bool update = false) override;
+ bool SetFormat(const std::string &format) override;
+
+ int GetHeading() const { return m_heading; }
+ void SetHeading(int heading) { m_heading = heading; }
+ bool HideValue() const { return m_hideValue; }
+ void SetHideValue(bool hideValue) { m_hideValue = hideValue; }
+
+ bool ShowAddonDetails() const { return m_showAddonDetails; }
+ void SetShowAddonDetails(bool showAddonDetails) { m_showAddonDetails = showAddonDetails; }
+ bool ShowInstalledAddons() const { return m_showInstalledAddons; }
+ void SetShowInstalledAddons(bool showInstalledAddons) { m_showInstalledAddons = showInstalledAddons; }
+ bool ShowInstallableAddons() const { return m_showInstallableAddons; }
+ void SetShowInstallableAddons(bool showInstallableAddons) { m_showInstallableAddons = showInstallableAddons; }
+ bool ShowMoreAddons() const { return !m_showInstallableAddons && m_showMoreAddons; }
+ void SetShowMoreAddons(bool showMoreAddons) { m_showMoreAddons = showMoreAddons; }
+
+ bool UseImageThumbs() const { return m_useImageThumbs; }
+ void SetUseImageThumbs(bool useImageThumbs) { m_useImageThumbs = useImageThumbs; }
+ bool UseFileDirectories() const { return m_useFileDirectories; }
+ void SetUseFileDirectories(bool useFileDirectories) { m_useFileDirectories = useFileDirectories; }
+
+ bool HasActionData() const { return !m_actionData.empty(); }
+ const std::string& GetActionData() const { return m_actionData; }
+ void SetActionData(const std::string& actionData) { m_actionData = actionData; }
+
+ bool CloseDialog() const { return m_closeDialog; }
+ void SetCloseDialog(bool closeDialog) { m_closeDialog = closeDialog; }
+
+protected:
+ int m_heading = -1;
+ bool m_hideValue = false;
+
+ bool m_showAddonDetails = true;
+ bool m_showInstalledAddons = true;
+ bool m_showInstallableAddons = false;
+ bool m_showMoreAddons = true;
+
+ bool m_useImageThumbs = false;
+ bool m_useFileDirectories = false;
+
+ std::string m_actionData;
+ bool m_closeDialog = false;
+};
+
+class CSetting;
+using SettingControlListValueFormatter =
+ std::string (*)(const std::shared_ptr<const CSetting>& setting);
+
+class CSettingControlList : public CSettingControlFormattedRange
+{
+public:
+ CSettingControlList() = default;
+ ~CSettingControlList() override = default;
+
+ // implementation of ISettingControl
+ std::string GetType() const override { return "list"; }
+
+ // specialization of CSettingControlFormattedRange
+ bool Deserialize(const TiXmlNode *node, bool update = false) override;
+ bool SetFormat(const std::string &format) override;
+
+ int GetHeading() const { return m_heading; }
+ void SetHeading(int heading) { m_heading = heading; }
+ bool CanMultiSelect() const { return m_multiselect; }
+ void SetMultiSelect(bool multiselect) { m_multiselect = multiselect; }
+ bool HideValue() const { return m_hideValue; }
+ void SetHideValue(bool hideValue) { m_hideValue = hideValue; }
+ int GetAddButtonLabel() const { return m_addButtonLabel; }
+ void SetAddButtonLabel(int label) { m_addButtonLabel = label; }
+
+ SettingControlListValueFormatter GetFormatter() const { return m_formatter; }
+ void SetFormatter(SettingControlListValueFormatter formatter) { m_formatter = formatter; }
+
+ bool UseDetails() const { return m_useDetails; }
+ void SetUseDetails(bool useDetails) { m_useDetails = useDetails; }
+
+protected:
+ int m_heading = -1;
+ bool m_multiselect = false;
+ bool m_hideValue = false;
+ int m_addButtonLabel = -1;
+ SettingControlListValueFormatter m_formatter = nullptr;
+ bool m_useDetails{false};
+};
+
+class CSettingControlSlider;
+using SettingControlSliderFormatter =
+ std::string (*)(const std::shared_ptr<const CSettingControlSlider>& control,
+ const CVariant& value,
+ const CVariant& minimum,
+ const CVariant& step,
+ const CVariant& maximum);
+
+class CSettingControlSlider : public ISettingControl
+{
+public:
+ CSettingControlSlider() = default;
+ ~CSettingControlSlider() override = default;
+
+ // implementation of ISettingControl
+ std::string GetType() const override { return "slider"; }
+ bool Deserialize(const TiXmlNode *node, bool update = false) override;
+ bool SetFormat(const std::string &format) override;
+
+ int GetHeading() const { return m_heading; }
+ void SetHeading(int heading) { m_heading = heading; }
+ bool UsePopup() const { return m_popup; }
+ void SetPopup(bool popup) { m_popup = popup; }
+ int GetFormatLabel() const { return m_formatLabel; }
+ void SetFormatLabel(int formatLabel) { m_formatLabel = formatLabel; }
+ const std::string& GetFormatString() const { return m_formatString; }
+ void SetFormatString(const std::string &formatString) { m_formatString = formatString; }
+ std::string GetDefaultFormatString() const;
+
+ SettingControlSliderFormatter GetFormatter() const { return m_formatter; }
+ void SetFormatter(SettingControlSliderFormatter formatter) { m_formatter = formatter; }
+
+protected:
+ int m_heading = -1;
+ bool m_popup = false;
+ int m_formatLabel = -1;
+ std::string m_formatString;
+ SettingControlSliderFormatter m_formatter = nullptr;
+};
+
+class CSettingControlRange : public ISettingControl
+{
+public:
+ CSettingControlRange() = default;
+ ~CSettingControlRange() override = default;
+
+ // implementation of ISettingControl
+ std::string GetType() const override { return "range"; }
+ bool Deserialize(const TiXmlNode *node, bool update = false) override;
+ bool SetFormat(const std::string &format) override;
+
+ int GetFormatLabel() const { return m_formatLabel; }
+ void SetFormatLabel(int formatLabel) { m_formatLabel = formatLabel; }
+ int GetValueFormatLabel() const { return m_valueFormatLabel; }
+ void SetValueFormatLabel(int valueFormatLabel) { m_valueFormatLabel = valueFormatLabel; }
+ const std::string& GetValueFormat() const { return m_valueFormat; }
+ void SetValueFormat(const std::string &valueFormat) { m_valueFormat = valueFormat; }
+
+protected:
+ int m_formatLabel = 21469;
+ int m_valueFormatLabel = -1;
+ std::string m_valueFormat = "{}";
+};
+
+class CSettingControlTitle : public ISettingControl
+{
+public:
+ CSettingControlTitle() = default;
+ ~CSettingControlTitle() override = default;
+
+ // implementation of ISettingControl
+ std::string GetType() const override { return "title"; }
+ bool Deserialize(const TiXmlNode *node, bool update = false) override;
+
+ bool IsSeparatorHidden() const { return m_separatorHidden; }
+ void SetSeparatorHidden(bool hidden) { m_separatorHidden = hidden; }
+ bool IsSeparatorBelowLabel() const { return m_separatorBelowLabel; }
+ void SetSeparatorBelowLabel(bool below) { m_separatorBelowLabel = below; }
+
+protected:
+ bool m_separatorHidden = false;
+ bool m_separatorBelowLabel = true;
+};
+
+class CSettingControlLabel : public ISettingControl
+{
+public:
+ CSettingControlLabel();
+ ~CSettingControlLabel() override = default;
+
+ // implementation of ISettingControl
+ std::string GetType() const override { return "label"; }
+};
+
+class CSettingControlColorButton : public ISettingControl
+{
+public:
+ CSettingControlColorButton() { m_format = "string"; }
+ ~CSettingControlColorButton() override = default;
+
+ // implementation of ISettingControl
+ std::string GetType() const override { return "colorbutton"; }
+ bool SetFormat(const std::string& format) override;
+};