diff options
author | Ken Moore <ken@ixsystems.com> | 2018-09-06 17:59:34 -0400 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2018-09-06 17:59:34 -0400 |
commit | fda3b6b2dbe6f992383939a52d1229460217b1a7 (patch) | |
tree | f455e710dcd0e99dc807d4ef76d62ac0487d67a3 /src-qt5/core/lumina-desktop-unified/src-events | |
parent | Ensure that the Fluxbox background/wallpaper setter is disabled before Lumina... (diff) | |
download | lumina-fda3b6b2dbe6f992383939a52d1229460217b1a7.tar.gz lumina-fda3b6b2dbe6f992383939a52d1229460217b1a7.tar.bz2 lumina-fda3b6b2dbe6f992383939a52d1229460217b1a7.zip |
Checkpoint commit for some uncommitted changed to lumina-desktop-unified
Diffstat (limited to 'src-qt5/core/lumina-desktop-unified/src-events')
-rw-r--r-- | src-qt5/core/lumina-desktop-unified/src-events/NativeWindowSystem.cpp | 39 | ||||
-rw-r--r-- | src-qt5/core/lumina-desktop-unified/src-events/NativeWindowSystem.h | 3 |
2 files changed, 33 insertions, 9 deletions
diff --git a/src-qt5/core/lumina-desktop-unified/src-events/NativeWindowSystem.cpp b/src-qt5/core/lumina-desktop-unified/src-events/NativeWindowSystem.cpp index e11ed752..1faf9f58 100644 --- a/src-qt5/core/lumina-desktop-unified/src-events/NativeWindowSystem.cpp +++ b/src-qt5/core/lumina-desktop-unified/src-events/NativeWindowSystem.cpp @@ -291,13 +291,13 @@ NativeWindowObject* NativeWindowSystem::findWindow(WId id, bool checkRelated){ for(int i=0; i<NWindows.length(); i++){ if(id==NWindows[i]->id() ){ return NWindows[i]; } else if(id==NWindows[i]->frameId() ){ return NWindows[i]; } - //if(checkRelated && NWindows[i]->isRelatedTo(id)){ return NWindows[i]; } + if(checkRelated && NWindows[i]->isRelatedTo(id)){ return NWindows[i]; } //else if(!checkRelated && id==NWindows[i]->id()){ return NWindows[i]; } } //Check to see if this is a transient for some other window if(checkRelated){ - //WId tid = obj->getTransientFor(id); - //if(tid!=id){ return findWindow(tid, checkRelated); } //call it recursively as needed + WId tid = obj->getTransientFor(id); + if(tid!=id){ return findWindow(tid, checkRelated); } //call it recursively as needed //qDebug() << " -- Could not find Window!"; } return 0; @@ -895,16 +895,18 @@ void NativeWindowSystem::NewTrayWindowDetected(WId id){ } void NativeWindowSystem::WindowCloseDetected(WId id){ - NativeWindowObject *win = findWindow(id, false); - if(win==0){ win = findWindow(id, true); } - qDebug() << "Got Window Closed" << id << win; - qDebug() << "Old Window List:" << NWindows.length(); + NativeWindowObject *win = findWindow(id, true); + //if(win==0){ win = findWindow(id, true); } + //qDebug() << "Got Window Closed" << id << win; + //qDebug() << "Old Window List:" << NWindows.length(); + bool ok = false; if(win!=0){ NWindows.removeAll(win); win->emit WindowClosed(id); - qDebug() << "Visible Window Closed!!!"; + //qDebug() << "Visible Window Closed!!!"; emit WindowClosed(); win->deleteLater(); + ok = true; }else{ win = findTrayWindow(id); if(win!=0){ @@ -912,9 +914,11 @@ void NativeWindowSystem::WindowCloseDetected(WId id){ win->emit WindowClosed(id); emit TrayWindowClosed(); win->deleteLater(); + ok = true; } } - qDebug() << " - Now:" << NWindows.length(); + if(!ok && !NWindows.isEmpty() && !TWindows.isEmpty() ){ QTimer::singleShot(0, this, SLOT(verifyWindowExistance()) ); } + //qDebug() << " - Now:" << NWindows.length(); } void NativeWindowSystem::WindowPropertyChanged(WId id, NativeWindowObject::Property prop){ @@ -1044,6 +1048,23 @@ void NativeWindowSystem::lowerWindow(NativeWindowObject *win){ // === PRIVATE SLOTS === //These are the slots which are built-in and automatically connected when a new NativeWindow is created +void NativeWindowSystem::verifyWindowExistance(){ + //qDebug() << "Verify Window Existance"; + QList<xcb_void_cookie_t> cookies; + //Generate all the cookies for the probes + for(int i=0; i<NWindows.length(); i++){ + cookies << xcb_configure_window_checked(QX11Info::connection(), NWindows[i]->id(), 0, 0); + } + //Now look at all the replies and send close messages for any bad-window errors + for(int i=0; i<cookies.length(); i++){ + xcb_generic_error_t *error = xcb_request_check( QX11Info::connection(), cookies[i]); + if(error!=0){ + //qDebug() << " - Got missing window" << NWindows[i]->name(); + NWindows[i]->announceClosed(); + } + } + //qDebug() << " - End Verify"; +} void NativeWindowSystem::RequestClose(WId win){ //Send the window a WM_DELETE_WINDOW message diff --git a/src-qt5/core/lumina-desktop-unified/src-events/NativeWindowSystem.h b/src-qt5/core/lumina-desktop-unified/src-events/NativeWindowSystem.h index d3cbc591..f6651b5b 100644 --- a/src-qt5/core/lumina-desktop-unified/src-events/NativeWindowSystem.h +++ b/src-qt5/core/lumina-desktop-unified/src-events/NativeWindowSystem.h @@ -132,6 +132,9 @@ public slots: private slots: + //Internal Admin functions + void verifyWindowExistance(); + //These are the slots which are built-in and automatically connected when a new NativeWindow is created void RequestClose(WId); void RequestKill(WId); |