2014-08-28 07:52:35 +00:00
|
|
|
/********************************************************************
|
2014-09-17 13:57:56 +00:00
|
|
|
Copyright 2014 Martin Gräßlin <mgraesslin@kde.org>
|
2014-08-28 07:52:35 +00:00
|
|
|
|
2014-09-17 13:57:56 +00:00
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) version 3, or any
|
|
|
|
later version accepted by the membership of KDE e.V. (or its
|
|
|
|
successor approved by the membership of KDE e.V.), which shall
|
|
|
|
act as a proxy defined in Section 6 of version 3 of the license.
|
2014-08-28 07:52:35 +00:00
|
|
|
|
2014-09-17 13:57:56 +00:00
|
|
|
This library is distributed in the hope that it will be useful,
|
2014-08-28 07:52:35 +00:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2014-09-17 13:57:56 +00:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
2014-08-28 07:52:35 +00:00
|
|
|
|
2014-09-17 13:57:56 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2014-08-28 07:52:35 +00:00
|
|
|
*********************************************************************/
|
2014-09-17 14:20:56 +00:00
|
|
|
#ifndef WAYLAND_SERVER_COMPOSITOR_INTERFACE_H
|
|
|
|
#define WAYLAND_SERVER_COMPOSITOR_INTERFACE_H
|
2014-08-28 07:52:35 +00:00
|
|
|
|
|
|
|
#include "surface_interface.h"
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
|
|
|
#include <wayland-server.h>
|
|
|
|
|
2014-09-17 13:10:43 +00:00
|
|
|
#include <kwaylandserver_export.h>
|
|
|
|
|
2014-09-17 14:10:38 +00:00
|
|
|
namespace KWayland
|
2014-08-28 07:52:35 +00:00
|
|
|
{
|
2014-09-17 14:10:38 +00:00
|
|
|
namespace Server
|
2014-08-28 07:52:35 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
class Display;
|
|
|
|
class SurfaceInterface;
|
|
|
|
|
2014-09-17 13:10:43 +00:00
|
|
|
class KWAYLANDSERVER_EXPORT CompositorInterface : public QObject
|
2014-08-28 07:52:35 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
virtual ~CompositorInterface();
|
|
|
|
|
|
|
|
void create();
|
|
|
|
void destroy();
|
|
|
|
bool isValid() const {
|
|
|
|
return m_compositor != nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
Q_SIGNALS:
|
2014-09-17 14:10:38 +00:00
|
|
|
void surfaceCreated(KWayland::Server::SurfaceInterface*);
|
2014-08-28 07:52:35 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
explicit CompositorInterface(Display *display, QObject *parent = nullptr);
|
|
|
|
friend class Display;
|
|
|
|
static void bind(wl_client *client, void *data, uint32_t version, uint32_t id);
|
|
|
|
static void unbind(wl_resource *resource);
|
|
|
|
static void createSurfaceCallback(wl_client *client, wl_resource *resource, uint32_t id);
|
|
|
|
static void createRegionCallback(wl_client *client, wl_resource *resource, uint32_t id);
|
|
|
|
void bind(wl_client *client, uint32_t version, uint32_t id);
|
|
|
|
void createSurface(wl_client *client, wl_resource *resource, uint32_t id);
|
|
|
|
void createRegion(wl_client *client, wl_resource *resource, uint32_t id);
|
|
|
|
static CompositorInterface *cast(wl_resource *r) {
|
|
|
|
return reinterpret_cast<CompositorInterface*>(wl_resource_get_user_data(r));
|
|
|
|
}
|
|
|
|
static const struct wl_compositor_interface s_interface;
|
|
|
|
Display *m_display;
|
|
|
|
wl_global *m_compositor;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|