mirror of
https://github.com/godotengine/godot.git
synced 2025-01-23 11:03:13 -05:00
Merge pull request #72104 from bruvzg/popup-non-popups
Extend special popup window handling to any non-popup child of a popup.
This commit is contained in:
commit
707ccc09ab
3 changed files with 49 additions and 4 deletions
|
@ -3672,8 +3672,23 @@ Rect2i DisplayServerX11::window_get_popup_safe_rect(WindowID p_window) const {
|
|||
void DisplayServerX11::popup_open(WindowID p_window) {
|
||||
_THREAD_SAFE_METHOD_
|
||||
|
||||
bool has_popup_ancestor = false;
|
||||
WindowID transient_root = p_window;
|
||||
while (true) {
|
||||
WindowID parent = windows[transient_root].transient_parent;
|
||||
if (parent == INVALID_WINDOW_ID) {
|
||||
break;
|
||||
} else {
|
||||
transient_root = parent;
|
||||
if (windows[parent].is_popup) {
|
||||
has_popup_ancestor = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
WindowData &wd = windows[p_window];
|
||||
if (wd.is_popup) {
|
||||
if (wd.is_popup || has_popup_ancestor) {
|
||||
// Find current popup parent, or root popup if new window is not transient.
|
||||
List<WindowID>::Element *C = nullptr;
|
||||
List<WindowID>::Element *E = popup_list.back();
|
||||
|
|
|
@ -3681,8 +3681,23 @@ Rect2i DisplayServerMacOS::window_get_popup_safe_rect(WindowID p_window) const {
|
|||
void DisplayServerMacOS::popup_open(WindowID p_window) {
|
||||
_THREAD_SAFE_METHOD_
|
||||
|
||||
bool has_popup_ancestor = false;
|
||||
WindowID transient_root = p_window;
|
||||
while (true) {
|
||||
WindowID parent = windows[transient_root].transient_parent;
|
||||
if (parent == INVALID_WINDOW_ID) {
|
||||
break;
|
||||
} else {
|
||||
transient_root = parent;
|
||||
if (windows[parent].is_popup) {
|
||||
has_popup_ancestor = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
WindowData &wd = windows[p_window];
|
||||
if (wd.is_popup) {
|
||||
if (wd.is_popup || has_popup_ancestor) {
|
||||
bool was_empty = popup_list.is_empty();
|
||||
// Find current popup parent, or root popup if new window is not transient.
|
||||
List<WindowID>::Element *C = nullptr;
|
||||
|
|
|
@ -2360,8 +2360,23 @@ Rect2i DisplayServerWindows::window_get_popup_safe_rect(WindowID p_window) const
|
|||
void DisplayServerWindows::popup_open(WindowID p_window) {
|
||||
_THREAD_SAFE_METHOD_
|
||||
|
||||
const WindowData &wd = windows[p_window];
|
||||
if (wd.is_popup) {
|
||||
bool has_popup_ancestor = false;
|
||||
WindowID transient_root = p_window;
|
||||
while (true) {
|
||||
WindowID parent = windows[transient_root].transient_parent;
|
||||
if (parent == INVALID_WINDOW_ID) {
|
||||
break;
|
||||
} else {
|
||||
transient_root = parent;
|
||||
if (windows[parent].is_popup) {
|
||||
has_popup_ancestor = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
WindowData &wd = windows[p_window];
|
||||
if (wd.is_popup || has_popup_ancestor) {
|
||||
// Find current popup parent, or root popup if new window is not transient.
|
||||
List<WindowID>::Element *C = nullptr;
|
||||
List<WindowID>::Element *E = popup_list.back();
|
||||
|
|
Loading…
Add table
Reference in a new issue