IMGUI_APIImVec2GetWindowSize();// get current window position.
IMGUI_APIfloatGetWindowWidth();
IMGUI_APIboolGetWindowCollapsed();
IMGUI_APIvoidSetNextWindowPos(constImVec2&pos,ImGuiSetConditioncond=0);// set next window position - call before Begin().
IMGUI_APIvoidSetNextWindowSize(constImVec2&size,ImGuiSetConditioncond=0);// set next window size. set to ImVec2(0,0) to force an auto-fit.
IMGUI_APIvoidSetNextWindowCollapsed(boolcollapsed,ImGuiSetConditioncond=0);// set next window collapsed state.
IMGUI_APIvoidSetNextWindowFocus();// set next window to be focused / front-most
IMGUI_APIvoidSetWindowPos(constImVec2&pos,ImGuiSetConditioncond=0);// set current window position - call within Begin()/End(). may incur tearing.
IMGUI_APIvoidSetWindowSize(constImVec2&size,ImGuiSetConditioncond=0);// set current window size. set to ImVec2(0,0) to force an auto-fit. may incur tearing.
IMGUI_APIvoidSetWindowCollapsed(boolcollapsed,ImGuiSetConditioncond=0);// set current window collapsed state.
IMGUI_APIvoidSetWindowFocus();// set current window to be focused / front-most
IMGUI_APIvoidSetWindowFocus(constchar*name);// set named window to be focused / front-most
IMGUI_APIvoidSetScrollPosHere();// adjust scrolling position to center into the current cursor position.
IMGUI_APIvoidSetKeyboardFocusHere(intoffset=0);// focus keyboard on the next widget. Use positive 'offset' to access sub components of a multiple component widget.