2008-05-07 14:43:13 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2008 Lubos Lunak <l.lunak@kde.org>
|
|
|
|
|
|
|
|
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/>.
|
|
|
|
*********************************************************************/
|
|
|
|
|
|
|
|
#include "kwinxrenderutils.h"
|
2011-06-11 12:48:16 +00:00
|
|
|
#include "kwinglobals.h"
|
2008-05-07 14:43:13 +00:00
|
|
|
|
|
|
|
#ifdef KWIN_HAVE_XRENDER_COMPOSITING
|
|
|
|
|
2008-06-15 18:49:48 +00:00
|
|
|
#include <QVector>
|
|
|
|
#include <QPixmap>
|
|
|
|
#include <QPainter>
|
2008-05-08 10:08:10 +00:00
|
|
|
#include <kdebug.h>
|
2008-05-07 14:43:13 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
// Convert QRegion to XserverRegion. All code uses XserverRegion
|
|
|
|
// only when really necessary as the shared implementation uses
|
|
|
|
// QRegion.
|
2011-01-30 14:34:42 +00:00
|
|
|
XserverRegion toXserverRegion(QRegion region)
|
|
|
|
{
|
2008-05-07 14:43:13 +00:00
|
|
|
QVector< QRect > rects = region.rects();
|
2011-01-30 14:34:42 +00:00
|
|
|
XRectangle* xr = new XRectangle[ rects.count()];
|
|
|
|
for (int i = 0;
|
|
|
|
i < rects.count();
|
|
|
|
++i) {
|
2008-05-07 14:43:13 +00:00
|
|
|
xr[ i ].x = rects[ i ].x();
|
|
|
|
xr[ i ].y = rects[ i ].y();
|
|
|
|
xr[ i ].width = rects[ i ].width();
|
|
|
|
xr[ i ].height = rects[ i ].height();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
|
|
|
XserverRegion ret = XFixesCreateRegion(display(), xr, rects.count());
|
2008-05-07 14:43:13 +00:00
|
|
|
delete[] xr;
|
|
|
|
return ret;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2008-05-07 14:43:13 +00:00
|
|
|
|
2008-06-06 09:11:52 +00:00
|
|
|
// adapted from Qt, because this really sucks ;)
|
|
|
|
XRenderColor preMultiply(const QColor &c, float opacity)
|
|
|
|
{
|
|
|
|
XRenderColor color;
|
|
|
|
const uint A = c.alpha() * opacity,
|
|
|
|
R = c.red(),
|
|
|
|
G = c.green(),
|
|
|
|
B = c.blue();
|
|
|
|
color.alpha = (A | A << 8);
|
|
|
|
color.red = (R | R << 8) * color.alpha / 0x10000;
|
|
|
|
color.green = (G | G << 8) * color.alpha / 0x10000;
|
|
|
|
color.blue = (B | B << 8) * color.alpha / 0x10000;
|
|
|
|
return color;
|
|
|
|
}
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
XRenderPicture xRenderFill(const XRenderColor *xc)
|
|
|
|
{
|
|
|
|
Pixmap pixmap = XCreatePixmap(display(), rootWindow(), 1, 1, 32);
|
2008-06-06 09:11:52 +00:00
|
|
|
XRenderPictureAttributes pa; pa.repeat = True;
|
2011-01-30 14:34:42 +00:00
|
|
|
XRenderPicture fill(pixmap, 32);
|
|
|
|
XFreePixmap(display(), pixmap);
|
|
|
|
XRenderChangePicture(display(), fill, CPRepeat, &pa);
|
|
|
|
XRenderFillRectangle(display(), PictOpSrc, fill, xc, 0, 0, 1, 1);
|
2008-06-06 09:11:52 +00:00
|
|
|
return fill;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2008-06-06 09:11:52 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
XRenderPicture xRenderFill(const QColor &c)
|
|
|
|
{
|
2008-06-06 09:11:52 +00:00
|
|
|
XRenderColor xc = preMultiply(c);
|
2011-01-30 14:34:42 +00:00
|
|
|
return xRenderFill(&xc);
|
|
|
|
}
|
2008-06-06 09:11:52 +00:00
|
|
|
|
2009-05-12 14:12:46 +00:00
|
|
|
static XRenderPicture _blendPicture = X::None;
|
|
|
|
static XRenderColor _blendColor;
|
|
|
|
XRenderPicture xRenderBlendPicture(double opacity)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2009-05-12 14:12:46 +00:00
|
|
|
_blendColor.alpha = ushort(opacity * 0xffff);
|
|
|
|
if (_blendPicture == X::None)
|
|
|
|
_blendPicture = xRenderFill(&_blendColor);
|
|
|
|
else
|
|
|
|
XRenderFillRectangle(display(), PictOpSrc, _blendPicture, &_blendColor, 0, 0, 1, 1);
|
|
|
|
return _blendPicture;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2009-05-12 14:12:46 +00:00
|
|
|
|
2008-06-06 09:11:52 +00:00
|
|
|
|
|
|
|
static XRenderPicture *_circle[4] = {NULL, NULL, NULL, NULL};
|
|
|
|
|
|
|
|
#define DUMP_CNR(_SECT_, _W_, _H_, _XOFF_, _YOFF_)\
|
|
|
|
dump = QPixmap(_W_, _H_);\
|
|
|
|
dump.fill(Qt::transparent);\
|
|
|
|
p.begin(&dump);\
|
|
|
|
p.drawPixmap( 0, 0, tmp, _XOFF_, _YOFF_, _W_, _H_ );\
|
|
|
|
p.end();\
|
|
|
|
_circle[_SECT_] = new XRenderPicture(dump);
|
|
|
|
|
|
|
|
#define CS 8
|
2011-01-30 14:34:42 +00:00
|
|
|
|
2008-06-06 09:11:52 +00:00
|
|
|
static XRenderPicture *circle(int i)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
if (!_circle[0]) {
|
|
|
|
QPixmap tmp(2 * CS, 2 * CS);
|
2008-06-06 09:11:52 +00:00
|
|
|
tmp.fill(Qt::transparent);
|
|
|
|
QPainter p(&tmp);
|
|
|
|
p.setRenderHint(QPainter::Antialiasing);
|
|
|
|
p.setPen(Qt::NoPen); p.setBrush(Qt::black);
|
|
|
|
p.drawEllipse(tmp.rect());
|
|
|
|
p.end();
|
|
|
|
QPixmap dump;
|
|
|
|
DUMP_CNR(0, CS, CS, 0, 0);
|
|
|
|
DUMP_CNR(1, CS, CS, CS, 0);
|
|
|
|
DUMP_CNR(2, CS, CS, CS, CS);
|
|
|
|
DUMP_CNR(3, CS, CS, 0, CS);
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
return _circle[i];
|
|
|
|
}
|
2008-06-06 09:11:52 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void xRenderRoundBox(Picture pict, const QRect &rect, int , const QColor &c)
|
|
|
|
{
|
2008-06-06 09:11:52 +00:00
|
|
|
XRenderPicture fill = xRenderFill(c);
|
|
|
|
int op = c.alpha() == 255 ? PictOpSrc : PictOpOver;
|
|
|
|
// TODO: implement second paramenter "roundness"
|
|
|
|
// so rather use ?? XRenderCompositeTriFan (dpy, op, src, dst, maskFormat, xSrc, ySrc,
|
2011-01-30 14:34:42 +00:00
|
|
|
//XPointFixed *points, npoint);
|
2008-06-06 09:11:52 +00:00
|
|
|
// this will require "points on a circle" calculation, however...
|
2011-01-30 14:34:42 +00:00
|
|
|
|
|
|
|
int s = qMin(CS, qMin(rect.height() / 2, rect.width() / 2));
|
|
|
|
int x, y, b, r;
|
|
|
|
rect.getCoords(&x, &y, &r, &b);
|
2008-06-06 09:11:52 +00:00
|
|
|
r -= (s - 1);
|
|
|
|
b -= (s - 1);
|
2011-01-30 14:34:42 +00:00
|
|
|
XRenderComposite(display(), PictOpOver, fill, *circle(0), pict, 0, 0, 0, 0, x, y, CS, CS);
|
|
|
|
XRenderComposite(display(), PictOpOver, fill, *circle(1), pict, 0, 0, CS - s, 0, r, y, s, s);
|
|
|
|
XRenderComposite(display(), PictOpOver, fill, *circle(2), pict, 0, 0, CS - s, CS - s, r, b, s, s);
|
|
|
|
XRenderComposite(display(), PictOpOver, fill, *circle(3), pict, 0, 0, 0, CS - s, x, b, s, s);
|
|
|
|
XRenderComposite(display(), op, fill, 0, pict, 0, 0, 0, 0, x + s, y, rect.width() - 2 * s, s);
|
|
|
|
XRenderComposite(display(), op, fill, 0, pict, 0, 0, 0, 0, x, y + s, rect.width(), rect.height() - 2 * s);
|
|
|
|
XRenderComposite(display(), op, fill, 0, pict, 0, 0, 0, 0, x + s, b, rect.width() - 2 * s, s);
|
|
|
|
}
|
2008-06-06 09:11:52 +00:00
|
|
|
|
|
|
|
#undef CS
|
|
|
|
#undef DUMP_CNR
|
|
|
|
|
2008-05-08 10:08:10 +00:00
|
|
|
// XRenderFind(Standard)Format() is a roundtrip, so cache the results
|
|
|
|
static XRenderPictFormat* renderformats[ 33 ];
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
static Picture createPicture(Pixmap pix, int depth)
|
|
|
|
{
|
|
|
|
if (pix == None)
|
2008-05-08 10:08:10 +00:00
|
|
|
return None;
|
2011-01-30 14:34:42 +00:00
|
|
|
if (renderformats[ depth ] == NULL) {
|
|
|
|
switch(depth) {
|
|
|
|
case 1:
|
|
|
|
renderformats[ 1 ] = XRenderFindStandardFormat(display(), PictStandardA1);
|
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
renderformats[ 8 ] = XRenderFindStandardFormat(display(), PictStandardA8);
|
|
|
|
break;
|
|
|
|
case 24:
|
|
|
|
renderformats[ 24 ] = XRenderFindStandardFormat(display(), PictStandardRGB24);
|
|
|
|
break;
|
|
|
|
case 32:
|
|
|
|
renderformats[ 32 ] = XRenderFindStandardFormat(display(), PictStandardARGB32);
|
|
|
|
break;
|
|
|
|
default: {
|
|
|
|
XRenderPictFormat req;
|
|
|
|
long mask = PictFormatType | PictFormatDepth;
|
|
|
|
req.type = PictTypeDirect;
|
|
|
|
req.depth = depth;
|
|
|
|
renderformats[ depth ] = XRenderFindFormat(display(), mask, &req, 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (renderformats[ depth ] == NULL) {
|
|
|
|
kWarning(1212) << "Could not find XRender format for depth" << depth;
|
2008-05-08 10:08:10 +00:00
|
|
|
return None;
|
|
|
|
}
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
return XRenderCreatePicture(display(), pix, renderformats[ depth ], 0, NULL);
|
|
|
|
}
|
2008-05-08 10:08:10 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
XRenderPicture::XRenderPicture(QPixmap pix)
|
|
|
|
{
|
2011-06-11 12:48:16 +00:00
|
|
|
if (Extensions::nonNativePixmaps()) {
|
2011-05-12 16:52:38 +00:00
|
|
|
Pixmap xPix = XCreatePixmap(display(), rootWindow(), pix.width(), pix.height(), pix.depth());
|
2011-06-11 12:48:16 +00:00
|
|
|
QPixmap tempPix = QPixmap::fromX11Pixmap(xPix, QPixmap::ExplicitlyShared);
|
2011-05-12 16:52:38 +00:00
|
|
|
tempPix.fill(Qt::transparent);
|
|
|
|
QPainter p(&tempPix);
|
|
|
|
p.drawPixmap(QPoint(0, 0), pix);
|
2011-06-11 12:48:16 +00:00
|
|
|
p.end();
|
2011-05-12 16:52:38 +00:00
|
|
|
d = new XRenderPictureData(createPicture(tempPix.handle(), tempPix.depth()));
|
2011-06-11 12:48:16 +00:00
|
|
|
XFreePixmap(display(), xPix);
|
2011-05-12 16:52:38 +00:00
|
|
|
} else {
|
|
|
|
d = new XRenderPictureData(createPicture(pix.handle(), pix.depth()));
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2008-05-08 10:08:10 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
XRenderPicture::XRenderPicture(Pixmap pix, int depth)
|
|
|
|
: d(new XRenderPictureData(createPicture(pix, depth)))
|
|
|
|
{
|
|
|
|
}
|
2008-05-08 10:08:10 +00:00
|
|
|
|
2008-05-07 14:43:13 +00:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif
|