File indexing completed on 2024-12-01 13:37:41
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 "window.h" 0010 0011 namespace KWin 0012 { 0013 0014 class WaylandShellIntegration : public QObject 0015 { 0016 Q_OBJECT 0017 0018 public: 0019 explicit WaylandShellIntegration(QObject *parent = nullptr); 0020 0021 Q_SIGNALS: 0022 void windowCreated(Window *window); 0023 }; 0024 0025 } // namespace KWin