Searched refs:RadioButton (Results 1 - 5 of 5) sorted by relevance
| /xsrc/external/mit/MesaLib.old/dist/src/imgui/ |
| H A D | imgui_demo.cpp | 420 ImGui::RadioButton("radio a", &e, 0); ImGui::SameLine(); 421 ImGui::RadioButton("radio b", &e, 1); ImGui::SameLine(); 422 ImGui::RadioButton("radio c", &e, 2); 1383 if (ImGui::RadioButton("Copy", mode == Mode_Copy)) { mode = Mode_Copy; } ImGui::SameLine(); 1384 if (ImGui::RadioButton("Move", mode == Mode_Move)) { mode = Mode_Move; } ImGui::SameLine(); 1385 if (ImGui::RadioButton("Swap", mode == Mode_Swap)) { mode = Mode_Swap; } 1442 ImGui::RadioButton("Text", &item_type, 0); 1443 ImGui::RadioButton("Button", &item_type, 1); 1444 ImGui::RadioButton("Checkbox", &item_type, 2); 1445 ImGui::RadioButton("SliderFloa [all...] |
| H A D | imgui.h | 394 IMGUI_API bool RadioButton(const char* label, bool active); // use with e.g. if (RadioButton("one", my_value==1)) { my_value = 1; } 395 IMGUI_API bool RadioButton(const char* label, int* v, int v_button); // shortcut to handle the above pattern when value is an integer
|
| H A D | imgui_widgets.cpp | 10 // [SECTION] Widgets: Main (Button, Image, Checkbox, RadioButton, ProgressBar, Bullet, etc.) 383 // - RadioButton() 965 bool ImGui::RadioButton(const char* label, bool active) function in class:ImGui 1016 bool ImGui::RadioButton(const char* label, int* v, int v_button) function in class:ImGui 1018 const bool pressed = RadioButton(label, *v == v_button); 4535 if (RadioButton("RGB", (opts & ImGuiColorEditFlags_RGB) != 0)) opts = (opts & ~ImGuiColorEditFlags__InputsMask) | ImGuiColorEditFlags_RGB; 4536 if (RadioButton("HSV", (opts & ImGuiColorEditFlags_HSV) != 0)) opts = (opts & ~ImGuiColorEditFlags__InputsMask) | ImGuiColorEditFlags_HSV; 4537 if (RadioButton("HEX", (opts & ImGuiColorEditFlags_HEX) != 0)) opts = (opts & ~ImGuiColorEditFlags__InputsMask) | ImGuiColorEditFlags_HEX; 4542 if (RadioButton("0..255", (opts & ImGuiColorEditFlags_Uint8) != 0)) opts = (opts & ~ImGuiColorEditFlags__DataTypeMask) | ImGuiColorEditFlags_Uint8; 4543 if (RadioButton("0.0 [all...] |
| /xsrc/external/mit/MesaLib/dist/src/imgui/ |
| H A D | imgui.h | 394 IMGUI_API bool RadioButton(const char* label, bool active); // use with e.g. if (RadioButton("one", my_value==1)) { my_value = 1; } 395 IMGUI_API bool RadioButton(const char* label, int* v, int v_button); // shortcut to handle the above pattern when value is an integer
|
| H A D | imgui_widgets.cpp | 10 // [SECTION] Widgets: Main (Button, Image, Checkbox, RadioButton, ProgressBar, Bullet, etc.) 383 // - RadioButton() 965 bool ImGui::RadioButton(const char* label, bool active) function in class:ImGui 1016 bool ImGui::RadioButton(const char* label, int* v, int v_button) function in class:ImGui 1018 const bool pressed = RadioButton(label, *v == v_button); 4535 if (RadioButton("RGB", (opts & ImGuiColorEditFlags_RGB) != 0)) opts = (opts & ~ImGuiColorEditFlags__InputsMask) | ImGuiColorEditFlags_RGB; 4536 if (RadioButton("HSV", (opts & ImGuiColorEditFlags_HSV) != 0)) opts = (opts & ~ImGuiColorEditFlags__InputsMask) | ImGuiColorEditFlags_HSV; 4537 if (RadioButton("HEX", (opts & ImGuiColorEditFlags_HEX) != 0)) opts = (opts & ~ImGuiColorEditFlags__InputsMask) | ImGuiColorEditFlags_HEX; 4542 if (RadioButton("0..255", (opts & ImGuiColorEditFlags_Uint8) != 0)) opts = (opts & ~ImGuiColorEditFlags__DataTypeMask) | ImGuiColorEditFlags_Uint8; 4543 if (RadioButton("0.0 [all...] |
Completed in 61 milliseconds