2007-02-11 17:41:21 +00:00
|
|
|
/*****************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2007 Philip Falkner <philip.falkner@gmail.com>
|
|
|
|
|
|
|
|
You can Freely distribute this program under the GNU General Public
|
|
|
|
License. See the file "COPYING" for the exact licensing terms.
|
|
|
|
******************************************************************/
|
|
|
|
|
|
|
|
// TODO MIT or some other licence, perhaps move to some lib
|
|
|
|
|
|
|
|
#ifndef KWIN_FADE_H
|
|
|
|
#define KWIN_FADE_H
|
|
|
|
|
|
|
|
#include <effects.h>
|
|
|
|
|
|
|
|
namespace KWinInternal
|
|
|
|
{
|
|
|
|
|
|
|
|
class FadeEffect
|
|
|
|
: public Effect
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
FadeEffect();
|
|
|
|
virtual void prePaintWindow( EffectWindow* w, int* mask, QRegion* region, int time );
|
|
|
|
virtual void paintWindow( EffectWindow* w, int mask, QRegion region, WindowPaintData& data );
|
|
|
|
virtual void postPaintWindow( EffectWindow* w );
|
|
|
|
// TODO react also on virtual desktop changes
|
2007-02-12 23:14:50 +00:00
|
|
|
virtual void windowOpacityChanged( EffectWindow* c, double old_opacity );
|
2007-02-11 17:41:21 +00:00
|
|
|
virtual void windowAdded( EffectWindow* c );
|
|
|
|
virtual void windowClosed( EffectWindow* c );
|
|
|
|
virtual void windowDeleted( EffectWindow* c );
|
|
|
|
private:
|
|
|
|
int fade_in_speed, fade_out_speed; // TODO make these configurable
|
|
|
|
class WindowInfo;
|
|
|
|
QMap< const EffectWindow*, WindowInfo > windows;
|
|
|
|
};
|
|
|
|
|
|
|
|
class FadeEffect::WindowInfo
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
WindowInfo()
|
2007-02-12 23:14:50 +00:00
|
|
|
: current( 0 )
|
2007-02-11 17:41:21 +00:00
|
|
|
, target( 0 )
|
|
|
|
, step_mult( 0 )
|
2007-02-12 23:14:50 +00:00
|
|
|
, deleted( false )
|
2007-02-11 17:41:21 +00:00
|
|
|
{};
|
|
|
|
bool isFading() const;
|
|
|
|
double current;
|
|
|
|
double target;
|
|
|
|
double step_mult;
|
2007-02-12 23:14:50 +00:00
|
|
|
bool deleted;
|
2007-02-11 17:41:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
inline bool FadeEffect::WindowInfo::isFading() const
|
|
|
|
{
|
|
|
|
return current != target;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif
|