2007-04-29 17:35:43 +00:00
|
|
|
/*****************************************************************
|
|
|
|
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 "demo_shiftworkspaceup.h"
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2007-05-28 11:16:18 +00:00
|
|
|
KWIN_EFFECT( demo_shiftworkspaceup, ShiftWorkspaceUpEffect )
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
ShiftWorkspaceUpEffect::ShiftWorkspaceUpEffect()
|
|
|
|
: up( false )
|
|
|
|
, diff( 0 )
|
|
|
|
{
|
|
|
|
connect( &timer, SIGNAL( timeout()), SLOT( tick()));
|
|
|
|
timer.start( 2000 );
|
|
|
|
}
|
|
|
|
|
2007-07-07 14:01:32 +00:00
|
|
|
void ShiftWorkspaceUpEffect::prePaintScreen( ScreenPrePaintData& data, int time )
|
2007-04-29 17:35:43 +00:00
|
|
|
{
|
|
|
|
if( up && diff < 1000 )
|
|
|
|
diff = qBound( 0, diff + time, 1000 ); // KDE3: note this differs from KCLAMP
|
|
|
|
if( !up && diff > 0 )
|
|
|
|
diff = qBound( 0, diff - time, 1000 );
|
|
|
|
if( diff != 0 )
|
2007-07-07 14:01:32 +00:00
|
|
|
data.mask |= PAINT_SCREEN_TRANSFORMED;
|
|
|
|
effects->prePaintScreen( data, time );
|
2007-04-29 17:35:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ShiftWorkspaceUpEffect::paintScreen( int mask, QRegion region, ScreenPaintData& data )
|
|
|
|
{
|
|
|
|
if( diff != 0 )
|
|
|
|
data.yTranslate -= diff / 100;
|
|
|
|
effects->paintScreen( mask, region, data );
|
|
|
|
}
|
|
|
|
|
|
|
|
void ShiftWorkspaceUpEffect::postPaintScreen()
|
|
|
|
{
|
|
|
|
if( up ? diff < 1000 : diff > 0 )
|
|
|
|
effects->addRepaintFull(); // trigger next animation repaint
|
|
|
|
effects->postPaintScreen();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ShiftWorkspaceUpEffect::tick()
|
|
|
|
{
|
|
|
|
up = !up;
|
|
|
|
effects->addRepaintFull();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#include "demo_shiftworkspaceup.moc"
|