2014-07-22 11:11:19 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2014 Martin Gräßlin <mgraesslin@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 "decorationrenderer.h"
|
|
|
|
#include "decoratedclient.h"
|
2014-07-23 07:20:28 +00:00
|
|
|
#include "deleted.h"
|
2017-10-30 13:27:48 +00:00
|
|
|
#include "abstract_client.h"
|
2014-07-22 11:11:19 +00:00
|
|
|
|
|
|
|
#include <KDecoration2/Decoration>
|
|
|
|
#include <KDecoration2/DecoratedClient>
|
|
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QPainter>
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
namespace Decoration
|
|
|
|
{
|
|
|
|
|
|
|
|
Renderer::Renderer(DecoratedClientImpl *client)
|
|
|
|
: QObject(client)
|
|
|
|
, m_client(client)
|
|
|
|
, m_imageSizesDirty(true)
|
|
|
|
{
|
|
|
|
auto markImageSizesDirty = [this]{ m_imageSizesDirty = true; };
|
2017-10-30 13:27:48 +00:00
|
|
|
if (kwinApp()->operationMode() != Application::OperationModeX11) {
|
|
|
|
connect(client->client(), &AbstractClient::screenChanged, this, markImageSizesDirty);
|
|
|
|
}
|
2014-07-22 11:11:19 +00:00
|
|
|
connect(client->decoration(), &KDecoration2::Decoration::bordersChanged, this, markImageSizesDirty);
|
|
|
|
connect(client->decoratedClient(), &KDecoration2::DecoratedClient::widthChanged, this, markImageSizesDirty);
|
|
|
|
connect(client->decoratedClient(), &KDecoration2::DecoratedClient::heightChanged, this, markImageSizesDirty);
|
|
|
|
}
|
|
|
|
|
|
|
|
Renderer::~Renderer() = default;
|
|
|
|
|
|
|
|
void Renderer::schedule(const QRect &rect)
|
|
|
|
{
|
|
|
|
m_scheduled = m_scheduled.united(rect);
|
|
|
|
emit renderScheduled(rect);
|
|
|
|
}
|
|
|
|
|
|
|
|
QRegion Renderer::getScheduled()
|
|
|
|
{
|
|
|
|
QRegion region = m_scheduled;
|
|
|
|
m_scheduled = QRegion();
|
|
|
|
return region;
|
|
|
|
}
|
|
|
|
|
|
|
|
QImage Renderer::renderToImage(const QRect &geo)
|
|
|
|
{
|
2014-07-23 07:20:28 +00:00
|
|
|
Q_ASSERT(m_client);
|
2014-07-22 11:11:19 +00:00
|
|
|
QImage image(geo.width(), geo.height(), QImage::Format_ARGB32_Premultiplied);
|
|
|
|
image.fill(Qt::transparent);
|
|
|
|
QPainter p(&image);
|
|
|
|
p.setRenderHint(QPainter::Antialiasing);
|
|
|
|
p.setWindow(geo);
|
|
|
|
p.setClipRect(geo);
|
2014-11-11 08:39:45 +00:00
|
|
|
client()->decoration()->paint(&p, geo);
|
2014-07-22 11:11:19 +00:00
|
|
|
return image;
|
|
|
|
}
|
|
|
|
|
2014-07-23 07:20:28 +00:00
|
|
|
void Renderer::reparent(Deleted *deleted)
|
|
|
|
{
|
|
|
|
setParent(deleted);
|
|
|
|
m_client = nullptr;
|
|
|
|
}
|
|
|
|
|
2014-07-22 11:11:19 +00:00
|
|
|
}
|
|
|
|
}
|