Lines Matching defs:ImGuiStyle
1234 struct ImGuiStyle struct
1236 float Alpha; // Global alpha applies to everything in ImGui.
1237 ImVec2 WindowPadding; // Padding within a window.
1238 …ounding; // Radius of window corners rounding. Set to 0.0f to have rectangular windows.
1239 …windows. Generally set to 0.0f or 1.0f. (Other values are not well tested and more CPU/GPU costly).
1240 …a global setting. If you want to constraint individual windows, use SetNextWindowSizeConstraints().
1241 … // Alignment for title bar text. Defaults to (0.0f,0.5f) for left-aligned,vertically centered.
1242 …; // Radius of child window corners rounding. Set to 0.0f to have rectangular windows.
1243 …windows. Generally set to 0.0f or 1.0f. (Other values are not well tested and more CPU/GPU costly).
1244 … // Radius of popup window corners rounding. (Note that tooltip windows use WindowRounding)
1245 …windows. Generally set to 0.0f or 1.0f. (Other values are not well tested and more CPU/GPU costly).
1246 …mVec2 FramePadding; // Padding within a framed rectangle (used by most widgets).
1247 … // Radius of frame corners rounding. Set to 0.0f to have rectangular frame (used by most widgets).
1248 … frames. Generally set to 0.0f or 1.0f. (Other values are not well tested and more CPU/GPU costly).
1249 … ImVec2 ItemSpacing; // Horizontal and vertical spacing between widgets/lines.
1250 …al and vertical spacing between within elements of a composed widget (e.g. a slider and its label).
1251 …ere touch position is not accurate enough. Unfortunately we don't sort widgets so priority on over…
1252 … Horizontal indentation when e.g. entering a tree node. Generally == (FontSize + FramePadding.x*2).
1253 float ColumnsMinSpacing; // Minimum horizontal spacing between two columns.
1254 …ScrollbarSize; // Width of the vertical scrollbar, Height of the horizontal scrollbar.
1270 IMGUI_API ImGuiStyle(); argument