summaryrefslogtreecommitdiffstats
path: root/tests/auto/client/client/mockshell.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/client/client/mockshell.cpp')
-rw-r--r--tests/auto/client/client/mockshell.cpp180
1 files changed, 180 insertions, 0 deletions
diff --git a/tests/auto/client/client/mockshell.cpp b/tests/auto/client/client/mockshell.cpp
new file mode 100644
index 000000000..d5eede22e
--- /dev/null
+++ b/tests/auto/client/client/mockshell.cpp
@@ -0,0 +1,180 @@
+/****************************************************************************
+**
+** Copyright (C) 2016 The Qt Company Ltd.
+** Contact: https://www.qt.io/licensing/
+**
+** This file is part of the test suite of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:GPL-EXCEPT$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see https://www.qt.io/terms-conditions. For further
+** information use the contact form at https://www.qt.io/contact-us.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 3 as published by the Free Software
+** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
+** included in the packaging of this file. Please review the following
+** information to ensure the GNU General Public License requirements will
+** be met: https://www.gnu.org/licenses/gpl-3.0.html.
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#include "mockcompositor.h"
+#include "mocksurface.h"
+
+namespace Impl {
+
+void shell_surface_pong(wl_client *client,
+ wl_resource *surface_resource,
+ uint32_t serial)
+{
+ Q_UNUSED(client);
+ Q_UNUSED(surface_resource);
+ Q_UNUSED(serial);
+}
+
+void shell_surface_move(wl_client *client,
+ wl_resource *surface_resource,
+ wl_resource *input_device_resource,
+ uint32_t time)
+{
+ Q_UNUSED(client);
+ Q_UNUSED(surface_resource);
+ Q_UNUSED(input_device_resource);
+ Q_UNUSED(time);
+}
+
+void shell_surface_resize(wl_client *client,
+ wl_resource *surface_resource,
+ wl_resource *input_device_resource,
+ uint32_t time,
+ uint32_t edges)
+{
+ Q_UNUSED(client);
+ Q_UNUSED(surface_resource);
+ Q_UNUSED(input_device_resource);
+ Q_UNUSED(time);
+ Q_UNUSED(edges);
+
+}
+
+void shell_surface_set_toplevel(wl_client *client,
+ wl_resource *surface_resource)
+{
+ Q_UNUSED(client);
+ Q_UNUSED(surface_resource);
+}
+
+void shell_surface_set_transient(wl_client *client,
+ wl_resource *surface_resource,
+ wl_resource *parent_surface_resource,
+ int x,
+ int y,
+ uint32_t flags)
+{
+
+ Q_UNUSED(client);
+ Q_UNUSED(surface_resource);
+ Q_UNUSED(parent_surface_resource);
+ Q_UNUSED(x);
+ Q_UNUSED(y);
+ Q_UNUSED(flags);
+}
+
+void shell_surface_set_fullscreen(wl_client *client,
+ wl_resource *surface_resource,
+ uint32_t method,
+ uint32_t framerate,
+ wl_resource *output)
+{
+ Q_UNUSED(client);
+ Q_UNUSED(surface_resource);
+ Q_UNUSED(method);
+ Q_UNUSED(framerate);
+ Q_UNUSED(output);
+}
+
+void shell_surface_set_popup(wl_client *client, wl_resource *resource,
+ wl_resource *input_device, uint32_t time,
+ wl_resource *parent,
+ int32_t x, int32_t y,
+ uint32_t flags)
+{
+ Q_UNUSED(client);
+ Q_UNUSED(resource);
+ Q_UNUSED(input_device);
+ Q_UNUSED(time);
+ Q_UNUSED(parent);
+ Q_UNUSED(x);
+ Q_UNUSED(y);
+ Q_UNUSED(flags);
+}
+
+void shell_surface_set_maximized(wl_client *client,
+ wl_resource *surface_resource,
+ wl_resource *output)
+{
+ Q_UNUSED(client);
+ Q_UNUSED(surface_resource);
+ Q_UNUSED(output);
+}
+
+void shell_surface_set_title(wl_client *client,
+ wl_resource *surface_resource,
+ const char *title)
+{
+ Q_UNUSED(client);
+ Q_UNUSED(surface_resource);
+ Q_UNUSED(title);
+}
+
+void shell_surface_set_class(wl_client *client,
+ wl_resource *surface_resource,
+ const char *class_)
+{
+ Q_UNUSED(client);
+ Q_UNUSED(surface_resource);
+ Q_UNUSED(class_);
+}
+
+static void get_shell_surface(wl_client *client, wl_resource *compositorResource, uint32_t id, wl_resource *surfaceResource)
+{
+ static const struct wl_shell_surface_interface shellSurfaceInterface = {
+ shell_surface_pong,
+ shell_surface_move,
+ shell_surface_resize,
+ shell_surface_set_toplevel,
+ shell_surface_set_transient,
+ shell_surface_set_fullscreen,
+ shell_surface_set_popup,
+ shell_surface_set_maximized,
+ shell_surface_set_title,
+ shell_surface_set_class
+ };
+
+ int version = wl_resource_get_version(compositorResource);
+ wl_resource *shellSurface = wl_resource_create(client, &wl_shell_surface_interface, version, id);
+ wl_resource_set_implementation(shellSurface, &shellSurfaceInterface, surfaceResource->data, nullptr);
+ Surface *surf = Surface::fromResource(surfaceResource);
+ surf->map();
+}
+
+void Compositor::bindShell(wl_client *client, void *compositorData, uint32_t version, uint32_t id)
+{
+ static const struct wl_shell_interface shellInterface = {
+ get_shell_surface
+ };
+
+ wl_resource *resource = wl_resource_create(client, &wl_shell_interface, static_cast<int>(version), id);
+ wl_resource_set_implementation(resource, &shellInterface, compositorData, nullptr);
+}
+
+}
+