diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 18:07:22 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 18:07:22 +0000 |
commit | c04dcc2e7d834218ef2d4194331e383402495ae1 (patch) | |
tree | 7333e38d10d75386e60f336b80c2443c1166031d /xbmc/addons/AddonSystemSettings.h | |
parent | Initial commit. (diff) | |
download | kodi-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/addons/AddonSystemSettings.h')
-rw-r--r-- | xbmc/addons/AddonSystemSettings.h | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/xbmc/addons/AddonSystemSettings.h b/xbmc/addons/AddonSystemSettings.h new file mode 100644 index 0000000..bf5ca38 --- /dev/null +++ b/xbmc/addons/AddonSystemSettings.h @@ -0,0 +1,78 @@ +/* + * Copyright (C) 2015-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/ISettingCallback.h" + +#include <map> +#include <memory> +#include <string> + +namespace ADDON +{ + +const int AUTO_UPDATES_ON = 0; +const int AUTO_UPDATES_NOTIFY = 1; +const int AUTO_UPDATES_NEVER = 2; + +enum class AddonRepoUpdateMode +{ + OFFICIAL_ONLY = 0, + ANY_REPOSITORY = 1 +}; + +enum class AddonType; + +class CAddonInfo; +using AddonInfoPtr = std::shared_ptr<CAddonInfo>; + +class IAddon; +using AddonPtr = std::shared_ptr<IAddon>; + +class CAddonSystemSettings : public ISettingCallback +{ +public: + static CAddonSystemSettings& GetInstance(); + void OnSettingAction(const std::shared_ptr<const CSetting>& setting) override; + void OnSettingChanged(const std::shared_ptr<const CSetting>& setting) override; + + bool GetActive(AddonType type, AddonPtr& addon); + bool SetActive(AddonType type, const std::string& addonID); + bool IsActive(const IAddon& addon); + + /*! + * Gets Kodi addon auto update mode + * + * @return the autoupdate mode value + */ + int GetAddonAutoUpdateMode() const; + + + /*! + * Gets Kodi preferred addon repository update mode + * + * @return the preferred mode value + */ + AddonRepoUpdateMode GetAddonRepoUpdateMode() const; + + /*! + * Attempt to unset addon as active. Returns true if addon is no longer active, + * false if it could not be unset (e.g. if the addon is the default) + */ + bool UnsetActive(const AddonInfoPtr& addon); + +private: + CAddonSystemSettings(); + CAddonSystemSettings(const CAddonSystemSettings&) = delete; + CAddonSystemSettings& operator=(const CAddonSystemSettings&) = delete; + ~CAddonSystemSettings() override = default; + + const std::map<AddonType, std::string> m_activeSettings; +}; +}; |