File indexing completed on 2023-12-03 12:24:54
0001 /* 0002 * SPDX-FileCopyrightText: 2021 Aleix Pol Gonzalez <aleixpol@blue-systems.com> 0003 * SPDX-FileCopyrightText: 2018 Drew DeVault <sir@cmpwn.com> 0004 * 0005 * SPDX-License-Identifier: LGPL-3.0-or-later 0006 */ 0007 0008 #ifndef _LAYERSHELLINTEGRATION_P_H 0009 #define _LAYERSHELLINTEGRATION_P_H 0010 0011 #include "layershellqt_export.h" 0012 0013 #include <QtWaylandClient/private/qwaylandshellintegration_p.h> 0014 #include <qwayland-wlr-layer-shell-unstable-v1.h> 0015 0016 namespace LayerShellQt 0017 { 0018 0019 class LAYERSHELLQT_EXPORT QWaylandLayerShellIntegration : public QtWaylandClient::QWaylandShellIntegrationTemplate<QWaylandLayerShellIntegration>, public QtWayland::zwlr_layer_shell_v1 0020 { 0021 public: 0022 QWaylandLayerShellIntegration(); 0023 ~QWaylandLayerShellIntegration() override; 0024 0025 QtWaylandClient::QWaylandShellSurface *createShellSurface(QtWaylandClient::QWaylandWindow *window) override; 0026 }; 0027 0028 } 0029 0030 #endif