2006-11-08 19:10:07 +00:00
|
|
|
/*****************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2006 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_DIALOGPARENT_H
|
|
|
|
#define KWIN_DIALOGPARENT_H
|
|
|
|
|
|
|
|
// Include with base class for effects.
|
|
|
|
#include <effects.h>
|
|
|
|
|
|
|
|
|
2007-04-05 12:07:35 +00:00
|
|
|
namespace KWin
|
2006-11-08 19:10:07 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An effect which changes saturation and brighness of windows which have
|
|
|
|
* active modal dialogs.
|
|
|
|
* This should make the dialog seem more important and emphasize that the
|
|
|
|
* window is inactive until the dialog is closed.
|
|
|
|
**/
|
|
|
|
class DialogParentEffect
|
|
|
|
: public Effect
|
|
|
|
{
|
|
|
|
public:
|
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-11-08 19:10:07 +00:00
|
|
|
|
2007-01-22 22:57:22 +00:00
|
|
|
virtual void windowClosed( EffectWindow* c );
|
|
|
|
virtual void windowActivated( EffectWindow* c );
|
2006-11-08 19:10:07 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
bool hasModalWindow( Toplevel* t );
|
|
|
|
private:
|
|
|
|
// The progress of the fading.
|
2007-03-14 16:50:19 +00:00
|
|
|
QHash<EffectWindow*, float> effectStrength;
|
2006-11-08 19:10:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif
|