diff options
Diffstat (limited to '')
-rw-r--r-- | xbmc/addons/ContextMenus.h | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/xbmc/addons/ContextMenus.h b/xbmc/addons/ContextMenus.h new file mode 100644 index 0000000..9a87c1d --- /dev/null +++ b/xbmc/addons/ContextMenus.h @@ -0,0 +1,54 @@ +/* + * Copyright (C) 2016-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 "ContextMenuItem.h" + +#include <memory> + +class CFileItem; + +namespace CONTEXTMENU +{ + +struct CAddonInfo : CStaticContextMenuAction +{ + CAddonInfo() : CStaticContextMenuAction(19033) {} + bool IsVisible(const CFileItem& item) const override; + bool Execute(const std::shared_ptr<CFileItem>& item) const override; +}; + +struct CAddonSettings : CStaticContextMenuAction +{ + CAddonSettings() : CStaticContextMenuAction(10004) {} + bool IsVisible(const CFileItem& item) const override; + bool Execute(const std::shared_ptr<CFileItem>& item) const override; +}; + +struct CCheckForUpdates : CStaticContextMenuAction +{ + CCheckForUpdates() : CStaticContextMenuAction(24034) {} + bool IsVisible(const CFileItem& item) const override; + bool Execute(const std::shared_ptr<CFileItem>& item) const override; +}; + +struct CEnableAddon : CStaticContextMenuAction +{ + CEnableAddon() : CStaticContextMenuAction(24022) {} + bool IsVisible(const CFileItem& item) const override; + bool Execute(const std::shared_ptr<CFileItem>& item) const override; +}; + +struct CDisableAddon : CStaticContextMenuAction +{ + CDisableAddon() : CStaticContextMenuAction(24021) {} + bool IsVisible(const CFileItem& item) const override; + bool Execute(const std::shared_ptr<CFileItem>& item) const override; +}; +} |