| 1059 | |
| 1060 | |
| 1061 | bool XWindow::isTransient() { |
| 1062 | XWindowPtr transient = transientCached.lock(); |
| 1063 | if (transient) { |
| 1064 | return transient->isThisAndAncestorsMapped(); |
| 1065 | } |
| 1066 | return false; |
| 1067 | } |
| 1068 | |
| 1069 | bool XWindow::isDialog() { |
| 1070 | U32 type = NET_WM_WINDOW_TYPE(); |
no test coverage detected