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) 2006 Lubos Lunak <l.lunak@kde.org>
|
|
|
|
|
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_SCENE_XRENDER_H
|
|
|
|
#define KWIN_SCENE_XRENDER_H
|
|
|
|
|
|
|
|
#include "scene.h"
|
2011-04-28 15:22:17 +00:00
|
|
|
#include "shadow.h"
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2007-12-17 14:14:53 +00:00
|
|
|
#ifdef KWIN_HAVE_XRENDER_COMPOSITING
|
2007-04-29 17:35:43 +00:00
|
|
|
#include <X11/extensions/Xrender.h>
|
2007-06-01 01:35:23 +00:00
|
|
|
#include <X11/extensions/Xfixes.h>
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
class SceneXrender
|
|
|
|
: public Scene
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2011-06-15 16:35:00 +00:00
|
|
|
Q_OBJECT
|
2011-01-30 14:34:42 +00:00
|
|
|
public:
|
|
|
|
class EffectFrame;
|
|
|
|
SceneXrender(Workspace* ws);
|
|
|
|
virtual ~SceneXrender();
|
|
|
|
virtual bool initFailed() const;
|
|
|
|
virtual CompositingType compositingType() const {
|
|
|
|
return XRenderCompositing;
|
|
|
|
}
|
2012-03-29 20:11:28 +00:00
|
|
|
virtual int paint(QRegion damage, ToplevelList windows);
|
2011-01-30 14:34:42 +00:00
|
|
|
virtual void windowAdded(Toplevel*);
|
|
|
|
virtual void windowDeleted(Deleted*);
|
2011-11-26 15:15:46 +00:00
|
|
|
virtual void screenGeometryChanged(const QSize &size);
|
2011-01-30 14:34:42 +00:00
|
|
|
Picture bufferPicture();
|
|
|
|
protected:
|
|
|
|
virtual void paintBackground(QRegion region);
|
2012-03-20 21:44:20 +00:00
|
|
|
virtual void paintGenericScreen(int mask, ScreenPaintData data);
|
2011-06-19 20:18:21 +00:00
|
|
|
public Q_SLOTS:
|
2011-06-15 17:13:56 +00:00
|
|
|
virtual void windowOpacityChanged(KWin::Toplevel* c);
|
2011-06-19 20:07:19 +00:00
|
|
|
virtual void windowGeometryShapeChanged(KWin::Toplevel* c);
|
2011-06-21 10:30:42 +00:00
|
|
|
virtual void windowClosed(KWin::Toplevel* c, KWin::Deleted* deleted);
|
2011-01-30 14:34:42 +00:00
|
|
|
private:
|
|
|
|
void createBuffer();
|
|
|
|
void flushBuffer(int mask, QRegion damage);
|
2011-11-26 15:15:46 +00:00
|
|
|
void initXRender(bool createOverlay);
|
2011-01-30 14:34:42 +00:00
|
|
|
XRenderPictFormat* format;
|
|
|
|
Picture front;
|
|
|
|
static Picture buffer;
|
|
|
|
static ScreenPaintData screen_paint;
|
|
|
|
class Window;
|
|
|
|
QHash< Toplevel*, Window* > windows;
|
|
|
|
bool init_ok;
|
|
|
|
};
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
class SceneXrender::Window
|
|
|
|
: public Scene::Window
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
Window(Toplevel* c);
|
|
|
|
virtual ~Window();
|
|
|
|
virtual void performPaint(int mask, QRegion region, WindowPaintData data);
|
|
|
|
void discardPicture();
|
|
|
|
void discardAlpha();
|
|
|
|
QRegion transformedShape() const;
|
|
|
|
void setTransformedShape(const QRegion& shape);
|
|
|
|
private:
|
|
|
|
Picture picture();
|
|
|
|
Picture alphaMask(double opacity);
|
|
|
|
QRect mapToScreen(int mask, const WindowPaintData &data, const QRect &rect) const;
|
|
|
|
QPoint mapToScreen(int mask, const WindowPaintData &data, const QPoint &point) const;
|
2011-07-24 21:04:06 +00:00
|
|
|
void prepareTempPixmap();
|
2011-01-30 14:34:42 +00:00
|
|
|
Picture _picture;
|
|
|
|
XRenderPictFormat* format;
|
|
|
|
Picture alpha;
|
|
|
|
double alpha_cached_opacity;
|
|
|
|
QRegion transformed_shape;
|
|
|
|
static QPixmap *temp_pixmap;
|
2012-03-10 10:34:56 +00:00
|
|
|
static QRect temp_visibleRect;
|
2011-01-30 14:34:42 +00:00
|
|
|
};
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2010-07-18 16:32:37 +00:00
|
|
|
class SceneXrender::EffectFrame
|
|
|
|
: public Scene::EffectFrame
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
EffectFrame(EffectFrameImpl* frame);
|
|
|
|
virtual ~EffectFrame();
|
|
|
|
|
|
|
|
virtual void free();
|
|
|
|
virtual void freeIconFrame();
|
|
|
|
virtual void freeTextFrame();
|
|
|
|
virtual void freeSelection();
|
|
|
|
virtual void crossFadeIcon();
|
|
|
|
virtual void crossFadeText();
|
|
|
|
virtual void render(QRegion region, double opacity, double frameOpacity);
|
|
|
|
|
|
|
|
private:
|
|
|
|
void updatePicture();
|
|
|
|
void updateTextPicture();
|
|
|
|
|
|
|
|
XRenderPicture* m_picture;
|
|
|
|
XRenderPicture* m_textPicture;
|
|
|
|
XRenderPicture* m_iconPicture;
|
|
|
|
XRenderPicture* m_selectionPicture;
|
|
|
|
};
|
2010-07-18 16:32:37 +00:00
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
inline
|
|
|
|
Picture SceneXrender::bufferPicture()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-04-29 17:35:43 +00:00
|
|
|
return buffer;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
inline
|
|
|
|
QRegion SceneXrender::Window::transformedShape() const
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-04-29 17:35:43 +00:00
|
|
|
return transformed_shape;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
inline
|
2011-01-30 14:34:42 +00:00
|
|
|
void SceneXrender::Window::setTransformedShape(const QRegion& shape)
|
|
|
|
{
|
2007-04-29 17:35:43 +00:00
|
|
|
transformed_shape = shape;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-04-28 15:22:17 +00:00
|
|
|
/**
|
|
|
|
* @short XRender implementation of Shadow.
|
|
|
|
*
|
|
|
|
* This class extends Shadow by the elements required for XRender rendering.
|
|
|
|
* @author Jacopo De Simoi <wilderkde@gmail.org>
|
|
|
|
**/
|
|
|
|
|
|
|
|
class SceneXRenderShadow
|
|
|
|
: public Shadow
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SceneXRenderShadow(Toplevel *toplevel);
|
2011-11-25 00:56:56 +00:00
|
|
|
using Shadow::ShadowElements;
|
|
|
|
using Shadow::ShadowElementTop;
|
|
|
|
using Shadow::ShadowElementTopRight;
|
|
|
|
using Shadow::ShadowElementRight;
|
|
|
|
using Shadow::ShadowElementBottomRight;
|
|
|
|
using Shadow::ShadowElementBottom;
|
|
|
|
using Shadow::ShadowElementBottomLeft;
|
|
|
|
using Shadow::ShadowElementLeft;
|
|
|
|
using Shadow::ShadowElementTopLeft;
|
|
|
|
using Shadow::ShadowElementsCount;
|
|
|
|
using Shadow::shadowPixmap;
|
2011-04-28 15:22:17 +00:00
|
|
|
virtual ~SceneXRenderShadow();
|
|
|
|
|
|
|
|
void layoutShadowRects(QRect& top, QRect& topRight,
|
|
|
|
QRect& right, QRect& bottomRight,
|
|
|
|
QRect& bottom, QRect& bottomLeft,
|
|
|
|
QRect& Left, QRect& topLeft);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void buildQuads();
|
2011-06-23 17:06:12 +00:00
|
|
|
virtual bool prepareBackend() {
|
|
|
|
return true;
|
|
|
|
};
|
2011-04-28 15:22:17 +00:00
|
|
|
};
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|