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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
/*
* 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 <map>
#include <memory>
#include <string>
#include <vector>
class CFileItem;
namespace ADDON
{
class CContextMenuAddon;
}
namespace INFO
{
class InfoBool;
}
class IContextMenuItem
{
public:
virtual ~IContextMenuItem() = default;
virtual bool IsVisible(const CFileItem& item) const = 0;
virtual bool Execute(const std::shared_ptr<CFileItem>& item) const = 0;
virtual std::string GetLabel(const CFileItem& item) const = 0;
virtual bool IsGroup() const { return false; }
};
class CStaticContextMenuAction : public IContextMenuItem
{
public:
explicit CStaticContextMenuAction(uint32_t label) : m_label(label) {}
std::string GetLabel(const CFileItem& item) const final;
bool IsGroup() const final { return false; }
private:
const uint32_t m_label;
};
class CContextMenuItem : public IContextMenuItem
{
public:
CContextMenuItem() = default;
std::string GetLabel(const CFileItem& item) const override { return m_label; }
bool IsVisible(const CFileItem& item) const override ;
bool IsParentOf(const CContextMenuItem& menuItem) const;
bool IsGroup() const override ;
bool Execute(const std::shared_ptr<CFileItem>& item) const override;
bool operator==(const CContextMenuItem& other) const;
std::string ToString() const;
static CContextMenuItem CreateGroup(
const std::string& label,
const std::string& parent,
const std::string& groupId,
const std::string& addonId);
static CContextMenuItem CreateItem(
const std::string& label,
const std::string& parent,
const std::string& library,
const std::string& condition,
const std::string& addonId,
const std::vector<std::string>& args = std::vector<std::string>());
friend class ADDON::CContextMenuAddon;
private:
std::string m_label;
std::string m_parent;
std::string m_groupId;
std::string m_library;
std::string m_addonId; // The owner of this menu item
std::vector<std::string> m_args;
std::string m_visibilityCondition;
mutable std::shared_ptr<INFO::InfoBool> m_infoBool;
mutable bool m_infoBoolRegistered{false};
};
|