2022-04-11 16:26:40 +02:00
|
|
|
#include "app.h"
|
|
|
|
|
#include "imgui/imgui.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);
|
2022-04-11 16:26:40 +02:00
|
|
|
drawUI();
|
|
|
|
|
ImGui::EndChild();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Application::drawUI()
|
|
|
|
|
{
|
|
|
|
|
ImGui::Text("Nothing implemented there yet!");
|
|
|
|
|
}
|
|
|
|
|
};
|