Lines Matching defs:size
161 static inline ImU32 ImHash(const void* data, int size, ImU32 seed = 0) { return size ? ImHashData(data, (size_t)size, seed) : ImHashStr((const char*)data, 0, seed); } // [moved to ImHashStr/ImHashData in 1.68]
329 ImGuiColumnsFlags_GrowParentContentsSize= 1 << 4 // (WIP) Restore pre-1.51 behavior of extending the parent window contents size but _without affecting the columns width at all_. Will eventually remove.
566 ImVector<char> TempBuffer; // temporary buffer for callback and other other operations. size=capacity.
671 float FontSize; // Current/default font size (optional, for simplified AddText overload)
1055 ImVec2 CursorMaxPos; // Used to implicitly calculate the size of our contents, always growing during the frame. Turned into window->SizeContents at the beginning of next frame
1088 short StackSizesBackup[6]; // Store size of various stacks for asserting
1134 ImVec2 Size; // Current size (==SizeFull or collapsed title bar size)
1141 float WindowBorderSize; // Window border size at the time of begin.
1169 int HiddenFramesForResize; // Hide the window for N frames while allowing items to be submitted so we can measure their size
1173 ImVec2 SetWindowPosVal; // store window position when using a non-zero Pivot (position set needs to be processed when we know the window size)
1337 IMGUI_API void SetWindowSize(ImGuiWindow* window, const ImVec2& size, ImGuiCond cond);
1374 IMGUI_API void ItemSize(const ImVec2& size, float text_offset_y = 0.0f);
1381 IMGUI_API ImVec2 CalcItemSize(ImVec2 size, float default_x, float default_y);
1396 IMGUI_API ImVec2 FindBestWindowPosForPopupEx(const ImVec2& ref_pos, const ImVec2& size, ImGuiDir* last_dir, const ImRect& r_outer, const ImRect& r_avoid, ImGuiPopupPositionPolicy policy = ImGuiPopupPositionPolicy_Default);