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.
|
|
|
|
******************************************************************/
|
|
|
|
|
|
|
|
#ifndef KWIN_SCALEIN_H
|
|
|
|
#define KWIN_SCALEIN_H
|
|
|
|
|
2007-04-12 11:55:07 +00:00
|
|
|
#include <kwineffects.h>
|
2006-10-29 19:08:09 +00:00
|
|
|
|
2007-04-05 12:07:35 +00:00
|
|
|
namespace KWin
|
2006-10-29 19:08:09 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
class ScaleInEffect
|
|
|
|
: public Effect
|
|
|
|
{
|
|
|
|
public:
|
2006-11-17 08:43:24 +00:00
|
|
|
virtual void prePaintScreen( int* mask, QRegion* region, int time );
|
2007-03-25 10:48:07 +00:00
|
|
|
virtual void prePaintWindow( EffectWindow* w, int* mask, QRegion* paint, QRegion* clip, int time );
|
2007-01-22 22:57:22 +00:00
|
|
|
virtual void paintWindow( EffectWindow* w, int mask, QRegion region, WindowPaintData& data );
|
|
|
|
virtual void postPaintWindow( EffectWindow* w );
|
2006-10-29 19:08:09 +00:00
|
|
|
// TODO react also on virtual desktop changes
|
2007-01-22 22:57:22 +00:00
|
|
|
virtual void windowAdded( EffectWindow* c );
|
|
|
|
virtual void windowClosed( EffectWindow* c );
|
2006-10-29 19:08:09 +00:00
|
|
|
private:
|
2007-03-14 16:50:19 +00:00
|
|
|
QHash< const EffectWindow*, double > windows;
|
2006-10-29 19:08:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif
|