2019-01-13 16:50:32 +00:00
|
|
|
/*
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2019 Martin Flöser <mgraesslin@kde.org>
|
|
|
|
|
|
|
|
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
|
2020-11-21 10:22:48 +00:00
|
|
|
Q_PLUGIN_METADATA(IID KWindowSystemPluginInterface_iid FILE "kwindowsystem.json")
|
2019-01-13 16:50:32 +00:00
|
|
|
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
|
|
|
};
|