layer-shell-qt-nokde/src/qwaylandlayershell_p.h

34 lines
790 B
C
Raw Normal View History

2021-04-01 00:28:01 +00:00
/*
* SPDX-FileCopyrightText: 2021 Aleix Pol Gonzalez <aleixpol@blue-systems.com>
* SPDX-FileCopyrightText: 2018 Drew DeVault <sir@cmpwn.com>
*
* SPDX-License-Identifier: LGPL-3.0-or-later
*/
#ifndef _LAYERSHELL_H
#define _LAYERSHELL_H
#include <wayland-client.h>
#include <qwayland-wlr-layer-shell-unstable-v1.h>
#include <QtWaylandClient/private/qwaylandshellintegration_p.h>
#include "qwaylandlayersurface_p.h"
namespace LayerShellQt {
2021-04-01 00:45:31 +00:00
class LAYERSHELLQT_EXPORT QWaylandLayerShell : public QtWayland::zwlr_layer_shell_v1
2021-04-01 00:28:01 +00:00
{
public:
QWaylandLayerShell(struct QtWayland::zwlr_layer_shell_v1 *shell);
virtual ~QWaylandLayerShell();
QWaylandLayerSurface *createLayerSurface(
QtWaylandClient::QWaylandWindow *window);
// TODO: Popups
};
}
#endif