Lines Matching refs:popup_ref
4910 ImGuiPopupRef& popup_ref = g.OpenPopupStack[g.BeginPopupStack.Size]; in Begin() local
4911 …window_just_activated_by_user |= (window->PopupId != popup_ref.PopupId); // We recycle popups so t… in Begin()
4912 window_just_activated_by_user |= (window != popup_ref.Window); in Begin()
4924 ImGuiPopupRef& popup_ref = g.OpenPopupStack[g.BeginPopupStack.Size]; in Begin() local
4925 popup_ref.Window = window; in Begin()
4926 g.BeginPopupStack.push_back(popup_ref); in Begin()
4927 window->PopupId = popup_ref.PopupId; in Begin()
6761 …ImGuiPopupRef popup_ref; // Tagged as new ref as Window will be set back to NULL if we write this … in OpenPopupEx() local
6762 popup_ref.PopupId = id; in OpenPopupEx()
6763 popup_ref.Window = NULL; in OpenPopupEx()
6764 popup_ref.ParentWindow = parent_window; in OpenPopupEx()
6765 popup_ref.OpenFrameCount = g.FrameCount; in OpenPopupEx()
6766 popup_ref.OpenParentId = parent_window->IDStack.back(); in OpenPopupEx()
6767 popup_ref.OpenPopupPos = NavCalcPreferredRefPos(); in OpenPopupEx()
6768 … popup_ref.OpenMousePos = IsMousePosValid(&g.IO.MousePos) ? g.IO.MousePos : popup_ref.OpenPopupPos; in OpenPopupEx()
6773 g.OpenPopupStack.push_back(popup_ref); in OpenPopupEx()
6782 g.OpenPopupStack[current_stack_size].OpenFrameCount = popup_ref.OpenFrameCount; in OpenPopupEx()
6788 g.OpenPopupStack[current_stack_size] = popup_ref; in OpenPopupEx()