/* SPDX-FileCopyrightText: 2020 Vlad Zahorodnii SPDX-License-Identifier: GPL-2.0-or-later */ #pragma once #include "waylandshellintegration.h" namespace KWaylandServer { class LayerSurfaceV1Interface; } namespace KWin { class LayerShellV1Integration : public WaylandShellIntegration { Q_OBJECT public: explicit LayerShellV1Integration(QObject *parent = nullptr); void rearrange(); void scheduleRearrange(); void createClient(KWaylandServer::LayerSurfaceV1Interface *shellSurface); void recreateClient(KWaylandServer::LayerSurfaceV1Interface *shellSurface); void destroyClient(KWaylandServer::LayerSurfaceV1Interface *shellSurface); private: QTimer *m_rearrangeTimer; }; } // namespace KWin