2007-11-27 19:40:25 +00:00
|
|
|
/********************************************************************
|
2007-04-29 17:35:43 +00:00
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2007 Lubos Lunak <l.lunak@kde.org>
|
2008-10-17 10:30:52 +00:00
|
|
|
Copyright (C) 2008 Lucas Murray <lmurray@undefinedfire.com>
|
|
|
|
Copyright (C) 2008 Martin Gräßlin <ubuntu@martin-graesslin.com>
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2007-11-27 19:40:25 +00:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*********************************************************************/
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
#ifndef KWIN_SHADOW_H
|
|
|
|
#define KWIN_SHADOW_H
|
|
|
|
|
|
|
|
#include <kwineffects.h>
|
2008-06-06 09:26:41 +00:00
|
|
|
#include <kwinxrenderutils.h>
|
2007-07-04 11:39:30 +00:00
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2007-07-04 11:39:30 +00:00
|
|
|
class GLTexture;
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
class ShadowEffect
|
2008-04-02 21:15:04 +00:00
|
|
|
: public QObject, public Effect
|
2007-04-29 17:35:43 +00:00
|
|
|
{
|
2008-04-02 21:15:04 +00:00
|
|
|
Q_OBJECT
|
2007-04-29 17:35:43 +00:00
|
|
|
public:
|
|
|
|
ShadowEffect();
|
2008-05-20 22:04:12 +00:00
|
|
|
virtual ~ShadowEffect();
|
2008-10-02 09:27:32 +00:00
|
|
|
virtual void reconfigure( ReconfigureFlags );
|
2007-07-07 14:01:32 +00:00
|
|
|
virtual void prePaintWindow( EffectWindow* w, WindowPrePaintData& data, int time );
|
2007-12-08 16:24:48 +00:00
|
|
|
virtual void drawWindow( EffectWindow* w, int mask, QRegion region, WindowPaintData& data );
|
|
|
|
virtual void paintScreen( int mask, QRegion region, ScreenPaintData& data );
|
2007-11-03 11:35:39 +00:00
|
|
|
virtual void windowClosed( EffectWindow* c );
|
2008-10-17 10:30:43 +00:00
|
|
|
virtual void buildQuads( EffectWindow* w, WindowQuadList& quadList );
|
2008-01-03 19:51:22 +00:00
|
|
|
virtual QRect transformWindowDamage( EffectWindow* w, const QRect& r );
|
2008-04-02 21:15:04 +00:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void updateShadowColor();
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
private:
|
2008-10-19 15:06:36 +00:00
|
|
|
void prepareRenderStates( GLTexture *texture, double opacity, double brightness, double saturation );
|
|
|
|
void restoreRenderStates( GLTexture *texture, double opacity, double brightness, double saturation );
|
|
|
|
|
2008-11-27 13:38:35 +00:00
|
|
|
void drawShadowQuadOpenGL( GLTexture *texture, QVector<float> verts, QVector<float> texCoords,
|
2009-04-20 11:33:06 +00:00
|
|
|
QRegion region, float opacity, float brightness, float saturation, GLShader* shader );
|
2008-11-24 13:52:25 +00:00
|
|
|
void drawShadowQuadXRender( XRenderPicture *picture, QRect rect, float xScale, float yScale,
|
|
|
|
QColor color, float opacity, float brightness, float saturation );
|
|
|
|
|
2008-10-11 12:38:46 +00:00
|
|
|
void drawShadow( EffectWindow* w, int mask, QRegion region, const WindowPaintData& data );
|
2007-07-04 11:39:30 +00:00
|
|
|
void addQuadVertices(QVector<float>& verts, float x1, float y1, float x2, float y2) const;
|
|
|
|
// transforms window rect -> shadow rect
|
2008-12-14 12:43:16 +00:00
|
|
|
QRect shadowRectangle( EffectWindow* w, const QRect& windowRectangle ) const;
|
2007-10-23 12:40:03 +00:00
|
|
|
bool useShadow( EffectWindow* w ) const;
|
2007-12-08 16:24:48 +00:00
|
|
|
void drawQueuedShadows( EffectWindow* behindWindow );
|
2007-07-04 11:39:30 +00:00
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
int shadowXOffset, shadowYOffset;
|
2007-09-03 15:00:43 +00:00
|
|
|
double shadowOpacity;
|
2007-06-14 11:00:22 +00:00
|
|
|
int shadowFuzzyness;
|
2007-09-28 12:24:11 +00:00
|
|
|
int shadowSize;
|
2007-09-28 12:43:51 +00:00
|
|
|
bool intensifyActiveShadow;
|
2008-03-12 22:12:55 +00:00
|
|
|
QColor shadowColor;
|
2008-11-25 09:10:52 +00:00
|
|
|
bool forceDecorated;
|
|
|
|
bool forceUndecorated;
|
|
|
|
bool forceOther;
|
2008-06-06 11:07:15 +00:00
|
|
|
#ifdef KWIN_HAVE_OPENGL_COMPOSITING
|
2008-10-17 10:30:43 +00:00
|
|
|
QList< QList<GLTexture*> > mShadowTextures;
|
2008-11-01 14:24:20 +00:00
|
|
|
QList<GLTexture*> mDefaultShadowTextures;
|
2008-06-06 11:07:15 +00:00
|
|
|
#endif
|
|
|
|
#ifdef KWIN_HAVE_XRENDER_COMPOSITING
|
2008-11-24 13:52:25 +00:00
|
|
|
QList< QList<XRenderPicture*> > mShadowPics;
|
|
|
|
QList<XRenderPicture*> mDefaultShadowPics;
|
2008-06-06 11:07:15 +00:00
|
|
|
#endif
|
2007-12-08 16:24:48 +00:00
|
|
|
|
2008-10-17 10:30:43 +00:00
|
|
|
QList<WindowQuadType> mShadowQuadTypes;
|
2008-11-01 14:24:20 +00:00
|
|
|
WindowQuadType mDefaultShadowQuadType;
|
2008-10-17 10:30:43 +00:00
|
|
|
|
2007-12-08 16:24:48 +00:00
|
|
|
struct ShadowData
|
|
|
|
{
|
|
|
|
ShadowData(EffectWindow* _w, WindowPaintData& _data) : w(_w), data(_data) {}
|
|
|
|
EffectWindow* w;
|
|
|
|
QRegion clip;
|
|
|
|
int mask;
|
|
|
|
QRegion region;
|
|
|
|
WindowPaintData data;
|
|
|
|
};
|
|
|
|
|
|
|
|
QList<ShadowData> shadowDatas;
|
2007-04-29 17:35:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif
|