blob: 27042b25081af7397dcc9ae62e0258de56a4c66b [file] [log] [blame]
U. Artie Eoff1ba9b382012-12-07 13:50:32 -08001/*
2 * Copyright © 2012 Intel Corporation
3 *
4 * Permission to use, copy, modify, distribute, and sell this software and
5 * its documentation for any purpose is hereby granted without fee, provided
6 * that the above copyright notice appear in all copies and that both that
7 * copyright notice and this permission notice appear in supporting
8 * documentation, and that the name of the copyright holders not be used in
9 * advertising or publicity pertaining to distribution of the software
10 * without specific, written prior permission. The copyright holders make
11 * no representations about the suitability of this software for any
12 * purpose. It is provided "as is" without express or implied warranty.
13 *
14 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
15 * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
16 * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
17 * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
18 * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
19 * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
20 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
21 */
22
23#ifndef _WESTON_TEST_CLIENT_HELPER_H_
24#define _WESTON_TEST_CLIENT_HELPER_H_
25
26#include <assert.h>
27#include "weston-test-runner.h"
28#include "wayland-test-client-protocol.h"
29
30struct client {
31 struct wl_display *wl_display;
32 struct wl_registry *wl_registry;
33 struct wl_compositor *wl_compositor;
34 struct wl_shm *wl_shm;
35 struct test *test;
36 struct input *input;
37 struct output *output;
38 struct surface *surface;
39 int has_argb;
Kristian Høgsberg1cb3df42012-12-11 23:03:56 -050040 struct wl_list global_list;
41};
42
43struct global {
44 uint32_t name;
45 char *interface;
46 uint32_t version;
47 struct wl_list link;
U. Artie Eoff1ba9b382012-12-07 13:50:32 -080048};
49
50struct test {
51 struct wl_test *wl_test;
52 int pointer_x;
53 int pointer_y;
54};
55
56struct input {
57 struct wl_seat *wl_seat;
58 struct pointer *pointer;
59 struct keyboard *keyboard;
60};
61
62struct pointer {
63 struct wl_pointer *wl_pointer;
64 struct surface *focus;
65 int x;
66 int y;
67 uint32_t button;
68 uint32_t state;
69};
70
71struct keyboard {
72 struct wl_keyboard *wl_keyboard;
73 struct surface *focus;
74 uint32_t key;
75 uint32_t state;
76 uint32_t mods_depressed;
77 uint32_t mods_latched;
78 uint32_t mods_locked;
79 uint32_t group;
80};
81
82struct output {
83 struct wl_output *wl_output;
84 int x;
85 int y;
86 int width;
87 int height;
88};
89
90struct surface {
91 struct wl_surface *wl_surface;
92 struct wl_buffer *wl_buffer;
93 struct output *output;
94 int x;
95 int y;
96 int width;
97 int height;
98 void *data;
99};
100
101struct client *
102client_create(int x, int y, int width, int height);
103
104int
105surface_contains(struct surface *surface, int x, int y);
106
107void
U. Artie Eoff1ba9b382012-12-07 13:50:32 -0800108move_client(struct client *client, int x, int y);
109
Pekka Paalanenf2aa64f2012-12-12 14:26:41 +0200110#define client_roundtrip(c) do { \
111 assert(wl_display_roundtrip((c)->wl_display) >= 0); \
112} while (0)
U. Artie Eoff1ba9b382012-12-07 13:50:32 -0800113
114#endif