diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-12-23 17:29:08 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-12-23 17:29:08 -0600 |
commit | 0ef12d60c85f58af9052d83ce1945d71afe16cb4 (patch) | |
tree | a82f5c57d032227ed0a520f5771ec37f10779d28 /twin/workspace.cpp | |
parent | 55c907ad0e031f2ceddb2693761b747395137ac0 (diff) | |
download | tdebase-0ef12d60c85f58af9052d83ce1945d71afe16cb4.tar.gz tdebase-0ef12d60c85f58af9052d83ce1945d71afe16cb4.zip |
Add preliminary taskbar task state support
Diffstat (limited to 'twin/workspace.cpp')
-rw-r--r-- | twin/workspace.cpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/twin/workspace.cpp b/twin/workspace.cpp index 643395e88..cc109918c 100644 --- a/twin/workspace.cpp +++ b/twin/workspace.cpp @@ -1974,6 +1974,37 @@ void Workspace::resumeWindowId( Window window_to_resume ) } +bool Workspace::isResumeableWindowID( Window window_to_check ) + { + if( window_to_check == None ) + return false; + Window window = window_to_check; + Client* client = NULL; + for(;;) + { + client = findClient( FrameIdMatchPredicate( window )); + if( client != NULL ) // found the client + break; + Window parent = NULL; + Window root = NULL; + Window* children = NULL; + unsigned int children_count; + XQueryTree( tqt_xdisplay(), window, &root, &parent, &children, &children_count ); + if( children != NULL ) + XFree( children ); + if( window == root ) // we didn't find the client, probably an override-redirect window + break; + window = parent; // go up + if( window == NULL ) + break; + } + if( client != NULL ) + return client->isResumeable(); + else + return false; + } + + void Workspace::sendPingToWindow( Window window, Time timestamp ) { rootInfo->sendPing( window, timestamp ); |