Lines Matching defs:SameLine
451 - 2017/08/09 (1.51) - removed ValueColor() helpers, they are equivalent to calling Text(label) + SameLine() + ColorButton().
461 - 2016/07/30 (1.50) - SameLine(x) with x>0.0f is now relative to left of column/group if any, and not always to left of window. This was sort of always the intent and hopefully breakage should be minimal.
503 - 2015/07/10 (1.43) - changed SameLine() parameters from int to float.
2194 window->DC.PrevLineSize.y = (line_height - GImGui->Style.ItemSpacing.y); // If we end up needing more accurate data (to e.g. use SameLine) we may as well make the clipper have a fourth step to let user process and display the last item in their list.
2767 SameLine();
6541 // Lock horizontal starting position + capture group bounding box into one "item" (so you can use IsItemHovered() or layout primitives such as SameLine() on whole group, etc.)
6612 void ImGui::SameLine(float pos_x, float spacing_w)
8921 const bool log_to_tty = Button("Log To TTY"); SameLine();
8922 const bool log_to_file = Button("Log To File"); SameLine();
8923 const bool log_to_clipboard = Button("Log To Clipboard"); SameLine();
9306 ImGui::SameLine();
9436 if (ImGui::SmallButton("<")) { TabBarQueueChangeTabOrder(tab_bar, tab, -1); } ImGui::SameLine(0, 2);
9437 if (ImGui::SmallButton(">")) { TabBarQueueChangeTabOrder(tab_bar, tab, +1); } ImGui::SameLine();