aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/libLumina/NativeWindowSystem.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-06-27 10:21:41 -0400
committerKen Moore <ken@ixsystems.com>2017-06-27 10:21:41 -0400
commit91c9e6f4c7b5aad491d5f8fdd892e038b2cd9656 (patch)
tree3f21402cf45533e7aa7aaee5432fbef7713370bf /src-qt5/core/libLumina/NativeWindowSystem.cpp
parentAdd some more debugging. (diff)
downloadlumina-91c9e6f4c7b5aad491d5f8fdd892e038b2cd9656.tar.gz
lumina-91c9e6f4c7b5aad491d5f8fdd892e038b2cd9656.tar.bz2
lumina-91c9e6f4c7b5aad491d5f8fdd892e038b2cd9656.zip
Start working on the RootSubWindow interactions.
Diffstat (limited to 'src-qt5/core/libLumina/NativeWindowSystem.cpp')
-rw-r--r--src-qt5/core/libLumina/NativeWindowSystem.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src-qt5/core/libLumina/NativeWindowSystem.cpp b/src-qt5/core/libLumina/NativeWindowSystem.cpp
index 49839a69..d25d441f 100644
--- a/src-qt5/core/libLumina/NativeWindowSystem.cpp
+++ b/src-qt5/core/libLumina/NativeWindowSystem.cpp
@@ -408,7 +408,7 @@ void NativeWindowSystem::UpdateWindowProperties(NativeWindow* win, QList< Native
// === PUBLIC SLOTS ===
-//These are the slots which are only used by the desktop system itself or the NativeWindowEventFilter
+//These are the slots which are only used by the desktop system itself or the NativeEventFilter
void NativeWindowSystem::RegisterVirtualRoot(WId){
}
@@ -476,6 +476,7 @@ void NativeWindowSystem::NewTrayWindowDetected(WId id){
void NativeWindowSystem::WindowCloseDetected(WId id){
NativeWindow *win = findWindow(id);
+ qDebug() << "Got Window Closed" << id << win;
if(win!=0){
NWindows.removeAll(win);
win->emit WindowClosed(id);
@@ -491,7 +492,7 @@ void NativeWindowSystem::WindowCloseDetected(WId id){
}
void NativeWindowSystem::WindowPropertyChanged(WId id, NativeWindow::Property prop){
- //NOTE: This is triggered by the NativeWindowEventFilter - not by changes to the NativeWindow objects themselves
+ //NOTE: This is triggered by the NativeEventFilter - not by changes to the NativeWindow objects themselves
NativeWindow *win = findWindow(id);
if(win==0){ win = findTrayWindow(id); }
if(win!=0){
bgstack15