Lines Matching refs:Checkbox
330 ImGui::Checkbox("io.ConfigInputTextCursorBlink", &io.ConfigInputTextCursorBlink);
332 ImGui::Checkbox("io.ConfigWindowsResizeFromEdges", &io.ConfigWindowsResizeFromEdges);
334 ImGui::Checkbox("io.ConfigWindowsMoveFromTitleBarOnly", &io.ConfigWindowsMoveFromTitleBarOnly);
335 ImGui::Checkbox("io.MouseDrawCursor", &io.MouseDrawCursor);
377 ImGui::Checkbox("No titlebar", &no_titlebar); ImGui::SameLine(150);
378 ImGui::Checkbox("No scrollbar", &no_scrollbar); ImGui::SameLine(300);
379 ImGui::Checkbox("No menu", &no_menu);
380 ImGui::Checkbox("No move", &no_move); ImGui::SameLine(150);
381 ImGui::Checkbox("No resize", &no_resize); ImGui::SameLine(300);
382 ImGui::Checkbox("No collapse", &no_collapse);
383 ImGui::Checkbox("No close", &no_close); ImGui::SameLine(150);
384 ImGui::Checkbox("No nav", &no_nav); ImGui::SameLine(300);
385 ImGui::Checkbox("No background", &no_background);
386 ImGui::Checkbox("No bring to front", &no_bring_to_front);
417 ImGui::Checkbox("checkbox", &check);
578 ImGui::Checkbox("Align label with current X position)", &align_label_with_current_x_position);
630 ImGui::Checkbox("Enable extra group", &closable_group);
957 ImGui::Checkbox("Read-only", &read_only);
966 ImGui::Checkbox("Animate", &animate);
1036 ImGui::Checkbox("With Alpha Preview", &alpha_preview);
1037 ImGui::Checkbox("With Half Alpha Preview", &alpha_half_preview);
1038 ImGui::Checkbox("With Drag and Drop", &drag_and_drop);
1039 ImGui::Checkbox("With Options Menu", &options_menu); ImGui::SameLine(); ShowHelpMarker("Right-click on the individual color widget to show options.");
1040 ImGui::Checkbox("With HDR", &hdr); ImGui::SameLine(); ShowHelpMarker("Currently all this does is to lift the 0..1 limits on dragging widgets.");
1132 ImGui::Checkbox("With Alpha", &alpha);
1133 ImGui::Checkbox("With Alpha Bar", &alpha_bar);
1134 ImGui::Checkbox("With Side Preview", &side_preview);
1138 ImGui::Checkbox("With Ref Color", &ref_color);
1218 ImGui::Checkbox("Clamp integers to 0..50", &drag_clamp); ImGui::SameLine(); ShowHelpMarker("As with every widgets in dear imgui, we never modify values unless there is a user interaction.\nYou can override the clamping limits by using CTRL+Click to input a value.");
1250 ImGui::Checkbox("Show step buttons", &inputs_step);
1444 ImGui::RadioButton("Checkbox", &item_type, 2);
1452 if (item_type == 2) { ret = ImGui::Checkbox("ITEM: Checkbox", &b); } // Testing checkbox
1492 ImGui::Checkbox("Embed everything inside a child window (for additional testing)", &embed_all_inside_a_child_window);
1535 ImGui::Checkbox("Hovered/Active tests after Begin() for title bar testing", &test_window);
1565 ImGui::Checkbox("Disable Mouse Wheel", &disable_mouse_wheel);
1566 ImGui::Checkbox("Disable Menu", &disable_menu);
1710 // Checkbox
1712 ImGui::Checkbox("My", &c1); ImGui::SameLine();
1713 ImGui::Checkbox("Tailor", &c2); ImGui::SameLine();
1714 ImGui::Checkbox("Is", &c3); ImGui::SameLine();
1715 ImGui::Checkbox("Rich", &c4);
1815 ImGui::Checkbox(names[n], &opened[n]);
1942 ImGui::Checkbox("Track", &track);
2191 ImGui::Checkbox("Don't ask me next time", &dont_ask_me_next_time);
2367 ImGui::Checkbox("horizontal", &h_borders);
2369 ImGui::Checkbox("vertical", &v_borders);
2626 ImGui::Checkbox("Config/Build Information", &show_config_info);
2802 { bool window_border = (style.WindowBorderSize > 0.0f); if (ImGui::Checkbox("WindowBorder", &window_border)) style.WindowBorderSize = window_border ? 1.0f : 0.0f; }
2804 { bool frame_border = (style.FrameBorderSize > 0.0f); if (ImGui::Checkbox("FrameBorder", &frame_border)) style.FrameBorderSize = frame_border ? 1.0f : 0.0f; }
2806 { bool popup_border = (style.PopupBorderSize > 0.0f); if (ImGui::Checkbox("PopupBorder", &popup_border)) style.PopupBorderSize = popup_border ? 1.0f : 0.0f; }
2876 ImGui::SameLine(); ImGui::Checkbox("Only Modified Colors", &output_only_modified);
3000 ImGui::Checkbox("Anti-aliased lines", &style.AntiAliasedLines); ImGui::SameLine(); ShowHelpMarker("When disabling anti-aliasing lines, you'll probably want to disable borders in your style as well.");
3001 ImGui::Checkbox("Anti-aliased fill", &style.AntiAliasedFill);
3085 ImGui::Checkbox("Check", &b);
3210 if (ImGui::Checkbox("Auto-scroll", &AutoScroll))
3497 if (ImGui::Checkbox("Auto-scroll", &AutoScroll))
3856 ImGui::Checkbox("Auto-resize", &auto_resize);
4123 // If a tab has been closed programmatically (aka closed from another source such as the Checkbox() in the demo, as opposed
4190 if (ImGui::Checkbox(doc->Name, &doc->Open))