0.3.0
Loading...
Searching...
No Matches
InputWithUnit.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 <cstdint>
17#include <fmt/format.h>
18#include <imgui.h>
19#include <string>
20#include <algorithm>
21#include "imgui_ex.hpp"
22
23namespace NAV
24{
25
27template<typename T>
28[[nodiscard]] std::string MakeComboItems()
29{
30 std::string str;
31 for (size_t i = 0; i < static_cast<size_t>(T::COUNT); i++)
32 {
33 if (!str.empty()) { str += '\0'; }
34 str += to_string(static_cast<T>(i));
35 }
36 str += '\0';
37 str += '\0';
38 return str;
39}
40
41namespace gui::widgets
42{
50
51namespace internal
52{
53
61template<typename U>
62InputWithUnitChange Unit(const char* label, float unitWidth,
63 U& combo_current_item, const char* combo_items_separated_by_zeros,
64 int combo_popup_max_height_in_items)
65{
67
68 ImGui::SetNextItemWidth(unitWidth - ImGui::GetStyle().ItemSpacing.x);
69
70 char first = '1';
71 char second = '1';
72 bool disable = true;
73 for (size_t i = 0; first != '\0' || second != '\0'; i++)
74 {
75 first = *(combo_items_separated_by_zeros + i);
76 second = *(combo_items_separated_by_zeros + i + 1);
77
78 if (first == '\0' && second != '\0')
79 {
80 disable = false;
81 break;
82 }
83 }
84
85 if (disable) { ImGui::BeginDisabled(); }
86 if (auto current_item = static_cast<int>(combo_current_item);
87 ImGui::Combo(fmt::format("##{} - unit", label).c_str(), &current_item, combo_items_separated_by_zeros, combo_popup_max_height_in_items))
88 {
89 combo_current_item = static_cast<U>(current_item);
91 }
92 if (disable) { ImGui::EndDisabled(); }
93 ImGui::SameLine();
94 ImGui::SetCursorPosX(ImGui::GetCursorPosX() - ImGui::GetStyle().ItemSpacing.x + ImGui::GetStyle().ItemInnerSpacing.x);
95 std::string strLabel{ label };
96 ImGui::TextUnformatted(strLabel.substr(0, strLabel.find('#')).c_str());
97
98 return retVal;
99}
100
114template<ImGuiDataType_ _Scalar, unsigned int _Size, typename T, typename U>
115InputWithUnitChange InputWithUnit(const char* label, float itemWidth, float unitWidth,
116 T v[_Size], U& combo_current_item, const char* combo_items_separated_by_zeros, // NOLINT(hicpp-avoid-c-arrays,modernize-avoid-c-arrays,cppcoreguidelines-avoid-c-arrays)
117 T step, T step_fast, const char* format, ImGuiInputTextFlags flags,
118 int combo_popup_max_height_in_items)
119{
121
122 ImGui::SetNextItemWidth(itemWidth - unitWidth);
123 if constexpr (_Size == 1)
124 {
125 flags |= ImGuiInputTextFlags_CharsScientific;
126 if (ImGui::InputScalar(fmt::format("##{} - input", label).c_str(), _Scalar, static_cast<void*>(v), static_cast<void*>(step > 0.0 ? &step : nullptr), static_cast<void*>(step_fast > 0.0 ? &step_fast : nullptr), format, flags))
127 {
129 }
130 }
131 else
132 {
133 if (ImGui::InputScalarN(fmt::format("##{} - input", label).c_str(), _Scalar, v, _Size, nullptr, nullptr, format, flags))
134 {
136 }
137 }
138 ImGui::SameLine();
139 retVal = static_cast<InputWithUnitChange>(retVal | Unit(label, unitWidth, combo_current_item, combo_items_separated_by_zeros, combo_popup_max_height_in_items));
140
141 return retVal;
142}
143
157template<ImGuiDataType_ _Scalar, unsigned int _Size, typename T, typename U>
158InputWithUnitChange SliderWithUnit(const char* label, float itemWidth, float unitWidth,
159 T v[_Size], U& combo_current_item, const char* combo_items_separated_by_zeros, // NOLINT(hicpp-avoid-c-arrays,modernize-avoid-c-arrays,cppcoreguidelines-avoid-c-arrays)
160 T min, T max, const char* format, ImGuiInputTextFlags flags,
161 int combo_popup_max_height_in_items)
162{
164
165 ImGui::SetNextItemWidth(itemWidth - unitWidth);
166 if constexpr (_Size == 1)
167 {
168 flags |= ImGuiInputTextFlags_CharsScientific;
169 if (ImGui::SliderScalar(fmt::format("##{} - input", label).c_str(), _Scalar, static_cast<void*>(v), &min, &max, format, flags))
170 {
172 }
173 }
174 else
175 {
176 if (ImGui::SliderScalarN(fmt::format("##{} - input", label).c_str(), _Scalar, v, _Size, &min, &max, format, flags))
177 {
179 }
180 }
181 ImGui::SameLine();
182 retVal = static_cast<InputWithUnitChange>(retVal | Unit(label, unitWidth, combo_current_item, combo_items_separated_by_zeros, combo_popup_max_height_in_items));
183
184 return retVal;
185}
186
187} // namespace internal
188
202template<typename U>
203InputWithUnitChange InputFloatWithUnit(const char* label, float itemWidth, float unitWidth,
204 float* v, U& combo_current_item, const char* combo_items_separated_by_zeros,
205 float step = 0.0, float step_fast = 0.0, const char* format = "%.3f", ImGuiInputTextFlags flags = 0,
206 int combo_popup_max_height_in_items = -1)
207{
208 return internal::InputWithUnit<ImGuiDataType_Float, 1, float>(label, itemWidth, unitWidth, v, combo_current_item, combo_items_separated_by_zeros, step, step_fast, format, flags, combo_popup_max_height_in_items);
209}
210
222template<typename U>
223InputWithUnitChange InputFloat2WithUnit(const char* label, float itemWidth, float unitWidth,
224 float v[2], U& combo_current_item, const char* combo_items_separated_by_zeros, // NOLINT(hicpp-avoid-c-arrays,modernize-avoid-c-arrays,cppcoreguidelines-avoid-c-arrays)
225 const char* format = "%.3f", ImGuiInputTextFlags flags = 0,
226 int combo_popup_max_height_in_items = -1)
227{
228 return internal::InputWithUnit<ImGuiDataType_Float, 2, float>(label, itemWidth, unitWidth, v, combo_current_item, combo_items_separated_by_zeros, 0.0, 0.0, format, flags, combo_popup_max_height_in_items);
229}
230
242template<typename U>
243InputWithUnitChange InputFloat3WithUnit(const char* label, float itemWidth, float unitWidth,
244 float v[3], U& combo_current_item, const char* combo_items_separated_by_zeros, // NOLINT(hicpp-avoid-c-arrays,modernize-avoid-c-arrays,cppcoreguidelines-avoid-c-arrays)
245 const char* format = "%.3f", ImGuiInputTextFlags flags = 0,
246 int combo_popup_max_height_in_items = -1)
247{
248 return internal::InputWithUnit<ImGuiDataType_Float, 3, float>(label, itemWidth, unitWidth, v, combo_current_item, combo_items_separated_by_zeros, 0.0, 0.0, format, flags, combo_popup_max_height_in_items);
249}
250
262template<typename U>
263InputWithUnitChange InputFloat4WithUnit(const char* label, float itemWidth, float unitWidth,
264 float v[4], U& combo_current_item, const char* combo_items_separated_by_zeros, // NOLINT(hicpp-avoid-c-arrays,modernize-avoid-c-arrays,cppcoreguidelines-avoid-c-arrays)
265 const char* format = "%.3f", ImGuiInputTextFlags flags = 0,
266 int combo_popup_max_height_in_items = -1)
267{
268 return internal::InputWithUnit<ImGuiDataType_Float, 4, float>(label, itemWidth, unitWidth, v, combo_current_item, combo_items_separated_by_zeros, 0.0, 0.0, format, flags, combo_popup_max_height_in_items);
269}
270
284template<typename U>
285InputWithUnitChange InputDoubleWithUnit(const char* label, float itemWidth, float unitWidth,
286 double* v, U& combo_current_item, const char* combo_items_separated_by_zeros,
287 double step = 0.0, double step_fast = 0.0, const char* format = "%.6f", ImGuiInputTextFlags flags = 0,
288 int combo_popup_max_height_in_items = -1)
289{
290 return internal::InputWithUnit<ImGuiDataType_Double, 1, double>(label, itemWidth, unitWidth, v, combo_current_item, combo_items_separated_by_zeros, step, step_fast, format, flags, combo_popup_max_height_in_items);
291}
292
304template<typename U>
305InputWithUnitChange InputDouble2WithUnit(const char* label, float itemWidth, float unitWidth,
306 double v[2], U& combo_current_item, const char* combo_items_separated_by_zeros, // NOLINT(hicpp-avoid-c-arrays,modernize-avoid-c-arrays,cppcoreguidelines-avoid-c-arrays)
307 const char* format = "%.6f", ImGuiInputTextFlags flags = 0,
308 int combo_popup_max_height_in_items = -1)
309{
310 return internal::InputWithUnit<ImGuiDataType_Double, 2, double>(label, itemWidth, unitWidth, v, combo_current_item, combo_items_separated_by_zeros, 0.0, 0.0, format, flags, combo_popup_max_height_in_items);
311}
312
324template<typename U>
325InputWithUnitChange InputDouble3WithUnit(const char* label, float itemWidth, float unitWidth,
326 double v[3], U& combo_current_item, const char* combo_items_separated_by_zeros, // NOLINT(hicpp-avoid-c-arrays,modernize-avoid-c-arrays,cppcoreguidelines-avoid-c-arrays)
327 const char* format = "%.6f", ImGuiInputTextFlags flags = 0,
328 int combo_popup_max_height_in_items = -1)
329{
330 return internal::InputWithUnit<ImGuiDataType_Double, 3, double>(label, itemWidth, unitWidth, v, combo_current_item, combo_items_separated_by_zeros, 0.0, 0.0, format, flags, combo_popup_max_height_in_items);
331}
332
344template<typename U>
345InputWithUnitChange InputDouble4WithUnit(const char* label, float itemWidth, float unitWidth,
346 double v[4], U& combo_current_item, const char* combo_items_separated_by_zeros, // NOLINT(hicpp-avoid-c-arrays,modernize-avoid-c-arrays,cppcoreguidelines-avoid-c-arrays)
347 const char* format = "%.6f", ImGuiInputTextFlags flags = 0,
348 int combo_popup_max_height_in_items = -1)
349{
350 return internal::InputWithUnit<ImGuiDataType_Double, 4, double>(label, itemWidth, unitWidth, v, combo_current_item, combo_items_separated_by_zeros, 0.0, 0.0, format, flags, combo_popup_max_height_in_items);
351}
352
353// ###########################################################################################################
354
370template<typename U>
371InputWithUnitChange InputFloatLWithUnit(const char* label, float itemWidth, float unitWidth,
372 float* v, float v_min, float v_max, U& combo_current_item, const char* combo_items_separated_by_zeros,
373 float step = 0.0, float step_fast = 0.0, const char* format = "%.3f", ImGuiInputTextFlags flags = 0,
374 int combo_popup_max_height_in_items = -1)
375{
376 auto change = internal::InputWithUnit<ImGuiDataType_Float, 1, float>(label, itemWidth, unitWidth, v, combo_current_item, combo_items_separated_by_zeros, step, step_fast, format, flags, combo_popup_max_height_in_items);
377 if (change == InputWithUnitChange::InputWithUnitChange_Input)
378 {
379 *v = std::clamp(*v, v_min, v_max);
380 }
381 return change;
382}
383
397template<typename U>
398InputWithUnitChange InputFloat2LWithUnit(const char* label, float itemWidth, float unitWidth,
399 float v[2], float v_min, float v_max, U& combo_current_item, const char* combo_items_separated_by_zeros, // NOLINT(hicpp-avoid-c-arrays,modernize-avoid-c-arrays,cppcoreguidelines-avoid-c-arrays)
400 const char* format = "%.3f", ImGuiInputTextFlags flags = 0,
401 int combo_popup_max_height_in_items = -1)
402{
403 auto change = internal::InputWithUnit<ImGuiDataType_Float, 2, float>(label, itemWidth, unitWidth, v, combo_current_item, combo_items_separated_by_zeros, 0.0, 0.0, format, flags, combo_popup_max_height_in_items);
404 if (change == InputWithUnitChange::InputWithUnitChange_Input)
405 {
406 for (size_t i = 0; i < 2; i++)
407 {
408 v[i] = std::clamp(v[i], v_min, v_max);
409 }
410 }
411 return change;
412}
413
427template<typename U>
428InputWithUnitChange InputFloat3LWithUnit(const char* label, float itemWidth, float unitWidth,
429 float v[3], float v_min, float v_max, U& combo_current_item, const char* combo_items_separated_by_zeros, // NOLINT(hicpp-avoid-c-arrays,modernize-avoid-c-arrays,cppcoreguidelines-avoid-c-arrays)
430 const char* format = "%.3f", ImGuiInputTextFlags flags = 0,
431 int combo_popup_max_height_in_items = -1)
432{
433 auto change = internal::InputWithUnit<ImGuiDataType_Float, 3, float>(label, itemWidth, unitWidth, v, combo_current_item, combo_items_separated_by_zeros, 0.0, 0.0, format, flags, combo_popup_max_height_in_items);
434 if (change == InputWithUnitChange::InputWithUnitChange_Input)
435 {
436 for (size_t i = 0; i < 3; i++)
437 {
438 v[i] = std::clamp(v[i], v_min, v_max);
439 }
440 }
441 return change;
442}
443
457template<typename U>
458InputWithUnitChange InputFloat4LWithUnit(const char* label, float itemWidth, float unitWidth,
459 float v[4], float v_min, float v_max, U& combo_current_item, const char* combo_items_separated_by_zeros, // NOLINT(hicpp-avoid-c-arrays,modernize-avoid-c-arrays,cppcoreguidelines-avoid-c-arrays)
460 const char* format = "%.3f", ImGuiInputTextFlags flags = 0,
461 int combo_popup_max_height_in_items = -1)
462{
463 auto change = internal::InputWithUnit<ImGuiDataType_Float, 4, float>(label, itemWidth, unitWidth, v, combo_current_item, combo_items_separated_by_zeros, 0.0, 0.0, format, flags, combo_popup_max_height_in_items);
464 if (change == InputWithUnitChange::InputWithUnitChange_Input)
465 {
466 for (size_t i = 0; i < 4; i++)
467 {
468 v[i] = std::clamp(v[i], v_min, v_max);
469 }
470 }
471 return change;
472}
473
489template<typename U>
490InputWithUnitChange InputDoubleLWithUnit(const char* label, float itemWidth, float unitWidth,
491 double* v, double v_min, double v_max, U& combo_current_item, const char* combo_items_separated_by_zeros,
492 double step = 0.0, double step_fast = 0.0, const char* format = "%.6f", ImGuiInputTextFlags flags = 0,
493 int combo_popup_max_height_in_items = -1)
494{
495 auto change = internal::InputWithUnit<ImGuiDataType_Double, 1, double>(label, itemWidth, unitWidth, v, combo_current_item, combo_items_separated_by_zeros, step, step_fast, format, flags, combo_popup_max_height_in_items);
496 if (change == InputWithUnitChange::InputWithUnitChange_Input)
497 {
498 *v = std::clamp(*v, v_min, v_max);
499 }
500 return change;
501}
502
516template<typename U>
517InputWithUnitChange InputDouble2LWithUnit(const char* label, float itemWidth, float unitWidth,
518 double v[2], double v_min, double v_max, U& combo_current_item, const char* combo_items_separated_by_zeros, // NOLINT(hicpp-avoid-c-arrays,modernize-avoid-c-arrays,cppcoreguidelines-avoid-c-arrays)
519 const char* format = "%.6f", ImGuiInputTextFlags flags = 0,
520 int combo_popup_max_height_in_items = -1)
521{
522 auto change = internal::InputWithUnit<ImGuiDataType_Double, 2, double>(label, itemWidth, unitWidth, v, combo_current_item, combo_items_separated_by_zeros, 0.0, 0.0, format, flags, combo_popup_max_height_in_items);
523 if (change == InputWithUnitChange::InputWithUnitChange_Input)
524 {
525 for (size_t i = 0; i < 2; i++)
526 {
527 v[i] = std::clamp(v[i], v_min, v_max);
528 }
529 }
530 return change;
531}
532
546template<typename U>
547InputWithUnitChange InputDouble3LWithUnit(const char* label, float itemWidth, float unitWidth,
548 double v[3], double v_min, double v_max, U& combo_current_item, const char* combo_items_separated_by_zeros, // NOLINT(hicpp-avoid-c-arrays,modernize-avoid-c-arrays,cppcoreguidelines-avoid-c-arrays)
549 const char* format = "%.6f", ImGuiInputTextFlags flags = 0,
550 int combo_popup_max_height_in_items = -1)
551{
552 auto change = internal::InputWithUnit<ImGuiDataType_Double, 3, double>(label, itemWidth, unitWidth, v, combo_current_item, combo_items_separated_by_zeros, 0.0, 0.0, format, flags, combo_popup_max_height_in_items);
553 if (change == InputWithUnitChange::InputWithUnitChange_Input)
554 {
555 for (size_t i = 0; i < 3; i++)
556 {
557 v[i] = std::clamp(v[i], v_min, v_max);
558 }
559 }
560 return change;
561}
562
576template<typename U>
577InputWithUnitChange InputDouble4LWithUnit(const char* label, float itemWidth, float unitWidth,
578 double v[4], double v_min, double v_max, U& combo_current_item, const char* combo_items_separated_by_zeros, // NOLINT(hicpp-avoid-c-arrays,modernize-avoid-c-arrays,cppcoreguidelines-avoid-c-arrays)
579 const char* format = "%.6f", ImGuiInputTextFlags flags = 0,
580 int combo_popup_max_height_in_items = -1)
581{
582 auto change = internal::InputWithUnit<ImGuiDataType_Double, 4, double>(label, itemWidth, unitWidth, v, combo_current_item, combo_items_separated_by_zeros, 0.0, 0.0, format, flags, combo_popup_max_height_in_items);
583 if (change == InputWithUnitChange::InputWithUnitChange_Input)
584 {
585 for (size_t i = 0; i < 4; i++)
586 {
587 v[i] = std::clamp(v[i], v_min, v_max);
588 }
589 }
590 return change;
591}
592
593// ###########################################################################################################
594
608template<typename U>
609InputWithUnitChange SliderFloatWithUnit(const char* label, float itemWidth, float unitWidth,
610 float* v, float v_min, float v_max, U& combo_current_item, const char* combo_items_separated_by_zeros,
611 const char* format = "%.3f", ImGuiSliderFlags flags = 0,
612 int combo_popup_max_height_in_items = -1)
613{
614 return internal::SliderWithUnit<ImGuiDataType_Float, 1, float>(label, itemWidth, unitWidth, v, combo_current_item, combo_items_separated_by_zeros, v_min, v_max, format, flags, combo_popup_max_height_in_items);
615}
616
630template<typename U>
631InputWithUnitChange SliderFloat2WithUnit(const char* label, float itemWidth, float unitWidth,
632 float v[2], float v_min, float v_max, U& combo_current_item, const char* combo_items_separated_by_zeros, // NOLINT(hicpp-avoid-c-arrays,modernize-avoid-c-arrays,cppcoreguidelines-avoid-c-arrays)
633 const char* format = "%.3f", ImGuiSliderFlags flags = 0,
634 int combo_popup_max_height_in_items = -1)
635{
636 return internal::SliderWithUnit<ImGuiDataType_Float, 2, float>(label, itemWidth, unitWidth, v, combo_current_item, combo_items_separated_by_zeros, v_min, v_max, format, flags, combo_popup_max_height_in_items);
637}
638
652template<typename U>
653InputWithUnitChange SliderFloat3WithUnit(const char* label, float itemWidth, float unitWidth,
654 float v[3], float v_min, float v_max, U& combo_current_item, const char* combo_items_separated_by_zeros, // NOLINT(hicpp-avoid-c-arrays,modernize-avoid-c-arrays,cppcoreguidelines-avoid-c-arrays)
655 const char* format = "%.3f", ImGuiSliderFlags flags = 0,
656 int combo_popup_max_height_in_items = -1)
657{
658 return internal::SliderWithUnit<ImGuiDataType_Float, 3, float>(label, itemWidth, unitWidth, v, combo_current_item, combo_items_separated_by_zeros, v_min, v_max, format, flags, combo_popup_max_height_in_items);
659}
660
674template<typename U>
675InputWithUnitChange SliderFloat4WithUnit(const char* label, float itemWidth, float unitWidth,
676 float v[4], float v_min, float v_max, U& combo_current_item, const char* combo_items_separated_by_zeros, // NOLINT(hicpp-avoid-c-arrays,modernize-avoid-c-arrays,cppcoreguidelines-avoid-c-arrays)
677 const char* format = "%.3f", ImGuiSliderFlags flags = 0,
678 int combo_popup_max_height_in_items = -1)
679{
680 return internal::SliderWithUnit<ImGuiDataType_Float, 4, float>(label, itemWidth, unitWidth, v, combo_current_item, combo_items_separated_by_zeros, v_min, v_max, format, flags, combo_popup_max_height_in_items);
681}
682
696template<typename U>
697InputWithUnitChange SliderDoubleWithUnit(const char* label, float itemWidth, float unitWidth,
698 double* v, double v_min, double v_max, U& combo_current_item, const char* combo_items_separated_by_zeros,
699 const char* format = "%.6f", ImGuiSliderFlags flags = 0,
700 int combo_popup_max_height_in_items = -1)
701{
702 return internal::SliderWithUnit<ImGuiDataType_Double, 1, double>(label, itemWidth, unitWidth, v, combo_current_item, combo_items_separated_by_zeros, v_min, v_max, format, flags, combo_popup_max_height_in_items);
703}
704
718template<typename U>
719InputWithUnitChange SliderDouble2WithUnit(const char* label, float itemWidth, float unitWidth,
720 double v[2], double v_min, double v_max, U& combo_current_item, const char* combo_items_separated_by_zeros, // NOLINT(hicpp-avoid-c-arrays,modernize-avoid-c-arrays,cppcoreguidelines-avoid-c-arrays)
721 const char* format = "%.6f", ImGuiSliderFlags flags = 0,
722 int combo_popup_max_height_in_items = -1)
723{
724 return internal::SliderWithUnit<ImGuiDataType_Double, 2, double>(label, itemWidth, unitWidth, v, combo_current_item, combo_items_separated_by_zeros, v_min, v_max, format, flags, combo_popup_max_height_in_items);
725}
726
740template<typename U>
741InputWithUnitChange SliderDouble3WithUnit(const char* label, float itemWidth, float unitWidth,
742 double v[3], double v_min, double v_max, U& combo_current_item, const char* combo_items_separated_by_zeros, // NOLINT(hicpp-avoid-c-arrays,modernize-avoid-c-arrays,cppcoreguidelines-avoid-c-arrays)
743 const char* format = "%.6f", ImGuiSliderFlags flags = 0,
744 int combo_popup_max_height_in_items = -1)
745{
746 return internal::SliderWithUnit<ImGuiDataType_Double, 3, double>(label, itemWidth, unitWidth, v, combo_current_item, combo_items_separated_by_zeros, v_min, v_max, format, flags, combo_popup_max_height_in_items);
747}
748
762template<typename U>
763InputWithUnitChange SliderDouble4WithUnit(const char* label, float itemWidth, float unitWidth,
764 double v[4], double v_min, double v_max, U& combo_current_item, const char* combo_items_separated_by_zeros, // NOLINT(hicpp-avoid-c-arrays,modernize-avoid-c-arrays,cppcoreguidelines-avoid-c-arrays)
765 const char* format = "%.6f", ImGuiSliderFlags flags = 0,
766 int combo_popup_max_height_in_items = -1)
767{
768 return internal::SliderWithUnit<ImGuiDataType_Double, 4, double>(label, itemWidth, unitWidth, v, combo_current_item, combo_items_separated_by_zeros, v_min, v_max, format, flags, combo_popup_max_height_in_items);
769}
770
771} // namespace gui::widgets
772} // namespace NAV
InputWithUnitChange SliderDouble4WithUnit(const char *label, float itemWidth, float unitWidth, double v[4], double v_min, double v_max, U &combo_current_item, const char *combo_items_separated_by_zeros, const char *format="%.6f", ImGuiSliderFlags flags=0, int combo_popup_max_height_in_items=-1)
Shows an Slider GUI element to modify the provided value and also set its unit.
Definition InputWithUnit.hpp:763
InputWithUnitChange SliderFloat4WithUnit(const char *label, float itemWidth, float unitWidth, float v[4], float v_min, float v_max, U &combo_current_item, const char *combo_items_separated_by_zeros, const char *format="%.3f", ImGuiSliderFlags flags=0, int combo_popup_max_height_in_items=-1)
Shows an Slider GUI element to modify the provided value and also set its unit.
Definition InputWithUnit.hpp:675
InputWithUnitChange SliderDouble3WithUnit(const char *label, float itemWidth, float unitWidth, double v[3], double v_min, double v_max, U &combo_current_item, const char *combo_items_separated_by_zeros, const char *format="%.6f", ImGuiSliderFlags flags=0, int combo_popup_max_height_in_items=-1)
Shows an Slider GUI element to modify the provided value and also set its unit.
Definition InputWithUnit.hpp:741
InputWithUnitChange InputFloat3WithUnit(const char *label, float itemWidth, float unitWidth, float v[3], U &combo_current_item, const char *combo_items_separated_by_zeros, const char *format="%.3f", ImGuiInputTextFlags flags=0, int combo_popup_max_height_in_items=-1)
Shows an InputText GUI element to modify the provided value and also set its unit.
Definition InputWithUnit.hpp:243
InputWithUnitChange InputDoubleWithUnit(const char *label, float itemWidth, float unitWidth, double *v, U &combo_current_item, const char *combo_items_separated_by_zeros, double step=0.0, double step_fast=0.0, const char *format="%.6f", ImGuiInputTextFlags flags=0, int combo_popup_max_height_in_items=-1)
Shows an InputText GUI element to modify the provided value and also set its unit.
Definition InputWithUnit.hpp:285
InputWithUnitChange InputDouble4LWithUnit(const char *label, float itemWidth, float unitWidth, double v[4], double v_min, double v_max, U &combo_current_item, const char *combo_items_separated_by_zeros, const char *format="%.6f", ImGuiInputTextFlags flags=0, int combo_popup_max_height_in_items=-1)
Shows an InputText GUI element to modify the provided value and also set its unit.
Definition InputWithUnit.hpp:577
InputWithUnitChange SliderFloatWithUnit(const char *label, float itemWidth, float unitWidth, float *v, float v_min, float v_max, U &combo_current_item, const char *combo_items_separated_by_zeros, const char *format="%.3f", ImGuiSliderFlags flags=0, int combo_popup_max_height_in_items=-1)
Shows an Slider GUI element to modify the provided value and also set its unit.
Definition InputWithUnit.hpp:609
InputWithUnitChange SliderDoubleWithUnit(const char *label, float itemWidth, float unitWidth, double *v, double v_min, double v_max, U &combo_current_item, const char *combo_items_separated_by_zeros, const char *format="%.6f", ImGuiSliderFlags flags=0, int combo_popup_max_height_in_items=-1)
Shows an Slider GUI element to modify the provided value and also set its unit.
Definition InputWithUnit.hpp:697
InputWithUnitChange InputFloat2LWithUnit(const char *label, float itemWidth, float unitWidth, float v[2], float v_min, float v_max, U &combo_current_item, const char *combo_items_separated_by_zeros, const char *format="%.3f", ImGuiInputTextFlags flags=0, int combo_popup_max_height_in_items=-1)
Shows an InputText GUI element to modify the provided value and also set its unit.
Definition InputWithUnit.hpp:398
InputWithUnitChange
Return value signaling that the input or the unit changed.
Definition InputWithUnit.hpp:45
@ InputWithUnitChange_None
Nothing changed.
Definition InputWithUnit.hpp:46
@ InputWithUnitChange_Unit
The Unit changed.
Definition InputWithUnit.hpp:48
@ InputWithUnitChange_Input
The Input changed.
Definition InputWithUnit.hpp:47
InputWithUnitChange InputDouble3WithUnit(const char *label, float itemWidth, float unitWidth, double v[3], U &combo_current_item, const char *combo_items_separated_by_zeros, const char *format="%.6f", ImGuiInputTextFlags flags=0, int combo_popup_max_height_in_items=-1)
Shows an InputText GUI element to modify the provided value and also set its unit.
Definition InputWithUnit.hpp:325
InputWithUnitChange InputDouble2WithUnit(const char *label, float itemWidth, float unitWidth, double v[2], U &combo_current_item, const char *combo_items_separated_by_zeros, const char *format="%.6f", ImGuiInputTextFlags flags=0, int combo_popup_max_height_in_items=-1)
Shows an InputText GUI element to modify the provided value and also set its unit.
Definition InputWithUnit.hpp:305
InputWithUnitChange SliderFloat3WithUnit(const char *label, float itemWidth, float unitWidth, float v[3], float v_min, float v_max, U &combo_current_item, const char *combo_items_separated_by_zeros, const char *format="%.3f", ImGuiSliderFlags flags=0, int combo_popup_max_height_in_items=-1)
Shows an Slider GUI element to modify the provided value and also set its unit.
Definition InputWithUnit.hpp:653
InputWithUnitChange InputDouble2LWithUnit(const char *label, float itemWidth, float unitWidth, double v[2], double v_min, double v_max, U &combo_current_item, const char *combo_items_separated_by_zeros, const char *format="%.6f", ImGuiInputTextFlags flags=0, int combo_popup_max_height_in_items=-1)
Shows an InputText GUI element to modify the provided value and also set its unit.
Definition InputWithUnit.hpp:517
InputWithUnitChange InputFloatLWithUnit(const char *label, float itemWidth, float unitWidth, float *v, float v_min, float v_max, U &combo_current_item, const char *combo_items_separated_by_zeros, float step=0.0, float step_fast=0.0, const char *format="%.3f", ImGuiInputTextFlags flags=0, int combo_popup_max_height_in_items=-1)
Shows an InputText GUI element to modify the provided value and also set its unit.
Definition InputWithUnit.hpp:371
InputWithUnitChange SliderDouble2WithUnit(const char *label, float itemWidth, float unitWidth, double v[2], double v_min, double v_max, U &combo_current_item, const char *combo_items_separated_by_zeros, const char *format="%.6f", ImGuiSliderFlags flags=0, int combo_popup_max_height_in_items=-1)
Shows an Slider GUI element to modify the provided value and also set its unit.
Definition InputWithUnit.hpp:719
InputWithUnitChange InputFloatWithUnit(const char *label, float itemWidth, float unitWidth, float *v, U &combo_current_item, const char *combo_items_separated_by_zeros, float step=0.0, float step_fast=0.0, const char *format="%.3f", ImGuiInputTextFlags flags=0, int combo_popup_max_height_in_items=-1)
Shows an InputText GUI element to modify the provided value and also set its unit.
Definition InputWithUnit.hpp:203
InputWithUnitChange SliderFloat2WithUnit(const char *label, float itemWidth, float unitWidth, float v[2], float v_min, float v_max, U &combo_current_item, const char *combo_items_separated_by_zeros, const char *format="%.3f", ImGuiSliderFlags flags=0, int combo_popup_max_height_in_items=-1)
Shows an Slider GUI element to modify the provided value and also set its unit.
Definition InputWithUnit.hpp:631
InputWithUnitChange InputFloat2WithUnit(const char *label, float itemWidth, float unitWidth, float v[2], U &combo_current_item, const char *combo_items_separated_by_zeros, const char *format="%.3f", ImGuiInputTextFlags flags=0, int combo_popup_max_height_in_items=-1)
Shows an InputText GUI element to modify the provided value and also set its unit.
Definition InputWithUnit.hpp:223
std::string MakeComboItems()
Units separated by '\0' and terminated by double '\0'.
Definition InputWithUnit.hpp:28
InputWithUnitChange InputDouble3LWithUnit(const char *label, float itemWidth, float unitWidth, double v[3], double v_min, double v_max, U &combo_current_item, const char *combo_items_separated_by_zeros, const char *format="%.6f", ImGuiInputTextFlags flags=0, int combo_popup_max_height_in_items=-1)
Shows an InputText GUI element to modify the provided value and also set its unit.
Definition InputWithUnit.hpp:547
InputWithUnitChange InputDouble4WithUnit(const char *label, float itemWidth, float unitWidth, double v[4], U &combo_current_item, const char *combo_items_separated_by_zeros, const char *format="%.6f", ImGuiInputTextFlags flags=0, int combo_popup_max_height_in_items=-1)
Shows an InputText GUI element to modify the provided value and also set its unit.
Definition InputWithUnit.hpp:345
InputWithUnitChange InputDoubleLWithUnit(const char *label, float itemWidth, float unitWidth, double *v, double v_min, double v_max, U &combo_current_item, const char *combo_items_separated_by_zeros, double step=0.0, double step_fast=0.0, const char *format="%.6f", ImGuiInputTextFlags flags=0, int combo_popup_max_height_in_items=-1)
Shows an InputText GUI element to modify the provided value and also set its unit.
Definition InputWithUnit.hpp:490
InputWithUnitChange InputWithUnit(const char *label, float itemWidth, float unitWidth, T v[_Size], U &combo_current_item, const char *combo_items_separated_by_zeros, T step, T step_fast, const char *format, ImGuiInputTextFlags flags, int combo_popup_max_height_in_items)
Shows an InputText GUI element to modify the provided value and also set its unit.
Definition InputWithUnit.hpp:115
InputWithUnitChange Unit(const char *label, float unitWidth, U &combo_current_item, const char *combo_items_separated_by_zeros, int combo_popup_max_height_in_items)
Shows a Unit input combo.
Definition InputWithUnit.hpp:62
InputWithUnitChange SliderWithUnit(const char *label, float itemWidth, float unitWidth, T v[_Size], U &combo_current_item, const char *combo_items_separated_by_zeros, T min, T max, const char *format, ImGuiInputTextFlags flags, int combo_popup_max_height_in_items)
Shows an Slider GUI element to modify the provided value and also set its unit.
Definition InputWithUnit.hpp:158
InputWithUnitChange InputFloat4LWithUnit(const char *label, float itemWidth, float unitWidth, float v[4], float v_min, float v_max, U &combo_current_item, const char *combo_items_separated_by_zeros, const char *format="%.3f", ImGuiInputTextFlags flags=0, int combo_popup_max_height_in_items=-1)
Shows an InputText GUI element to modify the provided value and also set its unit.
Definition InputWithUnit.hpp:458
InputWithUnitChange InputFloat3LWithUnit(const char *label, float itemWidth, float unitWidth, float v[3], float v_min, float v_max, U &combo_current_item, const char *combo_items_separated_by_zeros, const char *format="%.3f", ImGuiInputTextFlags flags=0, int combo_popup_max_height_in_items=-1)
Shows an InputText GUI element to modify the provided value and also set its unit.
Definition InputWithUnit.hpp:428
InputWithUnitChange InputFloat4WithUnit(const char *label, float itemWidth, float unitWidth, float v[4], U &combo_current_item, const char *combo_items_separated_by_zeros, const char *format="%.3f", ImGuiInputTextFlags flags=0, int combo_popup_max_height_in_items=-1)
Shows an InputText GUI element to modify the provided value and also set its unit.
Definition InputWithUnit.hpp:263
const char * to_string(gui::widgets::PositionWithFrame::ReferenceFrame refFrame)
Converts the enum to a string.
ImGui extensions.