Lines Matching refs:scrolling
780 // Handle input right away. None of the code of Begin() is relying on scrolling position before calling Scrollbar().
3631 // - Handle scrolling, highlight selection, display cursor (those all requires some form of 1d->2d cursor position calculation)
5826 static float TabBarScrollClamp(ImGuiTabBar* tab_bar, float scrolling);
6088 // Horizontal scrolling buttons
6104 // Update scrolling
6177 static float ImGui::TabBarScrollClamp(ImGuiTabBar* tab_bar, float scrolling)
6179 scrolling = ImMin(scrolling, tab_bar->OffsetMax - tab_bar->BarRect.GetWidth());
6180 return ImMax(scrolling, 0.0f);
6186 float margin = g.FontSize * 1.0f; // When to scroll to make Tab N+1 visible always make a bit of N visible to suggest more scrolling area (since we don't have a scrollbar)