2006-07-04 20:51:01 +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 "effects.h"
|
|
|
|
|
2006-07-06 13:17:44 +00:00
|
|
|
#include "toplevel.h"
|
|
|
|
#include "client.h"
|
|
|
|
#include "scene.h"
|
|
|
|
|
2006-07-04 20:51:01 +00:00
|
|
|
namespace KWinInternal
|
|
|
|
{
|
|
|
|
|
|
|
|
//****************************************
|
|
|
|
// Effect
|
|
|
|
//****************************************
|
|
|
|
|
|
|
|
Effect::~Effect()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2006-07-06 13:17:44 +00:00
|
|
|
void Effect::windowUserMovedResized( Toplevel* , bool, bool )
|
2006-07-04 20:51:01 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2006-10-16 10:12:48 +00:00
|
|
|
void Effect::windowAdded( Toplevel* )
|
2006-07-04 20:51:01 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2006-10-16 10:12:48 +00:00
|
|
|
void Effect::windowDeleted( Toplevel* )
|
2006-07-04 20:51:01 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2006-10-16 18:46:07 +00:00
|
|
|
void Effect::prePaintScreen( int* mask, QRegion* region )
|
2006-07-04 20:51:01 +00:00
|
|
|
{
|
2006-10-16 18:46:07 +00:00
|
|
|
effects->nextPrePaintScreen( mask, region );
|
2006-07-04 20:51:01 +00:00
|
|
|
}
|
|
|
|
|
2006-10-16 10:12:48 +00:00
|
|
|
void Effect::paintScreen( int mask, QRegion region, ScreenPaintData& data )
|
|
|
|
{
|
|
|
|
effects->nextPaintScreen( mask, region, data );
|
|
|
|
}
|
|
|
|
|
2006-10-16 18:46:07 +00:00
|
|
|
void Effect::prePaintWindow( Scene::Window* w, int* mask, QRegion* region )
|
|
|
|
{
|
|
|
|
effects->nextPrePaintWindow( w, mask, region );
|
|
|
|
}
|
|
|
|
|
|
|
|
void Effect::paintWindow( Scene::Window* w, int mask, QRegion region, WindowPaintData& data )
|
|
|
|
{
|
|
|
|
effects->nextPaintWindow( w, mask, region, data );
|
|
|
|
}
|
|
|
|
|
2006-10-22 10:15:19 +00:00
|
|
|
void MakeHalfTransparent::prePaintWindow( Scene::Window* w, int* mask, QRegion* region )
|
2006-07-06 13:17:44 +00:00
|
|
|
{
|
2006-10-22 10:15:19 +00:00
|
|
|
const Client* c = dynamic_cast< const Client* >( w->window());
|
|
|
|
if(( c != NULL && ( c->isMove() || c->isResize())) || w->window()->isDialog())
|
|
|
|
{
|
|
|
|
*mask |= Scene::PAINT_WINDOW_TRANSLUCENT;
|
|
|
|
*mask &= ~Scene::PAINT_WINDOW_OPAQUE;
|
|
|
|
}
|
|
|
|
effects->nextPrePaintWindow( w, mask, region );
|
|
|
|
}
|
|
|
|
|
|
|
|
void MakeHalfTransparent::paintWindow( Scene::Window* w, int mask, QRegion region, WindowPaintData& data )
|
|
|
|
{
|
|
|
|
const Client* c = dynamic_cast< const Client* >( w->window());
|
|
|
|
if( w->window()->isDialog())
|
2006-07-06 13:17:44 +00:00
|
|
|
data.opacity *= 0.8;
|
2006-10-22 10:15:19 +00:00
|
|
|
if( c->isMove() || c->isResize())
|
|
|
|
data.opacity *= 0.5;
|
|
|
|
effects->nextPaintWindow( w, mask, region, data );
|
2006-07-06 13:17:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MakeHalfTransparent::windowUserMovedResized( Toplevel* c, bool first, bool last )
|
|
|
|
{
|
|
|
|
if( first || last )
|
2006-07-13 18:17:49 +00:00
|
|
|
c->addDamage( c->rect());
|
2006-07-06 13:17:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ShakyMove::ShakyMove()
|
|
|
|
{
|
|
|
|
connect( &timer, SIGNAL( timeout()), SLOT( tick()));
|
|
|
|
}
|
|
|
|
|
|
|
|
static const int shaky_diff[] = { 0, 1, 2, 3, 2, 1, 0, -1, -2, -3, -2, -1 };
|
|
|
|
static const int SHAKY_MAX = sizeof( shaky_diff ) / sizeof( shaky_diff[ 0 ] );
|
|
|
|
|
2006-10-22 10:15:19 +00:00
|
|
|
void ShakyMove::prePaintScreen( int* mask, QRegion* region )
|
2006-07-06 13:17:44 +00:00
|
|
|
{
|
2006-10-22 10:15:19 +00:00
|
|
|
if( !windows.isEmpty())
|
|
|
|
*mask |= Scene::PAINT_WINDOW_TRANSFORMED;
|
|
|
|
effects->nextPrePaintScreen( mask, region );
|
|
|
|
}
|
|
|
|
|
|
|
|
void ShakyMove::prePaintWindow( Scene::Window* w, int* mask, QRegion* region )
|
|
|
|
{
|
|
|
|
if( windows.contains( w->window()))
|
|
|
|
*mask |= Scene::PAINT_WINDOW_TRANSFORMED;
|
|
|
|
effects->nextPrePaintWindow( w, mask, region );
|
|
|
|
}
|
|
|
|
|
|
|
|
void ShakyMove::paintWindow( Scene::Window* w, int mask, QRegion region, WindowPaintData& data )
|
|
|
|
{
|
|
|
|
if( windows.contains( w->window()))
|
|
|
|
data.xTranslate += shaky_diff[ windows[ w->window() ]];
|
|
|
|
effects->nextPaintWindow( w, mask, region, data );
|
2006-07-06 13:17:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ShakyMove::windowUserMovedResized( Toplevel* c, bool first, bool last )
|
|
|
|
{
|
|
|
|
if( first )
|
|
|
|
{
|
|
|
|
if( windows.isEmpty())
|
|
|
|
timer.start( 50 );
|
|
|
|
windows[ c ] = 0;
|
|
|
|
}
|
|
|
|
else if( last )
|
|
|
|
{
|
|
|
|
windows.remove( c );
|
2006-10-22 10:15:19 +00:00
|
|
|
// just damage whole screen, transformation is involved
|
|
|
|
c->workspace()->addDamage( 0, 0, displayWidth(), displayHeight());
|
2006-07-06 13:17:44 +00:00
|
|
|
if( windows.isEmpty())
|
|
|
|
timer.stop();
|
|
|
|
}
|
|
|
|
}
|
2006-07-04 20:51:01 +00:00
|
|
|
|
2006-07-06 13:17:44 +00:00
|
|
|
void ShakyMove::windowDeleted( Toplevel* c )
|
2006-07-06 09:55:10 +00:00
|
|
|
{
|
2006-07-06 13:17:44 +00:00
|
|
|
windows.remove( c );
|
|
|
|
if( windows.isEmpty())
|
|
|
|
timer.stop();
|
|
|
|
}
|
2006-07-06 09:55:10 +00:00
|
|
|
|
2006-07-06 13:17:44 +00:00
|
|
|
void ShakyMove::tick()
|
2006-07-06 09:55:10 +00:00
|
|
|
{
|
2006-10-22 10:15:19 +00:00
|
|
|
for( QMap< const Toplevel*, int >::Iterator it = windows.begin();
|
2006-07-06 13:17:44 +00:00
|
|
|
it != windows.end();
|
|
|
|
++it )
|
|
|
|
{
|
|
|
|
if( *it == SHAKY_MAX - 1 )
|
|
|
|
*it = 0;
|
|
|
|
else
|
|
|
|
++(*it);
|
2006-10-22 10:15:19 +00:00
|
|
|
// just damage whole screen, transformation is involved
|
|
|
|
it.key()->workspace()->addDamage( 0, 0, displayWidth(), displayHeight());
|
2006-07-06 13:17:44 +00:00
|
|
|
}
|
2006-07-06 09:55:10 +00:00
|
|
|
}
|
|
|
|
|
2006-10-22 10:15:19 +00:00
|
|
|
#if 0
|
2006-07-06 18:22:01 +00:00
|
|
|
void GrowMove::transformWindow( Toplevel* c, Matrix& matrix, EffectData& )
|
|
|
|
{
|
|
|
|
if( Client* c2 = dynamic_cast< Client* >( c ))
|
|
|
|
if( c2->isMove())
|
|
|
|
{
|
|
|
|
Matrix m;
|
|
|
|
m.m[ 0 ][ 0 ] = 1.2;
|
|
|
|
m.m[ 1 ][ 1 ] = 1.4;
|
|
|
|
matrix *= m;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void GrowMove::windowUserMovedResized( Toplevel* c, bool first, bool last )
|
|
|
|
{
|
|
|
|
if( first || last )
|
|
|
|
{
|
2006-10-07 21:18:36 +00:00
|
|
|
// TODO damage whole screen, transformation is involved
|
|
|
|
c->workspace()->addDamage( c->geometry());
|
2006-07-06 18:22:01 +00:00
|
|
|
}
|
|
|
|
}
|
2006-10-21 18:07:00 +00:00
|
|
|
#endif
|
2006-07-06 18:22:01 +00:00
|
|
|
|
2006-07-06 19:02:14 +00:00
|
|
|
ShiftWorkspaceUp::ShiftWorkspaceUp( Workspace* ws )
|
|
|
|
: up( false )
|
|
|
|
, wspace( ws )
|
|
|
|
{
|
|
|
|
connect( &timer, SIGNAL( timeout()), SLOT( tick()));
|
|
|
|
timer.start( 2000 );
|
|
|
|
}
|
|
|
|
|
2006-10-21 18:07:00 +00:00
|
|
|
void ShiftWorkspaceUp::prePaintScreen( int* mask, QRegion* region )
|
2006-07-06 19:02:14 +00:00
|
|
|
{
|
2006-10-21 18:07:00 +00:00
|
|
|
if( up )
|
|
|
|
*mask |= Scene::PAINT_SCREEN_TRANSFORMED;
|
|
|
|
effects->nextPrePaintScreen( mask, region );
|
|
|
|
}
|
|
|
|
|
|
|
|
void ShiftWorkspaceUp::paintScreen( int mask, QRegion region, ScreenPaintData& data )
|
|
|
|
{
|
|
|
|
if( up )
|
|
|
|
data.yTranslate -= 10;
|
|
|
|
effects->nextPaintScreen( mask, region, data );
|
2006-07-06 19:02:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ShiftWorkspaceUp::tick()
|
|
|
|
{
|
|
|
|
up = !up;
|
|
|
|
wspace->addDamage( 0, 0, displayWidth(), displayHeight());
|
|
|
|
}
|
|
|
|
|
2006-07-06 13:17:44 +00:00
|
|
|
//****************************************
|
|
|
|
// EffectsHandler
|
|
|
|
//****************************************
|
|
|
|
|
2006-07-06 19:02:14 +00:00
|
|
|
EffectsHandler::EffectsHandler( Workspace* ws )
|
2006-10-16 10:12:48 +00:00
|
|
|
: current_paint_window( 0 )
|
|
|
|
, current_paint_screen( 0 )
|
2006-07-06 09:55:10 +00:00
|
|
|
{
|
2006-07-10 18:34:57 +00:00
|
|
|
if( !compositing())
|
|
|
|
return;
|
2006-10-22 10:16:54 +00:00
|
|
|
// effects.append( new MakeHalfTransparent );
|
|
|
|
// effects.append( new ShakyMove );
|
2006-10-16 10:12:48 +00:00
|
|
|
// effects.append( new GrowMove );
|
2006-10-21 18:08:58 +00:00
|
|
|
// effects.append( new ShiftWorkspaceUp( ws ));
|
2006-07-06 09:55:10 +00:00
|
|
|
}
|
2006-10-21 18:07:00 +00:00
|
|
|
|
2006-07-10 18:34:57 +00:00
|
|
|
EffectsHandler::~EffectsHandler()
|
|
|
|
{
|
2006-10-16 10:12:48 +00:00
|
|
|
foreach( Effect* e, effects )
|
|
|
|
delete e;
|
2006-07-10 18:34:57 +00:00
|
|
|
}
|
2006-07-06 09:55:10 +00:00
|
|
|
|
2006-07-06 13:17:44 +00:00
|
|
|
void EffectsHandler::windowUserMovedResized( Toplevel* c, bool first, bool last )
|
2006-07-04 20:51:01 +00:00
|
|
|
{
|
2006-10-16 10:12:48 +00:00
|
|
|
foreach( Effect* e, effects )
|
|
|
|
e->windowUserMovedResized( c, first, last );
|
2006-07-04 20:51:01 +00:00
|
|
|
}
|
|
|
|
|
2006-10-16 10:12:48 +00:00
|
|
|
void EffectsHandler::windowAdded( Toplevel* c )
|
2006-07-04 20:51:01 +00:00
|
|
|
{
|
2006-10-16 10:12:48 +00:00
|
|
|
foreach( Effect* e, effects )
|
|
|
|
e->windowAdded( c );
|
2006-07-04 20:51:01 +00:00
|
|
|
}
|
|
|
|
|
2006-10-16 10:12:48 +00:00
|
|
|
void EffectsHandler::windowDeleted( Toplevel* c )
|
2006-07-04 20:51:01 +00:00
|
|
|
{
|
2006-10-16 10:12:48 +00:00
|
|
|
foreach( Effect* e, effects )
|
|
|
|
e->windowDeleted( c );
|
2006-07-04 20:51:01 +00:00
|
|
|
}
|
|
|
|
|
2006-10-16 18:46:07 +00:00
|
|
|
void EffectsHandler::prePaintScreen( int* mask, QRegion* region, Effect* final )
|
2006-10-16 10:12:48 +00:00
|
|
|
{
|
2006-10-16 18:46:07 +00:00
|
|
|
assert( current_paint_screen == 0 );
|
2006-10-16 10:12:48 +00:00
|
|
|
effects.append( final );
|
2006-10-16 18:46:07 +00:00
|
|
|
nextPrePaintScreen( mask, region );
|
2006-10-16 10:12:48 +00:00
|
|
|
effects.pop_back();
|
|
|
|
}
|
|
|
|
|
|
|
|
void EffectsHandler::paintScreen( int mask, QRegion region, ScreenPaintData& data, Effect* final )
|
|
|
|
{
|
|
|
|
assert( current_paint_screen == 0 );
|
|
|
|
effects.append( final );
|
|
|
|
nextPaintScreen( mask, region, data );
|
|
|
|
effects.pop_back();
|
|
|
|
}
|
|
|
|
|
2006-10-16 18:46:07 +00:00
|
|
|
void EffectsHandler::prePaintWindow( Scene::Window* w, int* mask, QRegion* region, Effect* final )
|
2006-10-16 10:12:48 +00:00
|
|
|
{
|
2006-10-16 18:46:07 +00:00
|
|
|
assert( current_paint_window == 0 );
|
|
|
|
effects.append( final );
|
|
|
|
nextPrePaintWindow( w, mask, region );
|
|
|
|
effects.pop_back();
|
|
|
|
}
|
|
|
|
|
|
|
|
void EffectsHandler::paintWindow( Scene::Window* w, int mask, QRegion region, WindowPaintData& data, Effect* final )
|
|
|
|
{
|
|
|
|
assert( current_paint_window == 0 );
|
|
|
|
effects.append( final );
|
|
|
|
nextPaintWindow( w, mask, region, data );
|
|
|
|
effects.pop_back();
|
|
|
|
}
|
|
|
|
|
|
|
|
// the idea is that effects call this function again which calls the next one
|
|
|
|
void EffectsHandler::nextPrePaintScreen( int* mask, QRegion* region )
|
|
|
|
{
|
|
|
|
effects[ current_paint_screen++ ]->prePaintScreen( mask, region );
|
|
|
|
--current_paint_screen;
|
2006-10-16 10:12:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void EffectsHandler::nextPaintScreen( int mask, QRegion region, ScreenPaintData& data )
|
2006-07-04 20:51:01 +00:00
|
|
|
{
|
2006-10-16 10:12:48 +00:00
|
|
|
effects[ current_paint_screen++ ]->paintScreen( mask, region, data );
|
|
|
|
--current_paint_screen;
|
2006-07-04 20:51:01 +00:00
|
|
|
}
|
|
|
|
|
2006-10-16 18:46:07 +00:00
|
|
|
void EffectsHandler::nextPrePaintWindow( Scene::Window* w, int* mask, QRegion* region )
|
|
|
|
{
|
|
|
|
effects[ current_paint_window++ ]->prePaintWindow( w, mask, region );
|
|
|
|
--current_paint_window;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EffectsHandler::nextPaintWindow( Scene::Window* w, int mask, QRegion region, WindowPaintData& data )
|
|
|
|
{
|
|
|
|
effects[ current_paint_window++ ]->paintWindow( w, mask, region, data );
|
|
|
|
--current_paint_window;
|
|
|
|
}
|
|
|
|
|
2006-07-04 20:51:01 +00:00
|
|
|
EffectsHandler* effects;
|
|
|
|
|
|
|
|
} // namespace
|
2006-07-06 13:17:44 +00:00
|
|
|
|
|
|
|
#include "effects.moc"
|