summaryrefslogtreecommitdiffstats
path: root/tests/auto/client/client/mockshell.cpp
diff options
context:
space:
mode:
authorPaul Olav Tvete <paul.tvete@qt.io>2016-08-05 11:53:43 +0200
committerJędrzej Nowacki <jedrzej.nowacki@theqtcompany.com>2016-08-19 11:46:04 +0000
commit2cc758045e322873ad58f675a70c8d8366b5c318 (patch)
tree91843191d0d8dc5be0b243fd5863f7b4a5fdede2 /tests/auto/client/client/mockshell.cpp
parent9b7a5b428ba528dfb568af99b09e9e441f482e78 (diff)
Fix autotest directory structure
The client and server parts are separate modules, so they need separate top-level directories under tests/auto. This also makes it easier to add new tests later. Change-Id: I393341b6f4e8fc3afa480653f3482192e002e425 Reviewed-by: Giulio Camuffo <giulio.camuffo@kdab.com>
Diffstat (limited to 'tests/auto/client/client/mockshell.cpp')
-rw-r--r--tests/auto/client/client/mockshell.cpp184
1 files changed, 184 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..dfc39e5e4
--- /dev/null
+++ b/tests/auto/client/client/mockshell.cpp
@@ -0,0 +1,184 @@
+/****************************************************************************
+**
+** Copyright (C) 2015 The Qt Company Ltd.
+** Contact: http://www.qt.io/licensing/
+**
+** This file is part of the test suite of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL21$
+** 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 http://www.qt.io/terms-conditions. For further
+** information use the contact form at http://www.qt.io/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 or version 3 as published by the Free
+** Software Foundation and appearing in the file LICENSE.LGPLv21 and
+** LICENSE.LGPLv3 included in the packaging of this file. Please review the
+** following information to ensure the GNU Lesser General Public License
+** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** As a special exception, The Qt Company gives you certain additional
+** rights. These rights are described in The Qt Company LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** $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
+ };
+
+ Q_UNUSED(compositorResource);
+ wl_client_add_object(client, &wl_shell_surface_interface, &shellSurfaceInterface, id, surfaceResource->data);
+ 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
+ };
+
+ Q_UNUSED(version);
+ wl_client_add_object(client, &wl_shell_interface, &shellInterface, id, compositorData);
+}
+
+}
+