17#include <fmt/format.h>
31 for (
size_t i = 0; i < static_cast<size_t>(T::COUNT); i++)
33 if (!str.empty()) { str +=
'\0'; }
63 U& combo_current_item,
const char* combo_items_separated_by_zeros,
64 int combo_popup_max_height_in_items)
68 ImGui::SetNextItemWidth(unitWidth - ImGui::GetStyle().ItemSpacing.x);
73 for (
size_t i = 0; first !=
'\0' || second !=
'\0'; i++)
75 first = *(combo_items_separated_by_zeros + i);
76 second = *(combo_items_separated_by_zeros + i + 1);
78 if (first ==
'\0' && second !=
'\0')
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(), ¤t_item, combo_items_separated_by_zeros, combo_popup_max_height_in_items))
89 combo_current_item =
static_cast<U
>(current_item);
92 if (disable) { ImGui::EndDisabled(); }
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());
114template<ImGuiDataType_ _Scalar,
unsigned int _Size,
typename T,
typename U>
116 T v[_Size], U& combo_current_item,
const char* combo_items_separated_by_zeros,
117 T step, T step_fast,
const char* format, ImGuiInputTextFlags flags,
118 int combo_popup_max_height_in_items)
122 ImGui::SetNextItemWidth(itemWidth - unitWidth);
123 if constexpr (_Size == 1)
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))
133 if (ImGui::InputScalarN(fmt::format(
"##{} - input", label).c_str(), _Scalar, v, _Size,
nullptr,
nullptr, format, flags))
139 retVal =
static_cast<InputWithUnitChange>(retVal |
Unit(label, unitWidth, combo_current_item, combo_items_separated_by_zeros, combo_popup_max_height_in_items));
157template<ImGuiDataType_ _Scalar,
unsigned int _Size,
typename T,
typename U>
159 T v[_Size], U& combo_current_item,
const char* combo_items_separated_by_zeros,
160 T min, T max,
const char* format, ImGuiInputTextFlags flags,
161 int combo_popup_max_height_in_items)
165 ImGui::SetNextItemWidth(itemWidth - unitWidth);
166 if constexpr (_Size == 1)
168 flags |= ImGuiInputTextFlags_CharsScientific;
169 if (ImGui::SliderScalar(fmt::format(
"##{} - input", label).c_str(), _Scalar,
static_cast<void*
>(v), &min, &max, format, flags))
176 if (ImGui::SliderScalarN(fmt::format(
"##{} - input", label).c_str(), _Scalar, v, _Size, &min, &max, format, flags))
182 retVal =
static_cast<InputWithUnitChange>(retVal |
Unit(label, unitWidth, combo_current_item, combo_items_separated_by_zeros, combo_popup_max_height_in_items));
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)
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);
224 float v[2], U& combo_current_item,
const char* combo_items_separated_by_zeros,
225 const char* format =
"%.3f", ImGuiInputTextFlags flags = 0,
226 int combo_popup_max_height_in_items = -1)
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);
244 float v[3], U& combo_current_item,
const char* combo_items_separated_by_zeros,
245 const char* format =
"%.3f", ImGuiInputTextFlags flags = 0,
246 int combo_popup_max_height_in_items = -1)
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);
264 float v[4], U& combo_current_item,
const char* combo_items_separated_by_zeros,
265 const char* format =
"%.3f", ImGuiInputTextFlags flags = 0,
266 int combo_popup_max_height_in_items = -1)
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);
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)
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);
306 double v[2], U& combo_current_item,
const char* combo_items_separated_by_zeros,
307 const char* format =
"%.6f", ImGuiInputTextFlags flags = 0,
308 int combo_popup_max_height_in_items = -1)
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);
326 double v[3], U& combo_current_item,
const char* combo_items_separated_by_zeros,
327 const char* format =
"%.6f", ImGuiInputTextFlags flags = 0,
328 int combo_popup_max_height_in_items = -1)
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);
346 double v[4], U& combo_current_item,
const char* combo_items_separated_by_zeros,
347 const char* format =
"%.6f", ImGuiInputTextFlags flags = 0,
348 int combo_popup_max_height_in_items = -1)
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);
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)
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)
379 *v = std::clamp(*v, v_min, v_max);
399 float v[2],
float v_min,
float v_max, U& combo_current_item,
const char* combo_items_separated_by_zeros,
400 const char* format =
"%.3f", ImGuiInputTextFlags flags = 0,
401 int combo_popup_max_height_in_items = -1)
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)
406 for (
size_t i = 0; i < 2; i++)
408 v[i] = std::clamp(v[i], v_min, v_max);
429 float v[3],
float v_min,
float v_max, U& combo_current_item,
const char* combo_items_separated_by_zeros,
430 const char* format =
"%.3f", ImGuiInputTextFlags flags = 0,
431 int combo_popup_max_height_in_items = -1)
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)
436 for (
size_t i = 0; i < 3; i++)
438 v[i] = std::clamp(v[i], v_min, v_max);
459 float v[4],
float v_min,
float v_max, U& combo_current_item,
const char* combo_items_separated_by_zeros,
460 const char* format =
"%.3f", ImGuiInputTextFlags flags = 0,
461 int combo_popup_max_height_in_items = -1)
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)
466 for (
size_t i = 0; i < 4; i++)
468 v[i] = std::clamp(v[i], v_min, v_max);
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)
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)
498 *v = std::clamp(*v, v_min, v_max);
518 double v[2],
double v_min,
double v_max, U& combo_current_item,
const char* combo_items_separated_by_zeros,
519 const char* format =
"%.6f", ImGuiInputTextFlags flags = 0,
520 int combo_popup_max_height_in_items = -1)
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)
525 for (
size_t i = 0; i < 2; i++)
527 v[i] = std::clamp(v[i], v_min, v_max);
548 double v[3],
double v_min,
double v_max, U& combo_current_item,
const char* combo_items_separated_by_zeros,
549 const char* format =
"%.6f", ImGuiInputTextFlags flags = 0,
550 int combo_popup_max_height_in_items = -1)
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)
555 for (
size_t i = 0; i < 3; i++)
557 v[i] = std::clamp(v[i], v_min, v_max);
578 double v[4],
double v_min,
double v_max, U& combo_current_item,
const char* combo_items_separated_by_zeros,
579 const char* format =
"%.6f", ImGuiInputTextFlags flags = 0,
580 int combo_popup_max_height_in_items = -1)
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)
585 for (
size_t i = 0; i < 4; i++)
587 v[i] = std::clamp(v[i], v_min, v_max);
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)
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);
632 float v[2],
float v_min,
float v_max, U& combo_current_item,
const char* combo_items_separated_by_zeros,
633 const char* format =
"%.3f", ImGuiSliderFlags flags = 0,
634 int combo_popup_max_height_in_items = -1)
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);
654 float v[3],
float v_min,
float v_max, U& combo_current_item,
const char* combo_items_separated_by_zeros,
655 const char* format =
"%.3f", ImGuiSliderFlags flags = 0,
656 int combo_popup_max_height_in_items = -1)
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);
676 float v[4],
float v_min,
float v_max, U& combo_current_item,
const char* combo_items_separated_by_zeros,
677 const char* format =
"%.3f", ImGuiSliderFlags flags = 0,
678 int combo_popup_max_height_in_items = -1)
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);
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)
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);
720 double v[2],
double v_min,
double v_max, U& combo_current_item,
const char* combo_items_separated_by_zeros,
721 const char* format =
"%.6f", ImGuiSliderFlags flags = 0,
722 int combo_popup_max_height_in_items = -1)
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);
742 double v[3],
double v_min,
double v_max, U& combo_current_item,
const char* combo_items_separated_by_zeros,
743 const char* format =
"%.6f", ImGuiSliderFlags flags = 0,
744 int combo_popup_max_height_in_items = -1)
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);
764 double v[4],
double v_min,
double v_max, U& combo_current_item,
const char* combo_items_separated_by_zeros,
765 const char* format =
"%.6f", ImGuiSliderFlags flags = 0,
766 int combo_popup_max_height_in_items = -1)
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);