Lines Matching refs:SmallButton
568 if (ImGui::SmallButton("button")) { };
651 ImGui::Bullet(); ImGui::SmallButton("Button");
1699 ImGui::SmallButton("Like this one"); ImGui::SameLine();
1707 ImGui::SameLine(150); ImGui::SmallButton("x=150");
1708 ImGui::SameLine(300); ImGui::SmallButton("x=300");
1904 ImGui::SmallButton("TEST##2");
1910 ImGui::SmallButton("Widget##2"); ImGui::SameLine();
1919 ImGui::AlignTextToFramePadding(); // Vertically align text node a bit lower so it'll be vertically centered with upcoming widget. Otherwise you can use SmallButton (smaller fit).
2011 ImGui::SmallButton("<<"); if (ImGui::IsItemActive()) { scroll_x_delta = -ImGui::GetIO().DeltaTime * 1000.0f; } ImGui::SameLine();
2013 ImGui::SmallButton(">>"); if (ImGui::IsItemActive()) { scroll_x_delta = +ImGui::GetIO().DeltaTime * 1000.0f; } ImGui::SameLine();
2924 ImGui::SameLine(); if (ImGui::SmallButton("Set as default")) { io.FontDefault = font; }
3198 if (ImGui::SmallButton("Add Dummy Text")) { AddLog("%d some text", Items.Size); AddLog("some more text"); AddLog("display very important message here!"); } ImGui::SameLine();
3199 if (ImGui::SmallButton("Add Dummy Error")) { AddLog("[error] something went wrong"); } ImGui::SameLine();
3200 if (ImGui::SmallButton("Clear")) { ClearLog(); } ImGui::SameLine();
3201 bool copy_to_clipboard = ImGui::SmallButton("Copy"); ImGui::SameLine();
3202 if (ImGui::SmallButton("Scroll to bottom")) ScrollToBottom = true;
3582 if (ImGui::SmallButton("[Debug] Add 5 entries"))