Home
last modified time | relevance | path

Searched refs:ScrollbarSize (Results 1 – 4 of 4) sorted by relevance

/external/mesa3d/src/imgui/
Dimgui_memory_editor.h188 … s.WindowWidth = s.PosAsciiEnd + style.ScrollbarSize + style.WindowPadding.x * 2 + s.GlyphWidth; in CalcSizes()
Dimgui.cpp1099ScrollbarSize = 16.0f; // Width of the vertical scrollbar, Height of the hori… in ImGuiStyle()
1134 ScrollbarSize = ImFloor(ScrollbarSize * scale_factor); in ScaleAllSizes()
4594 size_auto_fit.y += style.ScrollbarSize; in CalcSizeAutoFit()
4596 size_auto_fit.x += style.ScrollbarSize; in CalcSizeAutoFit()
5100 …>SizeContents.x > size_x_for_scrollbars - (window->ScrollbarY ? style.ScrollbarSize : 0.0f)) && !(… in Begin()
5102 …>ScrollbarY = (window->SizeContents.y > size_y_for_scrollbars - style.ScrollbarSize) && !(flags & … in Begin()
5103 …barSizes = ImVec2(window->ScrollbarY ? style.ScrollbarSize : 0.0f, window->ScrollbarX ? style.Scro… in Begin()
5814 …{ ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, ScrollbarSize) }, // ImGuiStyleVar_…
Dimgui.h1254 …float ScrollbarSize; // Width of the vertical scrollbar, Height of the horizont… member
Dimgui_widgets.cpp736 float other_scrollbar_size_w = other_scrollbar ? style.ScrollbarSize : 0.0f; in Scrollbar()
740 …? ImRect(window->Pos.x + border_size, window_rect.Max.y - style.ScrollbarSize, window_rect.Max.x -… in Scrollbar()
741 …: ImRect(window_rect.Max.x - style.ScrollbarSize, window->Pos.y + border_size, window_rect.Max.x -… in Scrollbar()