5faa397849
for use in effects (and not only). Now a list of window quads (=window areas) is created at the beginning of the paint pass, prepaint calls can modify the split itself (i.e. divide it into more parts). The actual paint calls can then modify these quads (i.e. transform their geometry). This will allow better control of how the split is done and also allow painting e.g. only the decoration differently. Still work in progress, but it works. Also pass data to prepaint functions in a struct, as there is already quite a number of them. svn path=/trunk/KDE/kdebase/workspace/; revision=684893
71 lines
1.9 KiB
C++
71 lines
1.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 "scalein.h"
|
|
|
|
namespace KWin
|
|
{
|
|
|
|
KWIN_EFFECT( scalein, ScaleInEffect )
|
|
|
|
void ScaleInEffect::prePaintScreen( ScreenPrePaintData& data, int time )
|
|
{
|
|
if( !windows.isEmpty())
|
|
data.mask |= PAINT_SCREEN_WITH_TRANSFORMED_WINDOWS;
|
|
effects->prePaintScreen( data, time );
|
|
}
|
|
|
|
void ScaleInEffect::prePaintWindow( EffectWindow* w, WindowPrePaintData& data, int time )
|
|
{
|
|
if( windows.contains( w ))
|
|
{
|
|
windows[ w ] += time / 500.; // complete change in 500ms
|
|
if( windows[ w ] < 1 )
|
|
data.mask |= PAINT_WINDOW_TRANSFORMED;
|
|
else
|
|
windows.remove( w );
|
|
}
|
|
effects->prePaintWindow( w, data, time );
|
|
}
|
|
|
|
void ScaleInEffect::paintWindow( EffectWindow* w, int mask, QRegion region, WindowPaintData& data )
|
|
{
|
|
if( windows.contains( w ))
|
|
{
|
|
data.xScale *= windows[ w ];
|
|
data.yScale *= windows[ w ];
|
|
data.xTranslate += int( w->width() / 2 * ( 1 - windows[ w ] ));
|
|
data.yTranslate += int( w->height() / 2 * ( 1 - windows[ w ] ));
|
|
}
|
|
effects->paintWindow( w, mask, region, data );
|
|
}
|
|
|
|
void ScaleInEffect::postPaintWindow( EffectWindow* w )
|
|
{
|
|
if( windows.contains( w ))
|
|
w->addRepaintFull(); // trigger next animation repaint
|
|
effects->postPaintWindow( w );
|
|
}
|
|
|
|
void ScaleInEffect::windowAdded( EffectWindow* c )
|
|
{
|
|
if( c->isOnCurrentDesktop())
|
|
{
|
|
windows[ c ] = 0;
|
|
c->addRepaintFull();
|
|
}
|
|
}
|
|
|
|
void ScaleInEffect::windowClosed( EffectWindow* c )
|
|
{
|
|
windows.remove( c );
|
|
}
|
|
|
|
} // namespace
|