21#ifndef KICAD_API_PLUGIN_H
22#define KICAD_API_PLUGIN_H
27#include <nlohmann/json_fwd.hpp>
28#include <wx/bmpbndl.h>
29#include <wx/filename.h>
67 bool FromJson(
const nlohmann::json& aJson );
91 std::set<PLUGIN_ACTION_SCOPE>
scopes;
92 std::vector<wxString>
args;
113 const wxString& Identifier()
const;
114 const wxString& Name()
const;
115 const wxString& Description()
const;
117 wxString BasePath()
const;
119 const std::vector<PLUGIN_ACTION>& Actions()
const;
124 std::optional<PLUGIN_ACTION> createActionFromJson(
const nlohmann::json& aJson );
136 bool operator()(
const std::unique_ptr<API_PLUGIN>& item1,
const std::unique_ptr<API_PLUGIN>& item2 )
const
138 return item1->Identifier() < item2->Identifier();
A plugin that is invoked by KiCad and runs as an external process; communicating with KiCad via the I...
std::unique_ptr< API_PLUGIN_CONFIG > m_config
Comparison functor for ensuring API_PLUGINs have unique identifiers.
bool operator()(const std::unique_ptr< API_PLUGIN > &item1, const std::unique_ptr< API_PLUGIN > &item2) const
An action performed by a plugin via the IPC API (not to be confused with ACTION_PLUGIN,...
wxBitmapBundle icon_light
const API_PLUGIN & plugin
std::set< PLUGIN_ACTION_SCOPE > scopes
std::vector< wxString > args
PLUGIN_ACTION(const API_PLUGIN &aPlugin)
bool FromJson(const nlohmann::json &aJson)
std::vector< PLUGIN_DEPENDENCY > dependencies