You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kwin/waylandshellintegration.h

26 lines
412 B
C++

/*
* SPDX-FileCopyrightText: 2020 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#pragma once
#include "abstract_client.h"
namespace KWin
{
class WaylandShellIntegration : public QObject
{
Q_OBJECT
public:
explicit WaylandShellIntegration(QObject *parent = nullptr);
Q_SIGNALS:
void clientCreated(AbstractClient *client);
};
} // namespace KWin