mirror of
https://github.com/Drezil/imgui.git
synced 2025-07-12 15:59:54 +02:00
Added SetCursorScreenPos() helper (WindowPos+CursorPos = SrceenPos)
This commit is contained in:
@ -3111,6 +3111,8 @@ void ImGui::SetWindowFontScale(float scale)
|
||||
window->FontWindowScale = scale;
|
||||
}
|
||||
|
||||
// NB: internally we store CursorPos in absolute screen coordinates because it is more convenient.
|
||||
// Conversion happens as we pass the value to user, but it makes our naming convention dodgy. May want to rename 'DC.CursorPos'.
|
||||
ImVec2 ImGui::GetCursorPos()
|
||||
{
|
||||
ImGuiWindow* window = GetCurrentWindow();
|
||||
@ -3141,6 +3143,12 @@ ImVec2 ImGui::GetCursorScreenPos()
|
||||
return window->DC.CursorPos;
|
||||
}
|
||||
|
||||
void ImGui::SetCursorScreenPos(const ImVec2& screen_pos)
|
||||
{
|
||||
ImGuiWindow* window = GetCurrentWindow();
|
||||
window->DC.CursorPos = screen_pos;
|
||||
}
|
||||
|
||||
void ImGui::SetScrollPosHere()
|
||||
{
|
||||
ImGuiWindow* window = GetCurrentWindow();
|
||||
|
Reference in New Issue
Block a user