2007-01-25 11:48:07 +00:00
|
|
|
/*****************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2007 Rivo Laks <rivolaks@hot.ee>
|
|
|
|
|
|
|
|
You can Freely distribute this program under the GNU General Public
|
|
|
|
License. See the file "COPYING" for the exact licensing terms.
|
|
|
|
******************************************************************/
|
|
|
|
|
|
|
|
#ifndef KWIN_MINIMIZEANIMATION_H
|
|
|
|
#define KWIN_MINIMIZEANIMATION_H
|
|
|
|
|
|
|
|
// Include with base class for effects.
|
2007-04-12 11:55:07 +00:00
|
|
|
#include <kwineffects.h>
|
2007-01-25 11:48:07 +00:00
|
|
|
|
|
|
|
|
2007-04-05 12:07:35 +00:00
|
|
|
namespace KWin
|
2007-01-25 11:48:07 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Animates minimize/unminimize
|
|
|
|
**/
|
|
|
|
class MinimizeAnimationEffect
|
|
|
|
: public Effect
|
|
|
|
{
|
|
|
|
public:
|
2007-02-04 22:19:17 +00:00
|
|
|
MinimizeAnimationEffect();
|
2007-01-25 11:48:07 +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-25 11:48:07 +00:00
|
|
|
virtual void paintWindow( EffectWindow* w, int mask, QRegion region, WindowPaintData& data );
|
|
|
|
virtual void postPaintScreen();
|
|
|
|
|
|
|
|
virtual void windowMinimized( EffectWindow* c );
|
|
|
|
virtual void windowUnminimized( EffectWindow* c );
|
|
|
|
|
|
|
|
private:
|
2007-03-14 16:50:19 +00:00
|
|
|
QHash< EffectWindow*, float > mAnimationProgress;
|
2007-01-25 11:48:07 +00:00
|
|
|
int mActiveAnimations;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif
|