File indexing completed on 2024-04-21 15:05:41

0001 /*
0002     SPDX-FileCopyrightText: 2015 Martin Gräßlin <mgraesslin@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 #include "kwindowsystemplugininterface_p.h"
0008 
0009 KWindowSystemPluginInterface::KWindowSystemPluginInterface(QObject *parent)
0010     : QObject(parent)
0011 {
0012 }
0013 
0014 KWindowSystemPluginInterface::~KWindowSystemPluginInterface()
0015 {
0016 }
0017 
0018 KWindowEffectsPrivate *KWindowSystemPluginInterface::createEffects()
0019 {
0020     return nullptr;
0021 }
0022 
0023 KWindowSystemPrivate *KWindowSystemPluginInterface::createWindowSystem()
0024 {
0025     return nullptr;
0026 }
0027 
0028 KWindowInfoPrivate *KWindowSystemPluginInterface::createWindowInfo(WId window, NET::Properties properties, NET::Properties2 properties2)
0029 {
0030     Q_UNUSED(window)
0031     Q_UNUSED(properties)
0032     Q_UNUSED(properties2)
0033     return nullptr;
0034 }
0035 
0036 KWindowShadowPrivate *KWindowSystemPluginInterface::createWindowShadow()
0037 {
0038     return nullptr;
0039 }
0040 
0041 KWindowShadowTilePrivate *KWindowSystemPluginInterface::createWindowShadowTile()
0042 {
0043     return nullptr;
0044 }
0045 
0046 #include "moc_kwindowsystemplugininterface_p.cpp"