kwin/composite.cpp
Luboš Luňák e76564c165 Proper stacking order even for unmanaged windows.
svn path=/branches/work/kwin_composite/; revision=558427
2006-07-05 12:00:13 +00:00

178 lines
4.9 KiB
C++

/*****************************************************************
KWin - the KDE window manager
This file is part of the KDE project.
Copyright (C) 2006 Lubos Lunak <l.lunak@kde.org>
You can Freely distribute this program under the GNU General Public
License. See the file "COPYING" for the exact licensing terms.
******************************************************************/
#include "utils.h"
#include "workspace.h"
#include "client.h"
#include "unmanaged.h"
#include "effects.h"
namespace KWinInternal
{
//****************************************
// Workspace
//****************************************
#if defined( HAVE_XCOMPOSITE ) && defined( HAVE_XDAMAGE )
void Workspace::setupCompositing()
{
if( !Extensions::compositeAvailable() || !Extensions::damageAvailable())
return;
if( composite_pixmap != None )
return;
compositeTimer.start( 20 );
XCompositeRedirectSubwindows( display(), rootWindow(), CompositeRedirectManual );
composite_pixmap = XCreatePixmap( display(), rootWindow(), displayWidth(), displayHeight(), QX11Info::appDepth());
setDamaged();
}
void Workspace::finishCompositing()
{
if( composite_pixmap == None )
return;
XCompositeUnredirectSubwindows( display(), rootWindow(), CompositeRedirectManual );
XFreePixmap( display(), composite_pixmap );
compositeTimer.stop();
composite_pixmap = None;
}
void Workspace::setDamaged()
{
if( !compositing())
return;
damaged = true;
}
void Workspace::compositeTimeout()
{
if( !damaged )
return;
ToplevelList windows;
Window* children;
unsigned int children_count;
Window dummy;
XQueryTree( display(), rootWindow(), &dummy, &dummy, &children, &children_count );
for( unsigned int i = 0;
i < children_count;
++i )
{
if( Client* c = findClient( FrameIdMatchPredicate( children[ i ] )))
windows.append( c );
else if( Unmanaged* c = findUnmanaged( HandleMatchPredicate( children[ i ] )))
windows.append( c );
}
XGCValues val;
val.foreground = WhitePixel( display(), DefaultScreen( display()));
val.subwindow_mode = IncludeInferiors;
GC gc = XCreateGC( display(), composite_pixmap, GCForeground | GCSubwindowMode, &val );
XFillRectangle( display(), composite_pixmap, gc, 0, 0, displayWidth(), displayHeight());
for( ToplevelList::ConstIterator it = windows.begin();
it != windows.end();
++it )
{
if( Client* c = dynamic_cast< Client* >( *it ))
{
if( !c->isShown( true ) || !c->isOnCurrentDesktop())
continue;
}
#if 1
(*it)->windowPixmap(); // trigger creation
effects->paintWindow( *it );
#else
QRect r = (*it)->geometry().intersect( QRect( 0, 0, displayWidth(), displayHeight()));
if( !r.isEmpty())
{
XCopyArea( display(), (*it)->windowPixmap(), composite_pixmap, gc,
qMax( 0, -(*it)->x()), qMax( 0, -(*it)->y()), r.width(), r.height(), r.x(), r.y());
}
#endif
}
#if 1
effects->paintWorkspace( this );
#else
XCopyArea( display(), composite_pixmap, rootWindow(), gc, 0, 0, displayWidth(), displayHeight(), 0, 0 );
#endif
XFreeGC( display(), gc );
XFlush( display());
damaged = false;
}
//****************************************
// Toplevel
//****************************************
void Toplevel::setupCompositing()
{
if( !workspace()->compositing())
return;
if( damage != None )
return;
damage = XDamageCreate( display(), handle(), XDamageReportRawRectangles );
setDamaged();
}
void Toplevel::finishCompositing()
{
if( damage == None )
return;
XDamageDestroy( display(), damage );
damage = None;
if( window_pixmap != None )
{
XFreePixmap( display(), window_pixmap );
window_pixmap = None;
}
}
void Toplevel::setDamaged()
{
if( !workspace()->compositing())
return;
workspace()->setDamaged();
}
void Toplevel::resetWindowPixmap()
{
if( !workspace()->compositing())
return;
if( window_pixmap != None )
XFreePixmap( display(), window_pixmap );
window_pixmap = None;
}
Pixmap Toplevel::windowPixmap() const
{
if( window_pixmap == None && workspace()->compositing())
window_pixmap = XCompositeNameWindowPixmap( display(), handle());
return window_pixmap;
}
//****************************************
// Client
//****************************************
void Client::damageNotifyEvent( XDamageNotifyEvent* )
{
setDamaged();
}
//****************************************
// Unmanaged
//****************************************
void Unmanaged::damageNotifyEvent( XDamageNotifyEvent* )
{
setDamaged();
}
#endif
} // namespace