2006-10-29 19:08:09 +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 "shiftworkspaceup.h"
|
|
|
|
|
|
|
|
#include <workspace.h>
|
|
|
|
|
|
|
|
namespace KWinInternal
|
|
|
|
{
|
|
|
|
|
2007-02-04 22:19:17 +00:00
|
|
|
ShiftWorkspaceUpEffect::ShiftWorkspaceUpEffect()
|
2006-10-29 19:08:09 +00:00
|
|
|
: up( false )
|
|
|
|
, diff( 0 )
|
|
|
|
{
|
|
|
|
connect( &timer, SIGNAL( timeout()), SLOT( tick()));
|
|
|
|
timer.start( 2000 );
|
|
|
|
}
|
|
|
|
|
|
|
|
void ShiftWorkspaceUpEffect::prePaintScreen( int* mask, QRegion* region, int time )
|
|
|
|
{
|
|
|
|
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 )
|
|
|
|
*mask |= Scene::PAINT_SCREEN_TRANSFORMED;
|
|
|
|
effects->prePaintScreen( mask, region, time );
|
|
|
|
}
|
|
|
|
|
|
|
|
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 )
|
2007-02-12 15:22:43 +00:00
|
|
|
workspace()->addRepaintFull(); // trigger next animation repaint
|
2006-10-29 19:08:09 +00:00
|
|
|
effects->postPaintScreen();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ShiftWorkspaceUpEffect::tick()
|
|
|
|
{
|
|
|
|
up = !up;
|
2007-02-12 15:22:43 +00:00
|
|
|
workspace()->addRepaintFull();
|
2006-10-29 19:08:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#include "shiftworkspaceup.moc"
|