Make a branch to make krunner Good Enough For Aaron™.
[kdebase/uwolfer.git] / workspace / kwin / lib / kwinshadereffect.h
blobe35c00f3b45e0b6d38b3db26c8be80b263f3d6f0
1 /********************************************************************
2 KWin - the KDE window manager
3 This file is part of the KDE project.
5 Copyright (C) 2006-2007 Rivo Laks <rivolaks@hot.ee>
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
19 *********************************************************************/
21 #ifndef KWIN_SHADEREFFECT_H
22 #define KWIN_SHADEREFFECT_H
25 #include <kwineffects.h>
27 /** @addtogroup kwineffects */
28 /** @{ */
30 namespace KWin
33 class GLTexture;
34 class GLRenderTarget;
35 class GLShader;
36 class KWIN_EXPORT ShaderEffect : public Effect
38 public:
39 ShaderEffect(const QString& shadername);
40 virtual ~ShaderEffect();
42 virtual void prePaintScreen( ScreenPrePaintData& data, int time );
43 virtual void postPaintScreen();
45 static bool supported();
47 protected:
48 bool isEnabled() const;
49 void setEnabled(bool enabled);
51 GLShader* shader() const;
53 bool loadData(const QString& shadername);
55 private:
56 GLTexture* mTexture;
57 GLRenderTarget* mRenderTarget;
58 GLShader* mShader;
59 bool mValid;
61 double mTime;
63 bool mEnabled;
66 } // namespace
68 /** @} */
70 #endif