| #pragma once |
| |
| #if !defined(TOONZ_PLUGIN_LOADER_H__) |
| #define TOONZ_PLUGIN_LOADER_H__ |
| |
| #include <functional> |
| #include <string> |
| #include <QTreeWidget> |
| |
| #undef DVAPI |
| #undef DVVAR |
| #ifdef TOONZQT_EXPORTS |
| #define DVAPI DV_EXPORT_API |
| #define DVVAR DV_EXPORT_VAR |
| #else |
| #define DVAPI DV_IMPORT_API |
| #define DVVAR DV_IMPORT_VAR |
| #endif |
| |
| |
| |
| |
| |
| class TFx; |
| |
| class DVAPI PluginLoader { |
| public: |
| static std::map<std::string, QTreeWidgetItem *> create_menu_items( |
| std::function<void(QTreeWidgetItem *)> &&, |
| std::function<void(QTreeWidgetItem *)> &&); |
| static TFx *create_host(const std::string &id); |
| static bool load_entries(const std::string &basepath); |
| }; |
| |
| #endif |