0.2.0
Loading...
Searching...
No Matches
EnumCombo.hpp
Go to the documentation of this file.
1// This file is part of INSTINCT, the INS Toolkit for Integrated
2// Navigation Concepts and Training by the Institute of Navigation of
3// the University of Stuttgart, Germany.
4//
5// This Source Code Form is subject to the terms of the Mozilla Public
6// License, v. 2.0. If a copy of the MPL was not distributed with this
7// file, You can obtain one at https://mozilla.org/MPL/2.0/.
8
13
14#pragma once
15
16#include <imgui.h>
17#include <fmt/core.h>
18
19namespace NAV::gui::widgets
20{
21
29template<typename T>
30bool EnumCombo(const char* label, T& enumeration, size_t startIdx = 0)
31{
32 bool clicked = false;
33 if (ImGui::BeginCombo(label, NAV::to_string(enumeration)))
34 {
35 for (size_t i = startIdx; i < static_cast<size_t>(T::COUNT); i++)
36 {
37 const bool is_selected = (static_cast<size_t>(enumeration) == i);
38 if (ImGui::Selectable(NAV::to_string(static_cast<T>(i)), is_selected))
39 {
40 enumeration = static_cast<T>(i);
41 clicked = true;
42 }
43
44 // Set the initial focus when opening the combo (scrolling + keyboard navigation focus)
45 if (is_selected)
46 {
47 ImGui::SetItemDefaultFocus();
48 }
49 }
50
51 ImGui::EndCombo();
52 }
53 return clicked;
54}
55
64template<typename T>
65bool EnumCombo(const char* label, T& enumeration1, T& enumeration2, const char* previewAppendix = "")
66{
67 bool clicked = false;
68 std::string previewText = enumeration1 == enumeration2
69 ? fmt::format("{}{}", NAV::to_string(enumeration1), previewAppendix)
70 : fmt::format("{} | {}{}", NAV::to_string(enumeration1), NAV::to_string(enumeration2), previewAppendix);
71 if (ImGui::BeginCombo(label, previewText.c_str()))
72 {
73 for (size_t i = 0; i < static_cast<size_t>(T::COUNT); i++)
74 {
75 const bool is_selected = (static_cast<size_t>(enumeration1) == i);
76 if (ImGui::Selectable(NAV::to_string(static_cast<T>(i)), is_selected))
77 {
78 enumeration1 = static_cast<T>(i);
79 enumeration2 = static_cast<T>(i);
80 clicked = true;
81 }
82
83 // Set the initial focus when opening the combo (scrolling + keyboard navigation focus)
84 if (is_selected)
85 {
86 ImGui::SetItemDefaultFocus();
87 }
88 }
89
90 ImGui::EndCombo();
91 }
92 return clicked;
93}
94
95} // namespace NAV::gui::widgets
bool EnumCombo(const char *label, T &enumeration, size_t startIdx=0)
Combo representing an enumeration.
Definition EnumCombo.hpp:30
const char * to_string(gui::widgets::PositionWithFrame::ReferenceFrame refFrame)
Converts the enum to a string.