kwin/src/wayland/server_decoration_interface.h

129 lines
3.5 KiB
C
Raw Normal View History

/*
SPDX-FileCopyrightText: 2015 Martin Gräßlin <mgraesslin@kde.org>
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
*/
2021-03-10 16:08:30 +00:00
#pragma once
#include <QObject>
2020-04-29 14:56:38 +00:00
#include <KWaylandServer/kwaylandserver_export.h>
struct wl_resource;
2020-04-29 14:56:38 +00:00
namespace KWaylandServer
{
class Display;
class ServerSideDecorationInterface;
class SurfaceInterface;
class ServerSideDecorationManagerInterfacePrivate;
class ServerSideDecorationInterfacePrivate;
/**
* @brief Manager to create ServerSideDecorationInterface.
**/
class KWAYLANDSERVER_EXPORT ServerSideDecorationManagerInterface : public QObject
{
Q_OBJECT
public:
explicit ServerSideDecorationManagerInterface(Display *display, QObject *parent = nullptr);
~ServerSideDecorationManagerInterface() override;
/**
* Decoration mode used for SurfaceInterfaces.
**/
enum class Mode {
/**
* Undecorated: neither client, nor server provide decoration. Example: popups.
**/
None,
/**
* The decoration is part of the surface.
**/
Client,
/**
* The surface gets embedded into a decoration frame provided by the Server.
**/
Server
};
/**
* Sets the default @p mode which is pushed to the Clients on creating a ServerSideDecorationInterface.
* @param mode The new default mode.
* @see defaultMode
**/
void setDefaultMode(Mode mode);
/**
* @returns the current default mode.
* @see setDefaultMode
**/
Mode defaultMode() const;
Q_SIGNALS:
/**
* Emitted whenever a new ServerSideDecorationInterface is created.
**/
2020-04-29 14:56:38 +00:00
void decorationCreated(KWaylandServer::ServerSideDecorationInterface*);
private:
QScopedPointer<ServerSideDecorationManagerInterfacePrivate> d;
};
/**
* @brief Representing how a SurfaceInterface should be decorated.
*
* Created by ServerSideDecorationManagerInterface and emitted with decorationCreated signal.
**/
class KWAYLANDSERVER_EXPORT ServerSideDecorationInterface : public QObject
{
Q_OBJECT
public:
~ServerSideDecorationInterface() override;
/**
* Sets the @p mode on the SurfaceInterface. A client might refuse the provided @p mode,
* in that case modeRequested will be emitted.
* @see mode
* @see modeRequested
**/
void setMode(ServerSideDecorationManagerInterface::Mode mode);
/**
* @returns the currently set mode, not the requested mode.
* @see setMode
* @see modeRequested
**/
ServerSideDecorationManagerInterface::Mode mode() const;
/**
* @returns The SurfaceInterface this ServerSideDecorationInterface references.
**/
SurfaceInterface *surface() const;
/**
* @returns The ServerSideDecorationInterface for the given @p surface, @c nullptr if there is none.
**/
static ServerSideDecorationInterface *get(SurfaceInterface *surface);
Q_SIGNALS:
/**
* The client requested the provided mode.
* The server needs to acknowledge the requested mode by setting it through setMode.
* @see setMode
* @see mode
**/
2020-04-29 14:56:38 +00:00
void modeRequested(KWaylandServer::ServerSideDecorationManagerInterface::Mode);
private:
explicit ServerSideDecorationInterface(SurfaceInterface *surface, wl_resource *resource);
friend class ServerSideDecorationManagerInterfacePrivate;
QScopedPointer<ServerSideDecorationInterfacePrivate> d;
};
}
2020-04-29 14:56:38 +00:00
Q_DECLARE_METATYPE(KWaylandServer::ServerSideDecorationInterface*)
Q_DECLARE_METATYPE(KWaylandServer::ServerSideDecorationManagerInterface::Mode)