File indexing completed on 2025-03-23 05:02: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 KWin 0012 { 0013 0014 class InputPanelSurfaceV1Interface; 0015 0016 class InputPanelV1Integration : public WaylandShellIntegration 0017 { 0018 Q_OBJECT 0019 0020 public: 0021 explicit InputPanelV1Integration(QObject *parent = nullptr); 0022 0023 void createWindow(InputPanelSurfaceV1Interface *shellSurface); 0024 }; 0025 0026 } // namespace KWin