IMGUI_APIboolBeginChild(constchar*str_id,constImVec2&size=ImVec2(0,0),boolborder=false,ImGuiWindowFlagsextra_flags=0);// size==0.0f: use remaining window size, size<0.0f: use remaining window size minus abs(size). on each axis.
IMGUI_APIImVec2GetContentRegionMax();// window or current column boundaries, in windows coordinates
IMGUI_APIImVec2GetWindowContentRegionMin();// window boundaries, in windows coordinates
IMGUI_APIImVec2GetWindowContentRegionMax();
@ -346,6 +345,9 @@ namespace ImGui
IMGUI_APIboolIsItemHovered();// was the last item hovered by mouse?
IMGUI_APIboolIsItemActive();// was the last item active? (e.g. button being held, text field being edited- items that don't interact will always return false)
IMGUI_APIboolIsAnyItemActive();//
IMGUI_APIboolIsWindowFocused();// is current window focused (differentiate child windows from each others)
IMGUI_APIboolIsRootWindowFocused();// is current root window focused
IMGUI_APIboolIsRootWindowOrAnyChildFocused();// is current root window or any of its child (including current window) focused
IMGUI_APIImVec2GetItemBoxMin();// get bounding box of last item
IMGUI_APIImVec2GetItemBoxMax();// get bounding box of last item
IMGUI_APIboolIsClipped(constImVec2&item_size);// to perform coarse clipping on user's side (as an optimization)