satdump/src-interface/app.cpp

49 lines
1.2 KiB
C++
Raw Normal View History

2022-05-02 08:11:47 -07:00
#define SATDUMP_DLL_EXPORT2 1
#include "core/plugin.h"
#include "app.h"
#include "imgui/imgui.h"
2022-04-12 20:18:44 +02:00
#include "viewer/viewer.h"
2022-05-02 11:58:05 +02:00
#include "recorder/recorder.h"
namespace satdump
{
Application::Application(std::string id)
: app_id(id)
{
}
Application::~Application()
{
}
void Application::drawWindow()
{
ImGui::Begin(app_id.c_str());
drawUI();
ImGui::End();
}
void Application::draw()
{
2023-01-23 01:15:14 +01:00
ImGui::BeginChild(app_id.c_str(), ImGui::GetContentRegionAvail(), false, ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoScrollWithMouse);
drawUI();
ImGui::EndChild();
}
void Application::drawUI()
{
ImGui::Text("Nothing implemented there yet!");
}
2022-05-02 08:11:47 -07:00
SATDUMP_DLL2 std::map<std::string, std::function<std::shared_ptr<Application>()>> application_registry;
void registerApplications()
{
// Register local apps
application_registry.emplace(ViewerApplication::getID(), ViewerApplication::getInstance);
2022-05-02 11:58:05 +02:00
application_registry.emplace(RecorderApplication::getID(), RecorderApplication::getInstance);
// Plugin applicatins
satdump::eventBus->fire_event<RegisterApplicationsEvent>({application_registry});
}
};