forked from quickshell/quickshell
A fair amount of things are broken but not in the layershell interface itself. The shell window platform extensions are next in line for refactoring and relevent issues will be fixed then. Same for docs.
21 lines
880 B
C++
21 lines
880 B
C++
#pragma once
|
|
|
|
#include <private/qwaylandshellintegration_p.h>
|
|
#include <private/qwaylandshellsurface_p.h>
|
|
#include <qtwaylandclientexports.h>
|
|
#include <qwayland-wlr-layer-shell-unstable-v1.h>
|
|
|
|
class Q_WAYLANDCLIENT_EXPORT QSWaylandLayerShellIntegration
|
|
: public QtWaylandClient::QWaylandShellIntegrationTemplate<QSWaylandLayerShellIntegration>
|
|
, public QtWayland::zwlr_layer_shell_v1 {
|
|
public:
|
|
QSWaylandLayerShellIntegration();
|
|
~QSWaylandLayerShellIntegration() override;
|
|
QSWaylandLayerShellIntegration(QSWaylandLayerShellIntegration&&) = delete;
|
|
QSWaylandLayerShellIntegration(const QSWaylandLayerShellIntegration&) = delete;
|
|
void operator=(QSWaylandLayerShellIntegration&&) = delete;
|
|
void operator=(const QSWaylandLayerShellIntegration&) = delete;
|
|
|
|
QtWaylandClient::QWaylandShellSurface* createShellSurface(QtWaylandClient::QWaylandWindow* window
|
|
) override;
|
|
};
|