mirror of
https://github.com/Drezil/imgui.git
synced 2025-04-14 15:13:59 +00:00
Added support for CheckboxFlags that can set multiple flags at the same time.
This commit is contained in:
parent
4b7edffe8a
commit
5abb39cb1f
12
imgui.cpp
12
imgui.cpp
@ -6907,12 +6907,14 @@ bool ImGui::Checkbox(const char* label, bool* v)
|
|||||||
|
|
||||||
bool ImGui::CheckboxFlags(const char* label, unsigned int* flags, unsigned int flags_value)
|
bool ImGui::CheckboxFlags(const char* label, unsigned int* flags, unsigned int flags_value)
|
||||||
{
|
{
|
||||||
bool v = (*flags & flags_value) ? true : false;
|
bool v = ((*flags & flags_value) == flags_value);
|
||||||
bool pressed = ImGui::Checkbox(label, &v);
|
bool pressed = ImGui::Checkbox(label, &v);
|
||||||
if (v)
|
if(pressed) {
|
||||||
*flags |= flags_value;
|
if (v)
|
||||||
else
|
*flags |= flags_value;
|
||||||
*flags &= ~flags_value;
|
else
|
||||||
|
*flags &= ~flags_value;
|
||||||
|
}
|
||||||
return pressed;
|
return pressed;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user