kwin/src/waylandshellintegration.h

26 lines
394 B
C
Raw Normal View History

/*
2020-08-02 22:22:19 +00:00
SPDX-FileCopyrightText: 2020 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#pragma once
2022-04-22 17:39:12 +00:00
#include "window.h"
namespace KWin
{
class WaylandShellIntegration : public QObject
{
Q_OBJECT
public:
explicit WaylandShellIntegration(QObject *parent = nullptr);
Q_SIGNALS:
void windowCreated(Window *window);
};
} // namespace KWin