mirror of
https://invent.kde.org/plasma/layer-shell-qt.git
synced 2025-05-27 10:30:21 -04:00
34 lines
637 B
C++
34 lines
637 B
C++
/*
|
|
* SPDX-FileCopyrightText: 2021 Aleix Pol Gonzalez <aleixpol@blue-systems.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
|
|
*/
|
|
|
|
#ifndef LAYERSHELLQTSHELL_H
|
|
#define LAYERSHELLQTSHELL_H
|
|
|
|
#include "layershellqt_export.h"
|
|
#include "window.h"
|
|
#include <QString>
|
|
|
|
namespace LayerShellQt
|
|
{
|
|
/*!
|
|
* \class LayerShellQt::Shell
|
|
* \inmodule LayerShellQt
|
|
* \inheaderfile LayerShellQt/Shell
|
|
*
|
|
*/
|
|
class LAYERSHELLQT_EXPORT Shell
|
|
{
|
|
public:
|
|
/*!
|
|
* Sets the right environment so the shells created from now on use wlr-layer-shell.
|
|
*/
|
|
static void useLayerShell();
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|