Lines Matching refs:RadioButton
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("SliderFloat", &item_type, 3);
1446 ImGui::RadioButton("ColorEdit4", &item_type, 4);
1447 ImGui::RadioButton("ListBox", &item_type, 5);
2882 ImGui::RadioButton("Opaque", &alpha_flags, 0); ImGui::SameLine();
2883 ImGui::RadioButton("Alpha", &alpha_flags, ImGuiColorEditFlags_AlphaPreview); ImGui::SameLine();
2884 ImGui::RadioButton("Both", &alpha_flags, ImGuiColorEditFlags_AlphaPreviewHalf); ImGui::SameLine();