2006-12-03 13:36:40 +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 "zoom.h"
|
|
|
|
|
|
|
|
#include <workspace.h>
|
|
|
|
|
|
|
|
namespace KWinInternal
|
|
|
|
{
|
|
|
|
|
|
|
|
ZoomEffect::ZoomEffect( Workspace* ws )
|
|
|
|
: zoom( 1 )
|
|
|
|
, target_zoom( 2 )
|
|
|
|
, wspace( ws )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void ZoomEffect::prePaintScreen( int* mask, QRegion* region, int time )
|
|
|
|
{
|
|
|
|
if( zoom != target_zoom )
|
|
|
|
{
|
2006-12-04 18:29:16 +00:00
|
|
|
double diff = time / 500.0;
|
2006-12-03 13:36:40 +00:00
|
|
|
if( target_zoom > zoom )
|
2006-12-04 18:29:16 +00:00
|
|
|
zoom = qMin( zoom + diff, target_zoom );
|
2006-12-03 13:36:40 +00:00
|
|
|
else
|
2006-12-04 18:29:16 +00:00
|
|
|
zoom = qMax( zoom - diff, target_zoom );
|
2006-12-03 13:36:40 +00:00
|
|
|
}
|
|
|
|
if( zoom != 1.0 )
|
|
|
|
*mask |= Scene::PAINT_SCREEN_TRANSFORMED;
|
|
|
|
effects->prePaintScreen( mask, region, time );
|
|
|
|
}
|
|
|
|
|
|
|
|
void ZoomEffect::paintScreen( int mask, QRegion region, ScreenPaintData& data )
|
|
|
|
{
|
|
|
|
if( zoom != 1.0 )
|
|
|
|
{
|
|
|
|
data.xScale *= zoom;
|
|
|
|
data.yScale *= zoom;
|
2007-01-05 17:45:54 +00:00
|
|
|
QPoint cursor = cursorPos();
|
2006-12-03 13:36:40 +00:00
|
|
|
// set the position so that the cursor is in the same position in the scaled view
|
|
|
|
data.xTranslate = - int( cursor.x() * ( zoom - 1 ));
|
|
|
|
data.yTranslate = - int( cursor.y() * ( zoom - 1 ));
|
|
|
|
}
|
|
|
|
effects->paintScreen( mask, region, data );
|
|
|
|
}
|
|
|
|
|
|
|
|
void ZoomEffect::postPaintScreen()
|
|
|
|
{
|
|
|
|
if( zoom != target_zoom )
|
|
|
|
wspace->addDamageFull();
|
|
|
|
effects->postPaintScreen();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|