2013-06-21 08:03:31 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2013 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/>.
|
|
|
|
*********************************************************************/
|
|
|
|
#ifndef KWIN_SCENE_QPAINTER_H
|
|
|
|
#define KWIN_SCENE_QPAINTER_H
|
|
|
|
|
|
|
|
#include "scene.h"
|
2017-08-11 19:40:49 +00:00
|
|
|
#include <platformsupport/scenes/qpainter/backend.h>
|
2013-06-21 08:03:31 +00:00
|
|
|
#include "shadow.h"
|
|
|
|
|
2014-07-22 11:11:19 +00:00
|
|
|
#include "decorations/decorationrenderer.h"
|
|
|
|
|
2013-06-21 08:03:31 +00:00
|
|
|
namespace KWin {
|
|
|
|
|
2016-06-29 17:22:41 +00:00
|
|
|
class KWIN_EXPORT SceneQPainter : public Scene
|
2013-06-21 08:03:31 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual ~SceneQPainter();
|
|
|
|
virtual bool usesOverlayWindow() const override;
|
|
|
|
virtual OverlayWindow* overlayWindow() override;
|
|
|
|
virtual qint64 paint(QRegion damage, ToplevelList windows) override;
|
|
|
|
virtual void paintGenericScreen(int mask, ScreenPaintData data) override;
|
|
|
|
virtual CompositingType compositingType() const override;
|
|
|
|
virtual bool initFailed() const override;
|
|
|
|
virtual EffectFrame *createEffectFrame(EffectFrameImpl *frame) override;
|
|
|
|
virtual Shadow *createShadow(Toplevel *toplevel) override;
|
2014-07-22 11:11:19 +00:00
|
|
|
Decoration::Renderer *createDecorationRenderer(Decoration::DecoratedClientImpl *impl) override;
|
2015-03-19 07:29:34 +00:00
|
|
|
void screenGeometryChanged(const QSize &size) override;
|
2013-06-21 08:03:31 +00:00
|
|
|
|
2016-08-10 07:24:53 +00:00
|
|
|
bool animationsSupported() const override {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-08-09 04:56:23 +00:00
|
|
|
QPainter *scenePainter() const override;
|
2017-08-11 12:59:09 +00:00
|
|
|
QImage *qpainterRenderBuffer() const override;
|
2013-06-21 08:03:31 +00:00
|
|
|
|
2016-06-29 17:22:41 +00:00
|
|
|
QPainterBackend *backend() const {
|
|
|
|
return m_backend.data();
|
|
|
|
}
|
|
|
|
|
2015-02-23 13:41:45 +00:00
|
|
|
static SceneQPainter *createScene(QObject *parent);
|
2013-06-21 08:03:31 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void paintBackground(QRegion region) override;
|
|
|
|
virtual Scene::Window *createWindow(Toplevel *toplevel) override;
|
2017-06-12 20:28:39 +00:00
|
|
|
void paintCursor() override;
|
2013-06-21 08:03:31 +00:00
|
|
|
|
|
|
|
private:
|
2015-02-23 13:41:45 +00:00
|
|
|
explicit SceneQPainter(QPainterBackend *backend, QObject *parent = nullptr);
|
2013-06-21 08:03:31 +00:00
|
|
|
QScopedPointer<QPainterBackend> m_backend;
|
|
|
|
QScopedPointer<QPainter> m_painter;
|
|
|
|
class Window;
|
|
|
|
};
|
|
|
|
|
|
|
|
class SceneQPainter::Window : public Scene::Window
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Window(SceneQPainter *scene, Toplevel *c);
|
|
|
|
virtual ~Window();
|
|
|
|
virtual void performPaint(int mask, QRegion region, WindowPaintData data) override;
|
|
|
|
protected:
|
|
|
|
virtual WindowPixmap *createWindowPixmap() override;
|
|
|
|
private:
|
|
|
|
void renderShadow(QPainter *painter);
|
|
|
|
void renderWindowDecorations(QPainter *painter);
|
|
|
|
SceneQPainter *m_scene;
|
|
|
|
};
|
|
|
|
|
|
|
|
class QPainterWindowPixmap : public WindowPixmap
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit QPainterWindowPixmap(Scene::Window *window);
|
|
|
|
virtual ~QPainterWindowPixmap();
|
|
|
|
virtual void create() override;
|
2016-09-09 07:41:05 +00:00
|
|
|
bool isValid() const override;
|
2013-06-21 08:03:31 +00:00
|
|
|
|
2016-03-31 08:22:14 +00:00
|
|
|
void updateBuffer() override;
|
2013-06-21 08:03:31 +00:00
|
|
|
const QImage &image();
|
2016-03-21 15:42:30 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
WindowPixmap *createChild(const QPointer<KWayland::Server::SubSurfaceInterface> &subSurface) override;
|
2013-06-21 08:03:31 +00:00
|
|
|
private:
|
2016-03-21 15:42:30 +00:00
|
|
|
explicit QPainterWindowPixmap(const QPointer<KWayland::Server::SubSurfaceInterface> &subSurface, WindowPixmap *parent);
|
2013-06-21 08:03:31 +00:00
|
|
|
QImage m_image;
|
|
|
|
};
|
|
|
|
|
|
|
|
class QPainterEffectFrame : public Scene::EffectFrame
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
QPainterEffectFrame(EffectFrameImpl *frame, SceneQPainter *scene);
|
|
|
|
virtual ~QPainterEffectFrame();
|
|
|
|
virtual void crossFadeIcon() override {}
|
|
|
|
virtual void crossFadeText() override {}
|
|
|
|
virtual void free() override {}
|
|
|
|
virtual void freeIconFrame() override {}
|
|
|
|
virtual void freeTextFrame() override {}
|
|
|
|
virtual void freeSelection() override {}
|
|
|
|
virtual void render(QRegion region, double opacity, double frameOpacity) override;
|
|
|
|
private:
|
|
|
|
SceneQPainter *m_scene;
|
|
|
|
};
|
|
|
|
|
|
|
|
class SceneQPainterShadow : public Shadow
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SceneQPainterShadow(Toplevel* toplevel);
|
|
|
|
virtual ~SceneQPainterShadow();
|
|
|
|
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;
|
|
|
|
using Shadow::topOffset;
|
|
|
|
using Shadow::leftOffset;
|
|
|
|
using Shadow::rightOffset;
|
|
|
|
using Shadow::bottomOffset;
|
|
|
|
protected:
|
|
|
|
virtual bool prepareBackend() override;
|
|
|
|
};
|
|
|
|
|
2014-07-22 11:11:19 +00:00
|
|
|
class SceneQPainterDecorationRenderer : public Decoration::Renderer
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
enum class DecorationPart : int {
|
|
|
|
Left,
|
|
|
|
Top,
|
|
|
|
Right,
|
|
|
|
Bottom,
|
|
|
|
Count
|
|
|
|
};
|
|
|
|
explicit SceneQPainterDecorationRenderer(Decoration::DecoratedClientImpl *client);
|
|
|
|
virtual ~SceneQPainterDecorationRenderer();
|
|
|
|
|
|
|
|
void render() override;
|
2014-07-23 07:20:28 +00:00
|
|
|
void reparent(Deleted *deleted) override;
|
2014-07-22 11:11:19 +00:00
|
|
|
|
|
|
|
QImage image(DecorationPart part) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void resizeImages();
|
|
|
|
QImage m_images[int(DecorationPart::Count)];
|
|
|
|
};
|
|
|
|
|
2017-08-11 19:40:49 +00:00
|
|
|
class KWIN_EXPORT QPainterFactory : public SceneFactory
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
Q_INTERFACES(KWin::SceneFactory)
|
|
|
|
Q_PLUGIN_METADATA(IID "org.kde.kwin.Scene" FILE "qpainter.json")
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit QPainterFactory(QObject *parent = nullptr);
|
|
|
|
~QPainterFactory() override;
|
|
|
|
|
|
|
|
Scene *create(QObject *parent = nullptr) const override;
|
|
|
|
};
|
|
|
|
|
2013-06-21 08:03:31 +00:00
|
|
|
inline
|
|
|
|
bool SceneQPainter::usesOverlayWindow() const
|
|
|
|
{
|
|
|
|
return m_backend->usesOverlayWindow();
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
OverlayWindow* SceneQPainter::overlayWindow()
|
|
|
|
{
|
|
|
|
return m_backend->overlayWindow();
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
2017-08-09 04:56:23 +00:00
|
|
|
QPainter* SceneQPainter::scenePainter() const
|
2013-06-21 08:03:31 +00:00
|
|
|
{
|
|
|
|
return m_painter.data();
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
const QImage &QPainterWindowPixmap::image()
|
|
|
|
{
|
|
|
|
return m_image;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // KWin
|
|
|
|
|
|
|
|
#endif // KWIN_SCENEQPAINTER_H
|