File indexing completed on 2024-04-28 16:48:51

0001 /*
0002     SPDX-FileCopyrightText: 2020 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include "waylandshellintegration.h"
0010 
0011 namespace KWaylandServer
0012 {
0013 class InputPanelSurfaceV1Interface;
0014 }
0015 
0016 namespace KWin
0017 {
0018 
0019 class InputPanelV1Integration : public WaylandShellIntegration
0020 {
0021     Q_OBJECT
0022 
0023 public:
0024     explicit InputPanelV1Integration(QObject *parent = nullptr);
0025 
0026     void createWindow(KWaylandServer::InputPanelSurfaceV1Interface *shellSurface);
0027 };
0028 
0029 } // namespace KWin