2019-01-13 16:50:32 +00:00
|
|
|
/*
|
2020-08-02 22:10:35 +00:00
|
|
|
* SPDX-FileCopyrightText: 2019 Martin Flöser <mgraesslin@kde.org>
|
2019-01-13 16:50:32 +00:00
|
|
|
*
|
2020-08-02 22:10:35 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
2019-01-13 16:50:32 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <KWindowSystem/private/kwindowsystemplugininterface_p.h>
|
|
|
|
|
|
|
|
class KWindowSystemKWinPlugin : public KWindowSystemPluginInterface
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
Q_PLUGIN_METADATA(IID "org.kde.kwindowsystem.KWindowSystemPluginInterface" FILE "kwindowsystem.json")
|
|
|
|
Q_INTERFACES(KWindowSystemPluginInterface)
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit KWindowSystemKWinPlugin(QObject *parent = nullptr);
|
|
|
|
~KWindowSystemKWinPlugin() override;
|
|
|
|
|
|
|
|
KWindowEffectsPrivate *createEffects() override;
|
|
|
|
KWindowSystemPrivate *createWindowSystem() override;
|
2020-01-01 01:11:17 +00:00
|
|
|
KWindowShadowTilePrivate *createWindowShadowTile() override;
|
|
|
|
KWindowShadowPrivate *createWindowShadow() override;
|
2019-01-13 16:50:32 +00:00
|
|
|
};
|