mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
25 lines
591 B
C++
25 lines
591 B
C++
#include "tracking_widget.h"
|
|
#include "common/utils.h"
|
|
#include "logger.h"
|
|
#include "imgui/imgui.h"
|
|
|
|
namespace satdump
|
|
{
|
|
void TrackingWidget::renderConfigWindow()
|
|
{
|
|
if (show_window_config)
|
|
{
|
|
ImGui::Begin("Tracking Configuration", &show_window_config);
|
|
|
|
if (ImGui::CollapsingHeader("Rotator"))
|
|
{
|
|
ImGui::InputFloat("Update Period (s)", &rotator_update_period);
|
|
}
|
|
|
|
if (ImGui::CollapsingHeader("Scheduling"))
|
|
renderAutotrackConfig();
|
|
|
|
ImGui::End();
|
|
}
|
|
}
|
|
}
|