#include "core/plugin.h" #include "logger.h" #include "explorer/explorer.h" #include "tracking.h" class WipTrackingAppPlugin : public satdump::Plugin { public: std::string getID() { return "wiptracking_app"; } void init() { // TODOREWORK maybe a way to call up/init a handler? satdump::eventBus->register_handler(renderExplorerLoaderButton); } static void renderExplorerLoaderButton(const satdump::explorer::RenderLoadMenuElementsEvent &evt) { if (ImGui::BeginMenu("Add")) { if (ImGui::BeginMenu("Tools")) { if (ImGui::MenuItem("WIP Tracking")) evt.master_handler->addSubHandler(std::make_shared()); ImGui::EndMenu(); } ImGui::EndMenu(); } } // TODOREWORK }; PLUGIN_LOADER(WipTrackingAppPlugin)