kwin/effects/drunken.cpp
Luboš Luňák 5faa397849 Vertex redesign - redo the way windows are split into smaller parts
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
2007-07-07 14:01:32 +00:00

77 lines
2 KiB
C++

/*****************************************************************
KWin - the KDE window manager
This file is part of the KDE project.
Copyright (C) 2007 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 "drunken.h"
#include <math.h>
namespace KWin
{
KWIN_EFFECT( drunken, DrunkenEffect )
void DrunkenEffect::prePaintScreen( ScreenPrePaintData& data, int time )
{
if( !windows.isEmpty())
data.mask |= PAINT_SCREEN_WITH_TRANSFORMED_WINDOWS;
effects->prePaintScreen( data, time );
}
void DrunkenEffect::prePaintWindow( EffectWindow* w, WindowPrePaintData& data, int time )
{
if( windows.contains( w ))
{
windows[ w ] += time / 1000.;
if( windows[ w ] < 1 )
data.mask |= PAINT_WINDOW_TRANSFORMED;
else
windows.remove( w );
}
effects->prePaintWindow( w, data, time );
}
void DrunkenEffect::paintWindow( EffectWindow* w, int mask, QRegion region, WindowPaintData& data )
{
if( !windows.contains( w ))
{
effects->paintWindow( w, mask, region, data );
return;
}
WindowPaintData d1 = data;
// 4 cycles, decreasing amplitude
int diff = int( sin( windows[ w ] * 8 * M_PI ) * ( 1 - windows[ w ] ) * 10 );
d1.xTranslate -= diff;
d1.opacity *= 0.5;
effects->paintWindow( w, mask, region, d1 );
WindowPaintData d2 = data;
d2.xTranslate += diff;
d2.opacity *= 0.5;
effects->paintWindow( w, mask, region, d2 );
}
void DrunkenEffect::postPaintWindow( EffectWindow* w )
{
if( windows.contains( w ))
w->addRepaintFull();
effects->postPaintWindow( w );
}
void DrunkenEffect::windowAdded( EffectWindow* w )
{
windows[ w ] = 0;
w->addRepaintFull();
}
void DrunkenEffect::windowClosed( EffectWindow* w )
{
windows.remove( w );
}
} // namespace