2020-03-15 15:19:28 +00:00
|
|
|
/*
|
|
|
|
SPDX-FileCopyrightText: 2014 Martin Gräßlin <mgraesslin@kde.org>
|
|
|
|
|
|
|
|
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
|
|
|
|
*/
|
2014-10-14 12:04:35 +00:00
|
|
|
#ifndef WAYLAND_SERVER_SUBCOMPOSITOR_INTERFACE_H
|
|
|
|
#define WAYLAND_SERVER_SUBCOMPOSITOR_INTERFACE_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QPointer>
|
|
|
|
|
2020-04-29 14:56:38 +00:00
|
|
|
#include <KWaylandServer/kwaylandserver_export.h>
|
2014-10-14 12:04:35 +00:00
|
|
|
|
2014-11-13 14:07:31 +00:00
|
|
|
#include "global.h"
|
2014-11-14 08:45:02 +00:00
|
|
|
#include "resource.h"
|
2014-11-13 14:07:31 +00:00
|
|
|
|
2014-10-14 12:04:35 +00:00
|
|
|
struct wl_resource;
|
|
|
|
|
2020-04-29 14:56:38 +00:00
|
|
|
namespace KWaylandServer
|
2014-10-14 12:04:35 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
class Display;
|
|
|
|
class SurfaceInterface;
|
|
|
|
class SubSurfaceInterface;
|
|
|
|
|
2017-05-26 16:33:25 +00:00
|
|
|
/**
|
|
|
|
* @todo Add documentation
|
|
|
|
*/
|
2014-11-13 14:07:31 +00:00
|
|
|
class KWAYLANDSERVER_EXPORT SubCompositorInterface : public Global
|
2014-10-14 12:04:35 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
virtual ~SubCompositorInterface();
|
|
|
|
|
|
|
|
Q_SIGNALS:
|
2020-04-29 14:56:38 +00:00
|
|
|
void subSurfaceCreated(KWaylandServer::SubSurfaceInterface*);
|
2014-10-14 12:04:35 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
explicit SubCompositorInterface(Display *display, QObject *parent = nullptr);
|
|
|
|
friend class Display;
|
|
|
|
class Private;
|
|
|
|
};
|
|
|
|
|
2017-05-26 16:33:25 +00:00
|
|
|
/**
|
|
|
|
* @todo Add documentation
|
|
|
|
*/
|
2014-11-14 08:45:02 +00:00
|
|
|
class KWAYLANDSERVER_EXPORT SubSurfaceInterface : public Resource
|
2014-10-14 12:04:35 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(QPoint position READ position NOTIFY positionChanged)
|
2020-04-29 14:56:38 +00:00
|
|
|
Q_PROPERTY(KWaylandServer::SubSurfaceInterface::Mode mode READ mode NOTIFY modeChanged)
|
2014-10-14 12:04:35 +00:00
|
|
|
public:
|
|
|
|
virtual ~SubSurfaceInterface();
|
|
|
|
|
|
|
|
QPoint position() const;
|
|
|
|
|
|
|
|
enum class Mode {
|
|
|
|
Synchronized,
|
|
|
|
Desynchronized
|
|
|
|
};
|
|
|
|
Mode mode() const;
|
|
|
|
|
2016-03-18 09:41:56 +00:00
|
|
|
/**
|
|
|
|
* Whether this SubSurfaceInterface is in synchronized mode.
|
2017-05-26 00:57:20 +00:00
|
|
|
* A SubSurface is in synchronized mode if either {@link mode} is
|
2016-03-18 09:41:56 +00:00
|
|
|
* @c Mode::Synchronized or if the parent surface is in synchronized
|
|
|
|
* mode. If a SubSurfaceInterface is in synchronized mode all child
|
|
|
|
* SubSurfaceInterfaces are also in synchronized mode ignoring the actual mode.
|
|
|
|
* @returns Whether this SubSurfaceInterface is in synchronized mode.
|
|
|
|
* @see mode
|
2016-04-27 05:43:43 +00:00
|
|
|
* @since 5.22
|
2016-03-18 09:41:56 +00:00
|
|
|
**/
|
|
|
|
bool isSynchronized() const;
|
|
|
|
|
2016-03-24 14:30:48 +00:00
|
|
|
// TODO: remove with ABI break (KF6)
|
2014-10-14 12:04:35 +00:00
|
|
|
QPointer<SurfaceInterface> surface();
|
2016-03-24 14:30:48 +00:00
|
|
|
/**
|
|
|
|
* @returns The surface this SubSurfaceInterface was created on.
|
2016-04-27 05:43:43 +00:00
|
|
|
* @since 5.22
|
2016-03-24 14:30:48 +00:00
|
|
|
**/
|
|
|
|
QPointer<SurfaceInterface> surface() const;
|
|
|
|
// TODO: remove with ABI break (KF6)
|
2014-10-14 12:04:35 +00:00
|
|
|
QPointer<SurfaceInterface> parentSurface();
|
2016-03-24 14:30:48 +00:00
|
|
|
/**
|
|
|
|
* @returns The parent surface for which this SubSurfaceInterface is a child
|
2016-04-27 05:43:43 +00:00
|
|
|
* @since 5.22
|
2016-03-24 14:30:48 +00:00
|
|
|
**/
|
|
|
|
QPointer<SurfaceInterface> parentSurface() const;
|
2014-10-14 12:04:35 +00:00
|
|
|
|
2016-03-23 15:59:18 +00:00
|
|
|
/**
|
|
|
|
* @returns the main surface for the sub-surface tree, that is the first surface without a parent
|
2016-04-27 05:43:43 +00:00
|
|
|
* @since 5.22
|
2016-03-23 15:59:18 +00:00
|
|
|
**/
|
|
|
|
QPointer<SurfaceInterface> mainSurface() const;
|
|
|
|
|
2014-10-14 12:04:35 +00:00
|
|
|
Q_SIGNALS:
|
|
|
|
void positionChanged(const QPoint&);
|
2020-04-29 14:56:38 +00:00
|
|
|
void modeChanged(KWaylandServer::SubSurfaceInterface::Mode);
|
2014-10-14 12:04:35 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
friend class SubCompositorInterface;
|
|
|
|
friend class SurfaceInterface;
|
2020-07-04 07:51:33 +00:00
|
|
|
friend class SurfaceInterfacePrivate;
|
2014-11-20 15:40:14 +00:00
|
|
|
explicit SubSurfaceInterface(SubCompositorInterface *parent, wl_resource *parentResource);
|
2014-10-14 12:04:35 +00:00
|
|
|
|
|
|
|
class Private;
|
2014-11-14 08:45:02 +00:00
|
|
|
Private *d_func() const;
|
2014-10-14 12:04:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-04-29 14:56:38 +00:00
|
|
|
Q_DECLARE_METATYPE(KWaylandServer::SubSurfaceInterface::Mode)
|
2014-10-14 12:04:35 +00:00
|
|
|
|
|
|
|
#endif
|