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_MAKETRANSPARENT_H
|
|
|
|
#define KWIN_MAKETRANSPARENT_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 MakeTransparentEffect
|
|
|
|
: public Effect
|
|
|
|
{
|
|
|
|
public:
|
2007-01-22 22:57:22 +00:00
|
|
|
virtual void windowUserMovedResized( EffectWindow* c, bool first, bool last );
|
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 );
|
2006-10-29 19:08:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif
|