Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 1 | /* |
Kristian Høgsberg | 96aa7da | 2011-09-15 15:43:14 -0400 | [diff] [blame] | 2 | * Copyright © 2008-2011 Kristian Høgsberg |
| 3 | * Copyright © 2010-2011 Intel Corporation |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 4 | * |
Kristian Høgsberg | 96aa7da | 2011-09-15 15:43:14 -0400 | [diff] [blame] | 5 | * Permission to use, copy, modify, distribute, and sell this software and |
| 6 | * its documentation for any purpose is hereby granted without fee, provided |
| 7 | * that the above copyright notice appear in all copies and that both that |
| 8 | * copyright notice and this permission notice appear in supporting |
| 9 | * documentation, and that the name of the copyright holders not be used in |
| 10 | * advertising or publicity pertaining to distribution of the software |
| 11 | * without specific, written prior permission. The copyright holders make |
| 12 | * no representations about the suitability of this software for any |
| 13 | * purpose. It is provided "as is" without express or implied warranty. |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 14 | * |
Kristian Høgsberg | 96aa7da | 2011-09-15 15:43:14 -0400 | [diff] [blame] | 15 | * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS |
| 16 | * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND |
| 17 | * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY |
| 18 | * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER |
| 19 | * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF |
| 20 | * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN |
| 21 | * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 22 | */ |
| 23 | |
Chia-I Wu | 1b6c0ed | 2010-10-29 15:20:18 +0800 | [diff] [blame] | 24 | #ifdef HAVE_CONFIG_H |
| 25 | #include <config.h> |
| 26 | #endif |
| 27 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 28 | #include <stddef.h> |
| 29 | #include <stdio.h> |
| 30 | #include <stdlib.h> |
| 31 | #include <string.h> |
| 32 | #include <fcntl.h> |
| 33 | #include <unistd.h> |
| 34 | #include <errno.h> |
| 35 | #include <sys/time.h> |
Kristian Høgsberg | f9112b2 | 2010-06-14 12:53:43 -0400 | [diff] [blame] | 36 | #include <linux/input.h> |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 37 | |
| 38 | #include <xcb/xcb.h> |
Benjamin Franzke | 3b288af | 2011-02-20 19:58:42 +0100 | [diff] [blame] | 39 | #include <X11/Xlib.h> |
| 40 | #include <X11/Xlib-xcb.h> |
| 41 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 42 | #include <GLES2/gl2.h> |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 43 | #include <EGL/egl.h> |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 44 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 45 | #include "compositor.h" |
Kristian Høgsberg | f02a649 | 2012-03-12 01:05:25 -0400 | [diff] [blame] | 46 | #include "../shared/config-parser.h" |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 47 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 48 | struct x11_compositor { |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 49 | struct weston_compositor base; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 50 | |
Kristian Høgsberg | b5ef591 | 2012-03-28 22:53:49 -0400 | [diff] [blame] | 51 | EGLSurface dummy_pbuffer; |
| 52 | |
Benjamin Franzke | 3b288af | 2011-02-20 19:58:42 +0100 | [diff] [blame] | 53 | Display *dpy; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 54 | xcb_connection_t *conn; |
| 55 | xcb_screen_t *screen; |
| 56 | xcb_cursor_t null_cursor; |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 57 | struct wl_array keys; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 58 | struct wl_event_source *xcb_source; |
| 59 | struct { |
| 60 | xcb_atom_t wm_protocols; |
| 61 | xcb_atom_t wm_normal_hints; |
| 62 | xcb_atom_t wm_size_hints; |
| 63 | xcb_atom_t wm_delete_window; |
Kristian Høgsberg | 24ed621 | 2011-01-26 14:02:31 -0500 | [diff] [blame] | 64 | xcb_atom_t wm_class; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 65 | xcb_atom_t net_wm_name; |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 66 | xcb_atom_t net_wm_icon; |
Kristian Høgsberg | 83eeacb | 2011-06-18 04:20:54 -0400 | [diff] [blame] | 67 | xcb_atom_t net_wm_state; |
| 68 | xcb_atom_t net_wm_state_fullscreen; |
Kristian Høgsberg | 24ed621 | 2011-01-26 14:02:31 -0500 | [diff] [blame] | 69 | xcb_atom_t string; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 70 | xcb_atom_t utf8_string; |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 71 | xcb_atom_t cardinal; |
Daniel Stone | 855028f | 2012-05-01 20:37:10 +0100 | [diff] [blame] | 72 | xcb_atom_t xkb_names; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 73 | } atom; |
| 74 | }; |
| 75 | |
| 76 | struct x11_output { |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 77 | struct weston_output base; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 78 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 79 | xcb_window_t window; |
Benjamin Franzke | 84290d0 | 2011-03-02 10:07:59 +0100 | [diff] [blame] | 80 | EGLSurface egl_surface; |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 81 | struct weston_mode mode; |
Kristian Høgsberg | 06a670f | 2011-10-29 14:39:13 -0400 | [diff] [blame] | 82 | struct wl_event_source *finish_frame_timer; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 83 | }; |
| 84 | |
| 85 | struct x11_input { |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 86 | struct weston_seat base; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 87 | }; |
| 88 | |
| 89 | |
Darxus | 55973f2 | 2010-11-22 21:24:39 -0500 | [diff] [blame] | 90 | static int |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 91 | x11_input_create(struct x11_compositor *c) |
| 92 | { |
| 93 | struct x11_input *input; |
| 94 | |
| 95 | input = malloc(sizeof *input); |
| 96 | if (input == NULL) |
Darxus | 55973f2 | 2010-11-22 21:24:39 -0500 | [diff] [blame] | 97 | return -1; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 98 | |
| 99 | memset(input, 0, sizeof *input); |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 100 | weston_seat_init(&input->base, &c->base); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 101 | |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 102 | c->base.seat = &input->base; |
Darxus | 55973f2 | 2010-11-22 21:24:39 -0500 | [diff] [blame] | 103 | |
| 104 | return 0; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 105 | } |
| 106 | |
Pekka Paalanen | 43c61d8 | 2012-01-03 11:58:34 +0200 | [diff] [blame] | 107 | static void |
| 108 | x11_input_destroy(struct x11_compositor *compositor) |
| 109 | { |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 110 | struct x11_input *input = container_of(compositor->base.seat, |
Pekka Paalanen | 43c61d8 | 2012-01-03 11:58:34 +0200 | [diff] [blame] | 111 | struct x11_input, |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 112 | base); |
Pekka Paalanen | 43c61d8 | 2012-01-03 11:58:34 +0200 | [diff] [blame] | 113 | |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 114 | weston_seat_release(&input->base); |
Pekka Paalanen | 43c61d8 | 2012-01-03 11:58:34 +0200 | [diff] [blame] | 115 | free(input); |
| 116 | } |
| 117 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 118 | static int |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 119 | x11_compositor_init_egl(struct x11_compositor *c) |
| 120 | { |
Kristian Høgsberg | 379b678 | 2010-07-28 22:52:28 -0400 | [diff] [blame] | 121 | EGLint major, minor; |
Benjamin Franzke | 84290d0 | 2011-03-02 10:07:59 +0100 | [diff] [blame] | 122 | EGLint n; |
Benjamin Franzke | 84290d0 | 2011-03-02 10:07:59 +0100 | [diff] [blame] | 123 | EGLint config_attribs[] = { |
| 124 | EGL_SURFACE_TYPE, EGL_WINDOW_BIT, |
| 125 | EGL_RED_SIZE, 1, |
| 126 | EGL_GREEN_SIZE, 1, |
| 127 | EGL_BLUE_SIZE, 1, |
Benjamin Franzke | 84290d0 | 2011-03-02 10:07:59 +0100 | [diff] [blame] | 128 | EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT, |
| 129 | EGL_NONE |
| 130 | }; |
Kristian Høgsberg | 2c28aa5 | 2010-07-28 23:47:54 -0400 | [diff] [blame] | 131 | static const EGLint context_attribs[] = { |
| 132 | EGL_CONTEXT_CLIENT_VERSION, 2, |
| 133 | EGL_NONE |
| 134 | }; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 135 | |
Kristian Høgsberg | b5ef591 | 2012-03-28 22:53:49 -0400 | [diff] [blame] | 136 | static const EGLint pbuffer_attribs[] = { |
| 137 | EGL_WIDTH, 10, |
| 138 | EGL_HEIGHT, 10, |
| 139 | EGL_NONE |
| 140 | }; |
| 141 | |
Benjamin Franzke | 3b288af | 2011-02-20 19:58:42 +0100 | [diff] [blame] | 142 | c->base.display = eglGetDisplay(c->dpy); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 143 | if (c->base.display == NULL) { |
| 144 | fprintf(stderr, "failed to create display\n"); |
| 145 | return -1; |
| 146 | } |
| 147 | |
| 148 | if (!eglInitialize(c->base.display, &major, &minor)) { |
| 149 | fprintf(stderr, "failed to initialize display\n"); |
| 150 | return -1; |
| 151 | } |
| 152 | |
Darxus | 55973f2 | 2010-11-22 21:24:39 -0500 | [diff] [blame] | 153 | if (!eglBindAPI(EGL_OPENGL_ES_API)) { |
| 154 | fprintf(stderr, "failed to bind EGL_OPENGL_ES_API\n"); |
| 155 | return -1; |
| 156 | } |
Benjamin Franzke | 84290d0 | 2011-03-02 10:07:59 +0100 | [diff] [blame] | 157 | if (!eglChooseConfig(c->base.display, config_attribs, |
| 158 | &c->base.config, 1, &n) || n == 0) { |
| 159 | fprintf(stderr, "failed to choose config: %d\n", n); |
| 160 | return -1; |
| 161 | } |
Darxus | 55973f2 | 2010-11-22 21:24:39 -0500 | [diff] [blame] | 162 | |
Benjamin Franzke | 84290d0 | 2011-03-02 10:07:59 +0100 | [diff] [blame] | 163 | c->base.context = eglCreateContext(c->base.display, c->base.config, |
Kristian Høgsberg | 2c28aa5 | 2010-07-28 23:47:54 -0400 | [diff] [blame] | 164 | EGL_NO_CONTEXT, context_attribs); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 165 | if (c->base.context == NULL) { |
| 166 | fprintf(stderr, "failed to create context\n"); |
| 167 | return -1; |
| 168 | } |
| 169 | |
Kristian Høgsberg | b5ef591 | 2012-03-28 22:53:49 -0400 | [diff] [blame] | 170 | c->dummy_pbuffer = eglCreatePbufferSurface(c->base.display, |
| 171 | c->base.config, |
| 172 | pbuffer_attribs); |
Kristian Høgsberg | c0bc844 | 2012-05-17 09:40:23 -0400 | [diff] [blame] | 173 | if (c->dummy_pbuffer == NULL) { |
Kristian Høgsberg | b5ef591 | 2012-03-28 22:53:49 -0400 | [diff] [blame] | 174 | fprintf(stderr, "failed to create dummy pbuffer\n"); |
| 175 | return -1; |
| 176 | } |
| 177 | |
Cooper Yuan | 4577adc | 2012-04-30 14:16:46 -0400 | [diff] [blame] | 178 | if (!eglMakeCurrent(c->base.display, c->dummy_pbuffer, |
| 179 | c->dummy_pbuffer, c->base.context)) { |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 180 | fprintf(stderr, "failed to make context current\n"); |
| 181 | return -1; |
| 182 | } |
| 183 | |
| 184 | return 0; |
| 185 | } |
| 186 | |
Pekka Paalanen | 43c61d8 | 2012-01-03 11:58:34 +0200 | [diff] [blame] | 187 | static void |
| 188 | x11_compositor_fini_egl(struct x11_compositor *compositor) |
| 189 | { |
| 190 | eglMakeCurrent(compositor->base.display, |
| 191 | EGL_NO_SURFACE, EGL_NO_SURFACE, |
| 192 | EGL_NO_CONTEXT); |
| 193 | |
| 194 | eglTerminate(compositor->base.display); |
| 195 | eglReleaseThread(); |
| 196 | } |
| 197 | |
Kristian Høgsberg | 68c479a | 2012-01-25 23:32:28 -0500 | [diff] [blame] | 198 | static void |
Kristian Høgsberg | 6ddcdae | 2012-02-28 22:31:58 -0500 | [diff] [blame] | 199 | x11_output_repaint(struct weston_output *output_base, |
| 200 | pixman_region32_t *damage) |
Kristian Høgsberg | 68c479a | 2012-01-25 23:32:28 -0500 | [diff] [blame] | 201 | { |
Kristian Høgsberg | 06cf6b0 | 2012-01-25 23:47:45 -0500 | [diff] [blame] | 202 | struct x11_output *output = (struct x11_output *)output_base; |
| 203 | struct x11_compositor *compositor = |
| 204 | (struct x11_compositor *)output->base.compositor; |
Kristian Høgsberg | 68c479a | 2012-01-25 23:32:28 -0500 | [diff] [blame] | 205 | struct weston_surface *surface; |
| 206 | |
Kristian Høgsberg | 06cf6b0 | 2012-01-25 23:47:45 -0500 | [diff] [blame] | 207 | if (!eglMakeCurrent(compositor->base.display, output->egl_surface, |
| 208 | output->egl_surface, compositor->base.context)) { |
| 209 | fprintf(stderr, "failed to make current\n"); |
| 210 | return; |
| 211 | } |
| 212 | |
| 213 | wl_list_for_each_reverse(surface, &compositor->base.surface_list, link) |
Kristian Høgsberg | 6ddcdae | 2012-02-28 22:31:58 -0500 | [diff] [blame] | 214 | weston_surface_draw(surface, &output->base, damage); |
Kristian Høgsberg | 06cf6b0 | 2012-01-25 23:47:45 -0500 | [diff] [blame] | 215 | |
Scott Moreau | 062be7e | 2012-04-20 13:37:33 -0600 | [diff] [blame] | 216 | weston_output_do_read_pixels(&output->base); |
| 217 | |
Kristian Høgsberg | 06cf6b0 | 2012-01-25 23:47:45 -0500 | [diff] [blame] | 218 | eglSwapBuffers(compositor->base.display, output->egl_surface); |
| 219 | |
| 220 | wl_event_source_timer_update(output->finish_frame_timer, 10); |
Kristian Høgsberg | 68c479a | 2012-01-25 23:32:28 -0500 | [diff] [blame] | 221 | } |
| 222 | |
Benjamin Franzke | ec4d342 | 2011-03-14 12:07:26 +0100 | [diff] [blame] | 223 | static int |
Kristian Høgsberg | 06a670f | 2011-10-29 14:39:13 -0400 | [diff] [blame] | 224 | finish_frame_handler(void *data) |
| 225 | { |
| 226 | struct x11_output *output = data; |
| 227 | uint32_t msec; |
| 228 | struct timeval tv; |
| 229 | |
| 230 | gettimeofday(&tv, NULL); |
| 231 | msec = tv.tv_sec * 1000 + tv.tv_usec / 1000; |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 232 | weston_output_finish_frame(&output->base, msec); |
Kristian Høgsberg | 06a670f | 2011-10-29 14:39:13 -0400 | [diff] [blame] | 233 | |
| 234 | return 1; |
| 235 | } |
| 236 | |
Matt Roper | 361d2ad | 2011-08-29 13:52:23 -0700 | [diff] [blame] | 237 | static void |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 238 | x11_output_destroy(struct weston_output *output_base) |
Matt Roper | 361d2ad | 2011-08-29 13:52:23 -0700 | [diff] [blame] | 239 | { |
Pekka Paalanen | 2de99e2 | 2012-01-03 11:51:03 +0200 | [diff] [blame] | 240 | struct x11_output *output = (struct x11_output *)output_base; |
| 241 | struct x11_compositor *compositor = |
| 242 | (struct x11_compositor *)output->base.compositor; |
| 243 | |
| 244 | wl_list_remove(&output->base.link); |
| 245 | wl_event_source_remove(output->finish_frame_timer); |
| 246 | |
| 247 | eglDestroySurface(compositor->base.display, output->egl_surface); |
| 248 | |
| 249 | xcb_destroy_window(compositor->conn, output->window); |
| 250 | |
Kristian Høgsberg | 3466bc8 | 2012-01-03 11:29:15 -0500 | [diff] [blame] | 251 | weston_output_destroy(&output->base); |
Pekka Paalanen | 2de99e2 | 2012-01-03 11:51:03 +0200 | [diff] [blame] | 252 | |
| 253 | free(output); |
Matt Roper | 361d2ad | 2011-08-29 13:52:23 -0700 | [diff] [blame] | 254 | } |
Benjamin Franzke | 431da9a | 2011-04-20 11:02:58 +0200 | [diff] [blame] | 255 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 256 | static void |
| 257 | x11_output_set_wm_protocols(struct x11_output *output) |
| 258 | { |
| 259 | xcb_atom_t list[1]; |
| 260 | struct x11_compositor *c = |
| 261 | (struct x11_compositor *) output->base.compositor; |
| 262 | |
| 263 | list[0] = c->atom.wm_delete_window; |
| 264 | xcb_change_property (c->conn, |
| 265 | XCB_PROP_MODE_REPLACE, |
| 266 | output->window, |
| 267 | c->atom.wm_protocols, |
| 268 | XCB_ATOM_ATOM, |
| 269 | 32, |
Kristian Høgsberg | 09e2692 | 2011-12-23 13:33:45 -0500 | [diff] [blame] | 270 | ARRAY_LENGTH(list), |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 271 | list); |
| 272 | } |
| 273 | |
Kristian Høgsberg | 83eeacb | 2011-06-18 04:20:54 -0400 | [diff] [blame] | 274 | static void |
| 275 | x11_output_change_state(struct x11_output *output, int add, xcb_atom_t state) |
| 276 | { |
| 277 | xcb_client_message_event_t event; |
| 278 | struct x11_compositor *c = |
| 279 | (struct x11_compositor *) output->base.compositor; |
| 280 | xcb_screen_iterator_t iter; |
| 281 | |
| 282 | #define _NET_WM_STATE_REMOVE 0 /* remove/unset property */ |
| 283 | #define _NET_WM_STATE_ADD 1 /* add/set property */ |
| 284 | #define _NET_WM_STATE_TOGGLE 2 /* toggle property */ |
| 285 | |
| 286 | memset(&event, 0, sizeof event); |
| 287 | event.response_type = XCB_CLIENT_MESSAGE; |
| 288 | event.format = 32; |
| 289 | event.window = output->window; |
| 290 | event.type = c->atom.net_wm_state; |
| 291 | |
| 292 | event.data.data32[0] = add ? _NET_WM_STATE_ADD : _NET_WM_STATE_REMOVE; |
| 293 | event.data.data32[1] = state; |
| 294 | event.data.data32[2] = 0; |
| 295 | event.data.data32[3] = 0; |
| 296 | event.data.data32[4] = 0; |
| 297 | |
| 298 | iter = xcb_setup_roots_iterator(xcb_get_setup(c->conn)); |
| 299 | xcb_send_event(c->conn, 0, iter.data->root, |
| 300 | XCB_EVENT_MASK_SUBSTRUCTURE_NOTIFY | |
| 301 | XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT, |
| 302 | (void *) &event); |
| 303 | } |
| 304 | |
| 305 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 306 | struct wm_normal_hints { |
| 307 | uint32_t flags; |
| 308 | uint32_t pad[4]; |
| 309 | int32_t min_width, min_height; |
| 310 | int32_t max_width, max_height; |
| 311 | int32_t width_inc, height_inc; |
| 312 | int32_t min_aspect_x, min_aspect_y; |
| 313 | int32_t max_aspect_x, max_aspect_y; |
| 314 | int32_t base_width, base_height; |
| 315 | int32_t win_gravity; |
| 316 | }; |
| 317 | |
| 318 | #define WM_NORMAL_HINTS_MIN_SIZE 16 |
| 319 | #define WM_NORMAL_HINTS_MAX_SIZE 32 |
| 320 | |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 321 | static void |
Kristian Høgsberg | b41d76c | 2011-04-23 15:03:15 -0400 | [diff] [blame] | 322 | x11_output_set_icon(struct x11_compositor *c, |
| 323 | struct x11_output *output, const char *filename) |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 324 | { |
Kristian Høgsberg | f02a649 | 2012-03-12 01:05:25 -0400 | [diff] [blame] | 325 | uint32_t *icon; |
Kristian Høgsberg | b41d76c | 2011-04-23 15:03:15 -0400 | [diff] [blame] | 326 | int32_t width, height; |
Kristian Høgsberg | f02a649 | 2012-03-12 01:05:25 -0400 | [diff] [blame] | 327 | pixman_image_t *image; |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 328 | |
Kristian Høgsberg | f02a649 | 2012-03-12 01:05:25 -0400 | [diff] [blame] | 329 | image = load_image(filename); |
| 330 | if (!image) |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 331 | return; |
Kristian Høgsberg | f02a649 | 2012-03-12 01:05:25 -0400 | [diff] [blame] | 332 | width = pixman_image_get_width(image); |
| 333 | height = pixman_image_get_height(image); |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 334 | icon = malloc(width * height * 4 + 8); |
| 335 | if (!icon) { |
Kristian Høgsberg | f02a649 | 2012-03-12 01:05:25 -0400 | [diff] [blame] | 336 | pixman_image_unref(image); |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 337 | return; |
| 338 | } |
| 339 | |
| 340 | icon[0] = width; |
| 341 | icon[1] = height; |
Kristian Høgsberg | f02a649 | 2012-03-12 01:05:25 -0400 | [diff] [blame] | 342 | memcpy(icon + 2, pixman_image_get_data(image), width * height * 4); |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 343 | xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window, |
| 344 | c->atom.net_wm_icon, c->atom.cardinal, 32, |
| 345 | width * height + 2, icon); |
| 346 | free(icon); |
Kristian Høgsberg | f02a649 | 2012-03-12 01:05:25 -0400 | [diff] [blame] | 347 | pixman_image_unref(image); |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 348 | } |
| 349 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 350 | static int |
Kristian Høgsberg | 1ccd9d2 | 2011-07-21 10:22:13 -0700 | [diff] [blame] | 351 | x11_compositor_create_output(struct x11_compositor *c, int x, int y, |
Kristian Høgsberg | 83eeacb | 2011-06-18 04:20:54 -0400 | [diff] [blame] | 352 | int width, int height, int fullscreen) |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 353 | { |
Kristian Høgsberg | 8600040 | 2012-01-03 23:24:14 -0500 | [diff] [blame] | 354 | static const char name[] = "Weston Compositor"; |
| 355 | static const char class[] = "weston-1\0Weston Compositor"; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 356 | struct x11_output *output; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 357 | xcb_screen_iterator_t iter; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 358 | struct wm_normal_hints normal_hints; |
Kristian Høgsberg | 06a670f | 2011-10-29 14:39:13 -0400 | [diff] [blame] | 359 | struct wl_event_loop *loop; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 360 | uint32_t mask = XCB_CW_EVENT_MASK | XCB_CW_CURSOR; |
| 361 | uint32_t values[2] = { |
| 362 | XCB_EVENT_MASK_KEY_PRESS | |
| 363 | XCB_EVENT_MASK_KEY_RELEASE | |
| 364 | XCB_EVENT_MASK_BUTTON_PRESS | |
| 365 | XCB_EVENT_MASK_BUTTON_RELEASE | |
| 366 | XCB_EVENT_MASK_POINTER_MOTION | |
| 367 | XCB_EVENT_MASK_EXPOSURE | |
Kristian Høgsberg | 86e0989 | 2010-07-07 09:51:11 -0400 | [diff] [blame] | 368 | XCB_EVENT_MASK_STRUCTURE_NOTIFY | |
| 369 | XCB_EVENT_MASK_ENTER_WINDOW | |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 370 | XCB_EVENT_MASK_LEAVE_WINDOW | |
| 371 | XCB_EVENT_MASK_KEYMAP_STATE | |
| 372 | XCB_EVENT_MASK_FOCUS_CHANGE, |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 373 | 0 |
| 374 | }; |
| 375 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 376 | output = malloc(sizeof *output); |
| 377 | if (output == NULL) |
| 378 | return -1; |
| 379 | |
| 380 | memset(output, 0, sizeof *output); |
Kristian Høgsberg | 8f0ce05 | 2011-06-21 11:16:58 -0400 | [diff] [blame] | 381 | |
| 382 | output->mode.flags = |
| 383 | WL_OUTPUT_MODE_CURRENT | WL_OUTPUT_MODE_PREFERRED; |
| 384 | output->mode.width = width; |
| 385 | output->mode.height = height; |
Kristian Høgsberg | c4621b0 | 2012-05-10 12:23:53 -0400 | [diff] [blame] | 386 | output->mode.refresh = 60000; |
Kristian Høgsberg | 8f0ce05 | 2011-06-21 11:16:58 -0400 | [diff] [blame] | 387 | wl_list_init(&output->base.mode_list); |
| 388 | wl_list_insert(&output->base.mode_list, &output->mode.link); |
| 389 | |
| 390 | output->base.current = &output->mode; |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 391 | weston_output_init(&output->base, &c->base, x, y, width, height, |
Benjamin Franzke | 84290d0 | 2011-03-02 10:07:59 +0100 | [diff] [blame] | 392 | WL_OUTPUT_FLIPPED); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 393 | |
| 394 | values[1] = c->null_cursor; |
| 395 | output->window = xcb_generate_id(c->conn); |
| 396 | iter = xcb_setup_roots_iterator(xcb_get_setup(c->conn)); |
| 397 | xcb_create_window(c->conn, |
| 398 | XCB_COPY_FROM_PARENT, |
| 399 | output->window, |
| 400 | iter.data->root, |
| 401 | 0, 0, |
| 402 | width, height, |
| 403 | 0, |
| 404 | XCB_WINDOW_CLASS_INPUT_OUTPUT, |
| 405 | iter.data->root_visual, |
| 406 | mask, values); |
| 407 | |
| 408 | /* Don't resize me. */ |
| 409 | memset(&normal_hints, 0, sizeof normal_hints); |
| 410 | normal_hints.flags = |
| 411 | WM_NORMAL_HINTS_MAX_SIZE | WM_NORMAL_HINTS_MIN_SIZE; |
| 412 | normal_hints.min_width = width; |
| 413 | normal_hints.min_height = height; |
| 414 | normal_hints.max_width = width; |
| 415 | normal_hints.max_height = height; |
| 416 | xcb_change_property (c->conn, XCB_PROP_MODE_REPLACE, output->window, |
| 417 | c->atom.wm_normal_hints, |
| 418 | c->atom.wm_size_hints, 32, |
| 419 | sizeof normal_hints / 4, |
| 420 | (uint8_t *) &normal_hints); |
| 421 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 422 | /* Set window name. Don't bother with non-EWMH WMs. */ |
| 423 | xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window, |
| 424 | c->atom.net_wm_name, c->atom.utf8_string, 8, |
| 425 | strlen(name), name); |
Kristian Høgsberg | 24ed621 | 2011-01-26 14:02:31 -0500 | [diff] [blame] | 426 | xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window, |
| 427 | c->atom.wm_class, c->atom.string, 8, |
| 428 | sizeof class, class); |
| 429 | |
Kristian Høgsberg | 8600040 | 2012-01-03 23:24:14 -0500 | [diff] [blame] | 430 | x11_output_set_icon(c, output, DATADIR "/weston/wayland.png"); |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 431 | |
Kristian Høgsberg | 24ed621 | 2011-01-26 14:02:31 -0500 | [diff] [blame] | 432 | xcb_map_window(c->conn, output->window); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 433 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 434 | x11_output_set_wm_protocols(output); |
| 435 | |
Kristian Høgsberg | 83eeacb | 2011-06-18 04:20:54 -0400 | [diff] [blame] | 436 | if (fullscreen) |
| 437 | x11_output_change_state(output, 1, |
| 438 | c->atom.net_wm_state_fullscreen); |
| 439 | |
Benjamin Franzke | 84290d0 | 2011-03-02 10:07:59 +0100 | [diff] [blame] | 440 | output->egl_surface = |
| 441 | eglCreateWindowSurface(c->base.display, c->base.config, |
| 442 | output->window, NULL); |
| 443 | if (!output->egl_surface) { |
| 444 | fprintf(stderr, "failed to create window surface\n"); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 445 | return -1; |
| 446 | } |
Benjamin Franzke | 84290d0 | 2011-03-02 10:07:59 +0100 | [diff] [blame] | 447 | if (!eglMakeCurrent(c->base.display, output->egl_surface, |
| 448 | output->egl_surface, c->base.context)) { |
| 449 | fprintf(stderr, "failed to make surface current\n"); |
| 450 | return -1; |
| 451 | } |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 452 | |
Kristian Høgsberg | 06a670f | 2011-10-29 14:39:13 -0400 | [diff] [blame] | 453 | loop = wl_display_get_event_loop(c->base.wl_display); |
| 454 | output->finish_frame_timer = |
| 455 | wl_event_loop_add_timer(loop, finish_frame_handler, output); |
| 456 | |
Alex Wu | bd3354b | 2012-04-17 17:20:49 +0800 | [diff] [blame] | 457 | output->base.origin = output->base.current; |
Kristian Høgsberg | 68c479a | 2012-01-25 23:32:28 -0500 | [diff] [blame] | 458 | output->base.repaint = x11_output_repaint; |
Matt Roper | 361d2ad | 2011-08-29 13:52:23 -0700 | [diff] [blame] | 459 | output->base.destroy = x11_output_destroy; |
Jesse Barnes | 5308a5e | 2012-02-09 13:12:57 -0800 | [diff] [blame] | 460 | output->base.assign_planes = NULL; |
Tiago Vignatti | 8e53c7f | 2012-02-29 19:53:50 +0200 | [diff] [blame] | 461 | output->base.set_backlight = NULL; |
| 462 | output->base.set_dpms = NULL; |
Alex Wu | 2dda604 | 2012-04-17 17:20:47 +0800 | [diff] [blame] | 463 | output->base.switch_mode = NULL; |
Benjamin Franzke | eefc36c | 2011-03-11 16:39:20 +0100 | [diff] [blame] | 464 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 465 | wl_list_insert(c->base.output_list.prev, &output->base.link); |
| 466 | |
| 467 | return 0; |
| 468 | } |
| 469 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 470 | static struct x11_output * |
| 471 | x11_compositor_find_output(struct x11_compositor *c, xcb_window_t window) |
| 472 | { |
| 473 | struct x11_output *output; |
| 474 | |
| 475 | wl_list_for_each(output, &c->base.output_list, base.link) { |
| 476 | if (output->window == window) |
| 477 | return output; |
| 478 | } |
| 479 | |
| 480 | return NULL; |
| 481 | } |
| 482 | |
Tiago Vignatti | a3a7162 | 2011-12-08 17:03:17 +0200 | [diff] [blame] | 483 | static void |
| 484 | x11_compositor_deliver_button_event(struct x11_compositor *c, |
| 485 | xcb_generic_event_t *event, int state) |
| 486 | { |
| 487 | xcb_button_press_event_t *button_event = |
| 488 | (xcb_button_press_event_t *) event; |
Daniel Stone | 5d66371 | 2012-05-04 11:21:55 +0100 | [diff] [blame] | 489 | uint32_t button; |
Tiago Vignatti | a3a7162 | 2011-12-08 17:03:17 +0200 | [diff] [blame] | 490 | |
| 491 | switch (button_event->detail) { |
| 492 | default: |
| 493 | button = button_event->detail + BTN_LEFT - 1; |
| 494 | break; |
| 495 | case 2: |
| 496 | button = BTN_MIDDLE; |
| 497 | break; |
| 498 | case 3: |
| 499 | button = BTN_RIGHT; |
| 500 | break; |
| 501 | case 4: |
Scott Moreau | 210d079 | 2012-03-22 10:47:01 -0600 | [diff] [blame] | 502 | if (state) |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 503 | notify_axis(&c->base.seat->seat, |
Scott Moreau | 210d079 | 2012-03-22 10:47:01 -0600 | [diff] [blame] | 504 | weston_compositor_get_time(), |
Daniel Stone | 878f0b7 | 2012-05-30 16:31:57 +0100 | [diff] [blame^] | 505 | WL_POINTER_AXIS_VERTICAL_SCROLL, |
| 506 | wl_fixed_from_int(1)); |
Scott Moreau | 210d079 | 2012-03-22 10:47:01 -0600 | [diff] [blame] | 507 | return; |
Tiago Vignatti | a3a7162 | 2011-12-08 17:03:17 +0200 | [diff] [blame] | 508 | case 5: |
Scott Moreau | 210d079 | 2012-03-22 10:47:01 -0600 | [diff] [blame] | 509 | if (state) |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 510 | notify_axis(&c->base.seat->seat, |
Scott Moreau | 210d079 | 2012-03-22 10:47:01 -0600 | [diff] [blame] | 511 | weston_compositor_get_time(), |
Daniel Stone | 878f0b7 | 2012-05-30 16:31:57 +0100 | [diff] [blame^] | 512 | WL_POINTER_AXIS_VERTICAL_SCROLL, |
| 513 | wl_fixed_from_int(-1)); |
Scott Moreau | 210d079 | 2012-03-22 10:47:01 -0600 | [diff] [blame] | 514 | return; |
Tiago Vignatti | a3a7162 | 2011-12-08 17:03:17 +0200 | [diff] [blame] | 515 | case 6: |
Scott Moreau | 210d079 | 2012-03-22 10:47:01 -0600 | [diff] [blame] | 516 | if (state) |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 517 | notify_axis(&c->base.seat->seat, |
Scott Moreau | 210d079 | 2012-03-22 10:47:01 -0600 | [diff] [blame] | 518 | weston_compositor_get_time(), |
Daniel Stone | 878f0b7 | 2012-05-30 16:31:57 +0100 | [diff] [blame^] | 519 | WL_POINTER_AXIS_HORIZONTAL_SCROLL, |
| 520 | wl_fixed_from_int(1)); |
Scott Moreau | 210d079 | 2012-03-22 10:47:01 -0600 | [diff] [blame] | 521 | return; |
Tiago Vignatti | a3a7162 | 2011-12-08 17:03:17 +0200 | [diff] [blame] | 522 | case 7: |
Scott Moreau | 210d079 | 2012-03-22 10:47:01 -0600 | [diff] [blame] | 523 | if (state) |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 524 | notify_axis(&c->base.seat->seat, |
Scott Moreau | 210d079 | 2012-03-22 10:47:01 -0600 | [diff] [blame] | 525 | weston_compositor_get_time(), |
Daniel Stone | 878f0b7 | 2012-05-30 16:31:57 +0100 | [diff] [blame^] | 526 | WL_POINTER_AXIS_HORIZONTAL_SCROLL, |
| 527 | wl_fixed_from_int(-1)); |
Tiago Vignatti | a3a7162 | 2011-12-08 17:03:17 +0200 | [diff] [blame] | 528 | return; |
| 529 | } |
| 530 | |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 531 | notify_button(&c->base.seat->seat, |
Daniel Stone | 4dbadb1 | 2012-05-30 16:31:51 +0100 | [diff] [blame] | 532 | weston_compositor_get_time(), button, |
| 533 | state ? WL_POINTER_BUTTON_STATE_PRESSED : |
| 534 | WL_POINTER_BUTTON_STATE_RELEASED); |
Tiago Vignatti | a3a7162 | 2011-12-08 17:03:17 +0200 | [diff] [blame] | 535 | } |
| 536 | |
Kristian Høgsberg | ee72482 | 2011-04-21 14:51:44 -0400 | [diff] [blame] | 537 | static int |
| 538 | x11_compositor_next_event(struct x11_compositor *c, |
Kristian Høgsberg | 127d0f0 | 2011-04-22 12:18:13 -0400 | [diff] [blame] | 539 | xcb_generic_event_t **event, uint32_t mask) |
Kristian Høgsberg | ee72482 | 2011-04-21 14:51:44 -0400 | [diff] [blame] | 540 | { |
Kristian Høgsberg | 127d0f0 | 2011-04-22 12:18:13 -0400 | [diff] [blame] | 541 | if (mask & WL_EVENT_READABLE) { |
| 542 | *event = xcb_poll_for_event(c->conn); |
Kristian Høgsberg | ee72482 | 2011-04-21 14:51:44 -0400 | [diff] [blame] | 543 | } else { |
Kristian Høgsberg | 82ed042 | 2011-04-25 15:41:59 -0400 | [diff] [blame] | 544 | #ifdef HAVE_XCB_POLL_FOR_QUEUED_EVENT |
Kristian Høgsberg | 127d0f0 | 2011-04-22 12:18:13 -0400 | [diff] [blame] | 545 | *event = xcb_poll_for_queued_event(c->conn); |
Kristian Høgsberg | 82ed042 | 2011-04-25 15:41:59 -0400 | [diff] [blame] | 546 | #else |
| 547 | *event = xcb_poll_for_event(c->conn); |
| 548 | #endif |
Kristian Høgsberg | ee72482 | 2011-04-21 14:51:44 -0400 | [diff] [blame] | 549 | } |
| 550 | |
| 551 | return *event != NULL; |
| 552 | } |
| 553 | |
Kristian Høgsberg | 127d0f0 | 2011-04-22 12:18:13 -0400 | [diff] [blame] | 554 | static int |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 555 | x11_compositor_handle_event(int fd, uint32_t mask, void *data) |
| 556 | { |
| 557 | struct x11_compositor *c = data; |
| 558 | struct x11_output *output; |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 559 | xcb_generic_event_t *event, *prev; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 560 | xcb_client_message_event_t *client_message; |
| 561 | xcb_motion_notify_event_t *motion_notify; |
Kristian Høgsberg | 93331ff | 2011-01-26 20:35:07 -0500 | [diff] [blame] | 562 | xcb_enter_notify_event_t *enter_notify; |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 563 | xcb_key_press_event_t *key_press, *key_release; |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 564 | xcb_keymap_notify_event_t *keymap_notify; |
| 565 | xcb_focus_in_event_t *focus_in; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 566 | xcb_atom_t atom; |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 567 | uint32_t *k; |
Kristian Høgsberg | 875ab9e | 2012-03-30 11:52:39 -0400 | [diff] [blame] | 568 | uint32_t i, set; |
Kristian Høgsberg | e11bbe4 | 2012-05-09 12:19:04 -0400 | [diff] [blame] | 569 | wl_fixed_t x, y; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 570 | |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 571 | prev = NULL; |
Kristian Høgsberg | 127d0f0 | 2011-04-22 12:18:13 -0400 | [diff] [blame] | 572 | while (x11_compositor_next_event(c, &event, mask)) { |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 573 | switch (prev ? prev->response_type & ~0x80 : 0x80) { |
| 574 | case XCB_KEY_RELEASE: |
| 575 | key_release = (xcb_key_press_event_t *) prev; |
| 576 | key_press = (xcb_key_press_event_t *) event; |
Daniel Stone | 351eb61 | 2012-05-31 15:27:47 -0400 | [diff] [blame] | 577 | /* XXX use XkbSetDetectableAutoRepeat */ |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 578 | if ((event->response_type & ~0x80) == XCB_KEY_PRESS && |
Dima Ryazanov | c224748 | 2011-08-16 17:25:32 -0700 | [diff] [blame] | 579 | key_release->time == key_press->time && |
| 580 | key_release->detail == key_press->detail) { |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 581 | /* Don't deliver the held key release |
| 582 | * event or the new key press event. */ |
| 583 | free(event); |
| 584 | free(prev); |
| 585 | prev = NULL; |
| 586 | continue; |
| 587 | } else { |
| 588 | /* Deliver the held key release now |
| 589 | * and fall through and handle the new |
Kristian Høgsberg | 025f7b8 | 2011-04-19 12:38:22 -0400 | [diff] [blame] | 590 | * event below. */ |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 591 | notify_key(&c->base.seat->seat, |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 592 | weston_compositor_get_time(), |
Daniel Stone | c9785ea | 2012-05-30 16:31:52 +0100 | [diff] [blame] | 593 | key_release->detail - 8, |
| 594 | WL_KEYBOARD_KEY_STATE_RELEASED); |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 595 | free(prev); |
| 596 | prev = NULL; |
| 597 | break; |
| 598 | } |
Kristian Høgsberg | 025f7b8 | 2011-04-19 12:38:22 -0400 | [diff] [blame] | 599 | |
| 600 | case XCB_FOCUS_IN: |
Kristian Høgsberg | 025f7b8 | 2011-04-19 12:38:22 -0400 | [diff] [blame] | 601 | /* assert event is keymap_notify */ |
| 602 | focus_in = (xcb_focus_in_event_t *) prev; |
| 603 | keymap_notify = (xcb_keymap_notify_event_t *) event; |
| 604 | c->keys.size = 0; |
| 605 | for (i = 0; i < ARRAY_LENGTH(keymap_notify->keys) * 8; i++) { |
| 606 | set = keymap_notify->keys[i >> 3] & |
| 607 | (1 << (i & 7)); |
| 608 | if (set) { |
| 609 | k = wl_array_add(&c->keys, sizeof *k); |
| 610 | *k = i; |
| 611 | } |
| 612 | } |
| 613 | |
| 614 | output = x11_compositor_find_output(c, focus_in->event); |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 615 | notify_keyboard_focus(&c->base.seat->seat, &c->keys); |
Kristian Høgsberg | 025f7b8 | 2011-04-19 12:38:22 -0400 | [diff] [blame] | 616 | |
| 617 | free(prev); |
| 618 | prev = NULL; |
| 619 | break; |
| 620 | |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 621 | default: |
| 622 | /* No previous event held */ |
| 623 | break; |
Kristian Høgsberg | 3ddd148 | 2011-04-15 15:48:07 -0400 | [diff] [blame] | 624 | } |
| 625 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 626 | switch (event->response_type & ~0x80) { |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 627 | case XCB_KEY_PRESS: |
| 628 | key_press = (xcb_key_press_event_t *) event; |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 629 | notify_key(&c->base.seat->seat, |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 630 | weston_compositor_get_time(), |
Daniel Stone | c9785ea | 2012-05-30 16:31:52 +0100 | [diff] [blame] | 631 | key_press->detail - 8, |
| 632 | WL_KEYBOARD_KEY_STATE_PRESSED); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 633 | break; |
| 634 | case XCB_KEY_RELEASE: |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 635 | prev = event; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 636 | break; |
| 637 | case XCB_BUTTON_PRESS: |
Tiago Vignatti | a3a7162 | 2011-12-08 17:03:17 +0200 | [diff] [blame] | 638 | x11_compositor_deliver_button_event(c, event, 1); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 639 | break; |
| 640 | case XCB_BUTTON_RELEASE: |
Tiago Vignatti | a3a7162 | 2011-12-08 17:03:17 +0200 | [diff] [blame] | 641 | x11_compositor_deliver_button_event(c, event, 0); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 642 | break; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 643 | case XCB_MOTION_NOTIFY: |
| 644 | motion_notify = (xcb_motion_notify_event_t *) event; |
Kristian Høgsberg | 1ccd9d2 | 2011-07-21 10:22:13 -0700 | [diff] [blame] | 645 | output = x11_compositor_find_output(c, motion_notify->event); |
Kristian Høgsberg | e11bbe4 | 2012-05-09 12:19:04 -0400 | [diff] [blame] | 646 | x = wl_fixed_from_int(output->base.x + motion_notify->event_x); |
| 647 | y = wl_fixed_from_int(output->base.y + motion_notify->event_y); |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 648 | notify_motion(&c->base.seat->seat, |
Kristian Høgsberg | e11bbe4 | 2012-05-09 12:19:04 -0400 | [diff] [blame] | 649 | weston_compositor_get_time(), x, y); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 650 | break; |
| 651 | |
| 652 | case XCB_EXPOSE: |
Benjamin Franzke | 84290d0 | 2011-03-02 10:07:59 +0100 | [diff] [blame] | 653 | /* FIXME: schedule output repaint */ |
| 654 | /* output = x11_compositor_find_output(c, expose->window); */ |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 655 | |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 656 | weston_compositor_schedule_repaint(&c->base); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 657 | break; |
Kristian Høgsberg | 86e0989 | 2010-07-07 09:51:11 -0400 | [diff] [blame] | 658 | |
| 659 | case XCB_ENTER_NOTIFY: |
Kristian Høgsberg | 93331ff | 2011-01-26 20:35:07 -0500 | [diff] [blame] | 660 | enter_notify = (xcb_enter_notify_event_t *) event; |
Kristian Høgsberg | 2dfe626 | 2011-02-08 11:59:53 -0500 | [diff] [blame] | 661 | if (enter_notify->state >= Button1Mask) |
| 662 | break; |
Kristian Høgsberg | 93331ff | 2011-01-26 20:35:07 -0500 | [diff] [blame] | 663 | output = x11_compositor_find_output(c, enter_notify->event); |
Kristian Høgsberg | e11bbe4 | 2012-05-09 12:19:04 -0400 | [diff] [blame] | 664 | x = wl_fixed_from_int(output->base.x + enter_notify->event_x); |
| 665 | y = wl_fixed_from_int(output->base.y + enter_notify->event_y); |
Daniel Stone | 351eb61 | 2012-05-31 15:27:47 -0400 | [diff] [blame] | 666 | /* XXX notify_modifiers() */ |
Kristian Høgsberg | e11bbe4 | 2012-05-09 12:19:04 -0400 | [diff] [blame] | 667 | |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 668 | notify_pointer_focus(&c->base.seat->seat, |
Kristian Høgsberg | e11bbe4 | 2012-05-09 12:19:04 -0400 | [diff] [blame] | 669 | &output->base, x, y); |
Kristian Høgsberg | 86e0989 | 2010-07-07 09:51:11 -0400 | [diff] [blame] | 670 | break; |
| 671 | |
| 672 | case XCB_LEAVE_NOTIFY: |
Kristian Høgsberg | 93331ff | 2011-01-26 20:35:07 -0500 | [diff] [blame] | 673 | enter_notify = (xcb_enter_notify_event_t *) event; |
Kristian Høgsberg | 2dfe626 | 2011-02-08 11:59:53 -0500 | [diff] [blame] | 674 | if (enter_notify->state >= Button1Mask) |
| 675 | break; |
Kristian Høgsberg | 1ccd9d2 | 2011-07-21 10:22:13 -0700 | [diff] [blame] | 676 | output = x11_compositor_find_output(c, enter_notify->event); |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 677 | notify_pointer_focus(&c->base.seat->seat, NULL, 0, 0); |
Kristian Høgsberg | 86e0989 | 2010-07-07 09:51:11 -0400 | [diff] [blame] | 678 | break; |
| 679 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 680 | case XCB_CLIENT_MESSAGE: |
| 681 | client_message = (xcb_client_message_event_t *) event; |
| 682 | atom = client_message->data.data32[0]; |
| 683 | if (atom == c->atom.wm_delete_window) |
Kristian Høgsberg | 50dc698 | 2010-12-01 16:43:56 -0500 | [diff] [blame] | 684 | wl_display_terminate(c->base.wl_display); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 685 | break; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 686 | |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 687 | case XCB_FOCUS_IN: |
| 688 | focus_in = (xcb_focus_in_event_t *) event; |
| 689 | if (focus_in->mode == XCB_NOTIFY_MODE_WHILE_GRABBED) |
| 690 | break; |
| 691 | |
Kristian Høgsberg | 025f7b8 | 2011-04-19 12:38:22 -0400 | [diff] [blame] | 692 | prev = event; |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 693 | break; |
| 694 | |
| 695 | case XCB_FOCUS_OUT: |
| 696 | focus_in = (xcb_focus_in_event_t *) event; |
Kristian Høgsberg | 42e40ae | 2011-12-19 14:36:50 -0500 | [diff] [blame] | 697 | if (focus_in->mode == XCB_NOTIFY_MODE_WHILE_GRABBED || |
| 698 | focus_in->mode == XCB_NOTIFY_MODE_UNGRAB) |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 699 | break; |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 700 | notify_keyboard_focus(&c->base.seat->seat, NULL); |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 701 | break; |
| 702 | |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 703 | default: |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 704 | break; |
| 705 | } |
| 706 | |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 707 | if (prev != event) |
Kristian Høgsberg | 3ddd148 | 2011-04-15 15:48:07 -0400 | [diff] [blame] | 708 | free (event); |
| 709 | } |
| 710 | |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 711 | switch (prev ? prev->response_type & ~0x80 : 0x80) { |
| 712 | case XCB_KEY_RELEASE: |
| 713 | key_release = (xcb_key_press_event_t *) prev; |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 714 | notify_key(&c->base.seat->seat, |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 715 | weston_compositor_get_time(), |
Daniel Stone | c9785ea | 2012-05-30 16:31:52 +0100 | [diff] [blame] | 716 | key_release->detail - 8, |
| 717 | WL_KEYBOARD_KEY_STATE_RELEASED); |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 718 | free(prev); |
| 719 | prev = NULL; |
| 720 | break; |
| 721 | default: |
| 722 | break; |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 723 | } |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 724 | |
Kristian Høgsberg | 127d0f0 | 2011-04-22 12:18:13 -0400 | [diff] [blame] | 725 | return event != NULL; |
Kristian Høgsberg | ee72482 | 2011-04-21 14:51:44 -0400 | [diff] [blame] | 726 | } |
| 727 | |
Daniel Stone | 855028f | 2012-05-01 20:37:10 +0100 | [diff] [blame] | 728 | static void |
| 729 | x11_compositor_get_keymap(struct x11_compositor *c) |
| 730 | { |
| 731 | xcb_get_property_cookie_t cookie; |
| 732 | xcb_get_property_reply_t *reply; |
| 733 | xcb_generic_error_t *error; |
| 734 | const char *value_all, *value_part; |
| 735 | int length_all, length_part; |
| 736 | |
| 737 | cookie = xcb_get_property(c->conn, 0, c->screen->root, |
| 738 | c->atom.xkb_names, c->atom.string, 0, 1024); |
| 739 | reply = xcb_get_property_reply(c->conn, cookie, &error); |
| 740 | if (reply == NULL) |
| 741 | return; |
| 742 | |
| 743 | value_all = xcb_get_property_value(reply); |
| 744 | length_all = xcb_get_property_value_length(reply); |
| 745 | value_part = value_all; |
| 746 | |
| 747 | #define copy_prop_value(to) \ |
| 748 | length_part = strlen(value_part); \ |
| 749 | if (value_part + length_part > (value_all + length_all) && \ |
| 750 | length_part > 0 && c->base.xkb_info.names.to == NULL) { \ |
Kristian Høgsberg | bef52d1 | 2012-05-11 11:24:29 -0400 | [diff] [blame] | 751 | free((char *) c->base.xkb_info.names.to); \ |
Daniel Stone | 855028f | 2012-05-01 20:37:10 +0100 | [diff] [blame] | 752 | c->base.xkb_info.names.to = strdup(value_part); \ |
| 753 | } \ |
| 754 | value_part += length_part + 1; |
| 755 | |
| 756 | copy_prop_value(rules); |
| 757 | copy_prop_value(model); |
| 758 | copy_prop_value(layout); |
| 759 | copy_prop_value(variant); |
| 760 | copy_prop_value(options); |
| 761 | |
| 762 | #undef copy_prop_value |
| 763 | } |
| 764 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 765 | #define F(field) offsetof(struct x11_compositor, field) |
| 766 | |
| 767 | static void |
| 768 | x11_compositor_get_resources(struct x11_compositor *c) |
| 769 | { |
| 770 | static const struct { const char *name; int offset; } atoms[] = { |
| 771 | { "WM_PROTOCOLS", F(atom.wm_protocols) }, |
| 772 | { "WM_NORMAL_HINTS", F(atom.wm_normal_hints) }, |
| 773 | { "WM_SIZE_HINTS", F(atom.wm_size_hints) }, |
| 774 | { "WM_DELETE_WINDOW", F(atom.wm_delete_window) }, |
Kristian Høgsberg | 24ed621 | 2011-01-26 14:02:31 -0500 | [diff] [blame] | 775 | { "WM_CLASS", F(atom.wm_class) }, |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 776 | { "_NET_WM_NAME", F(atom.net_wm_name) }, |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 777 | { "_NET_WM_ICON", F(atom.net_wm_icon) }, |
Kristian Høgsberg | 83eeacb | 2011-06-18 04:20:54 -0400 | [diff] [blame] | 778 | { "_NET_WM_STATE", F(atom.net_wm_state) }, |
| 779 | { "_NET_WM_STATE_FULLSCREEN", F(atom.net_wm_state_fullscreen) }, |
Kristian Høgsberg | 24ed621 | 2011-01-26 14:02:31 -0500 | [diff] [blame] | 780 | { "STRING", F(atom.string) }, |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 781 | { "UTF8_STRING", F(atom.utf8_string) }, |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 782 | { "CARDINAL", F(atom.cardinal) }, |
Daniel Stone | 855028f | 2012-05-01 20:37:10 +0100 | [diff] [blame] | 783 | { "_XKB_RULES_NAMES", F(atom.xkb_names) }, |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 784 | }; |
| 785 | |
Kristian Høgsberg | 09e2692 | 2011-12-23 13:33:45 -0500 | [diff] [blame] | 786 | xcb_intern_atom_cookie_t cookies[ARRAY_LENGTH(atoms)]; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 787 | xcb_intern_atom_reply_t *reply; |
| 788 | xcb_pixmap_t pixmap; |
| 789 | xcb_gc_t gc; |
Kristian Høgsberg | 875ab9e | 2012-03-30 11:52:39 -0400 | [diff] [blame] | 790 | unsigned int i; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 791 | uint8_t data[] = { 0, 0, 0, 0 }; |
| 792 | |
Kristian Høgsberg | 09e2692 | 2011-12-23 13:33:45 -0500 | [diff] [blame] | 793 | for (i = 0; i < ARRAY_LENGTH(atoms); i++) |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 794 | cookies[i] = xcb_intern_atom (c->conn, 0, |
| 795 | strlen(atoms[i].name), |
| 796 | atoms[i].name); |
| 797 | |
Kristian Høgsberg | 09e2692 | 2011-12-23 13:33:45 -0500 | [diff] [blame] | 798 | for (i = 0; i < ARRAY_LENGTH(atoms); i++) { |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 799 | reply = xcb_intern_atom_reply (c->conn, cookies[i], NULL); |
| 800 | *(xcb_atom_t *) ((char *) c + atoms[i].offset) = reply->atom; |
| 801 | free(reply); |
| 802 | } |
| 803 | |
| 804 | pixmap = xcb_generate_id(c->conn); |
| 805 | gc = xcb_generate_id(c->conn); |
| 806 | xcb_create_pixmap(c->conn, 1, pixmap, c->screen->root, 1, 1); |
| 807 | xcb_create_gc(c->conn, gc, pixmap, 0, NULL); |
| 808 | xcb_put_image(c->conn, XCB_IMAGE_FORMAT_XY_PIXMAP, |
| 809 | pixmap, gc, 1, 1, 0, 0, 0, 32, sizeof data, data); |
| 810 | c->null_cursor = xcb_generate_id(c->conn); |
| 811 | xcb_create_cursor (c->conn, c->null_cursor, |
| 812 | pixmap, pixmap, 0, 0, 0, 0, 0, 0, 1, 1); |
| 813 | xcb_free_gc(c->conn, gc); |
| 814 | xcb_free_pixmap(c->conn, pixmap); |
Daniel Stone | 855028f | 2012-05-01 20:37:10 +0100 | [diff] [blame] | 815 | |
| 816 | x11_compositor_get_keymap(c); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 817 | } |
| 818 | |
Kristian Høgsberg | caa6442 | 2010-12-01 16:52:15 -0500 | [diff] [blame] | 819 | static void |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 820 | x11_destroy(struct weston_compositor *ec) |
Kristian Høgsberg | caa6442 | 2010-12-01 16:52:15 -0500 | [diff] [blame] | 821 | { |
Pekka Paalanen | 43c61d8 | 2012-01-03 11:58:34 +0200 | [diff] [blame] | 822 | struct x11_compositor *compositor = (struct x11_compositor *)ec; |
Matt Roper | 361d2ad | 2011-08-29 13:52:23 -0700 | [diff] [blame] | 823 | |
Pekka Paalanen | 43c61d8 | 2012-01-03 11:58:34 +0200 | [diff] [blame] | 824 | wl_event_source_remove(compositor->xcb_source); |
| 825 | x11_input_destroy(compositor); |
| 826 | |
Kristian Høgsberg | 3466bc8 | 2012-01-03 11:29:15 -0500 | [diff] [blame] | 827 | weston_compositor_shutdown(ec); /* destroys outputs, too */ |
Pekka Paalanen | 43c61d8 | 2012-01-03 11:58:34 +0200 | [diff] [blame] | 828 | |
| 829 | x11_compositor_fini_egl(compositor); |
| 830 | |
| 831 | XCloseDisplay(compositor->dpy); |
Kristian Høgsberg | caa6442 | 2010-12-01 16:52:15 -0500 | [diff] [blame] | 832 | free(ec); |
| 833 | } |
| 834 | |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 835 | static struct weston_compositor * |
Kristian Høgsberg | 83eeacb | 2011-06-18 04:20:54 -0400 | [diff] [blame] | 836 | x11_compositor_create(struct wl_display *display, |
Kristian Høgsberg | 1ccd9d2 | 2011-07-21 10:22:13 -0700 | [diff] [blame] | 837 | int width, int height, int count, int fullscreen) |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 838 | { |
| 839 | struct x11_compositor *c; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 840 | xcb_screen_iterator_t s; |
Kristian Høgsberg | 1ccd9d2 | 2011-07-21 10:22:13 -0700 | [diff] [blame] | 841 | int i, x; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 842 | |
| 843 | c = malloc(sizeof *c); |
| 844 | if (c == NULL) |
| 845 | return NULL; |
| 846 | |
| 847 | memset(c, 0, sizeof *c); |
Benjamin Franzke | 3b288af | 2011-02-20 19:58:42 +0100 | [diff] [blame] | 848 | |
| 849 | c->dpy = XOpenDisplay(NULL); |
Cyril Brulebois | 2079829 | 2011-04-06 18:05:40 +0200 | [diff] [blame] | 850 | if (c->dpy == NULL) |
| 851 | return NULL; |
| 852 | |
Benjamin Franzke | 3b288af | 2011-02-20 19:58:42 +0100 | [diff] [blame] | 853 | c->conn = XGetXCBConnection(c->dpy); |
Benjamin Franzke | e997c5f | 2011-03-25 14:06:37 +0100 | [diff] [blame] | 854 | XSetEventQueueOwner(c->dpy, XCBOwnsEventQueue); |
| 855 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 856 | if (xcb_connection_has_error(c->conn)) |
| 857 | return NULL; |
| 858 | |
| 859 | s = xcb_setup_roots_iterator(xcb_get_setup(c->conn)); |
| 860 | c->screen = s.data; |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 861 | wl_array_init(&c->keys); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 862 | |
| 863 | x11_compositor_get_resources(c); |
| 864 | |
Kristian Høgsberg | 5fcd0aa | 2010-08-09 14:43:33 -0400 | [diff] [blame] | 865 | c->base.wl_display = display; |
Tiago Vignatti | 997ce64 | 2010-11-10 02:42:35 +0200 | [diff] [blame] | 866 | if (x11_compositor_init_egl(c) < 0) |
Darxus | 55973f2 | 2010-11-22 21:24:39 -0500 | [diff] [blame] | 867 | return NULL; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 868 | |
Kristian Høgsberg | 8525a50 | 2011-01-14 16:20:21 -0500 | [diff] [blame] | 869 | c->base.destroy = x11_destroy; |
Kristian Høgsberg | 8525a50 | 2011-01-14 16:20:21 -0500 | [diff] [blame] | 870 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 871 | /* Can't init base class until we have a current egl context */ |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 872 | if (weston_compositor_init(&c->base, display) < 0) |
Kristian Høgsberg | a946821 | 2010-06-14 21:03:11 -0400 | [diff] [blame] | 873 | return NULL; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 874 | |
Kristian Høgsberg | 1ccd9d2 | 2011-07-21 10:22:13 -0700 | [diff] [blame] | 875 | for (i = 0, x = 0; i < count; i++) { |
| 876 | if (x11_compositor_create_output(c, x, 0, width, height, |
| 877 | fullscreen) < 0) |
| 878 | return NULL; |
| 879 | x += width; |
| 880 | } |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 881 | |
Darxus | 55973f2 | 2010-11-22 21:24:39 -0500 | [diff] [blame] | 882 | if (x11_input_create(c) < 0) |
| 883 | return NULL; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 884 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 885 | c->xcb_source = |
Kristian Høgsberg | 22ba60e | 2012-03-12 01:18:24 -0400 | [diff] [blame] | 886 | wl_event_loop_add_fd(c->base.input_loop, |
| 887 | xcb_get_file_descriptor(c->conn), |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 888 | WL_EVENT_READABLE, |
| 889 | x11_compositor_handle_event, c); |
Kristian Høgsberg | 127d0f0 | 2011-04-22 12:18:13 -0400 | [diff] [blame] | 890 | wl_event_source_check(c->xcb_source); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 891 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 892 | return &c->base; |
| 893 | } |
Kristian Høgsberg | 1c56218 | 2011-05-02 22:09:20 -0400 | [diff] [blame] | 894 | |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 895 | WL_EXPORT struct weston_compositor * |
Kristian Høgsberg | bcacef1 | 2012-03-11 21:05:57 -0400 | [diff] [blame] | 896 | backend_init(struct wl_display *display, int argc, char *argv[]) |
Kristian Høgsberg | 1c56218 | 2011-05-02 22:09:20 -0400 | [diff] [blame] | 897 | { |
Kristian Høgsberg | bcacef1 | 2012-03-11 21:05:57 -0400 | [diff] [blame] | 898 | int width = 1024, height = 640, fullscreen = 0, count = 1; |
Kristian Høgsberg | 1c56218 | 2011-05-02 22:09:20 -0400 | [diff] [blame] | 899 | |
Kristian Høgsberg | bcacef1 | 2012-03-11 21:05:57 -0400 | [diff] [blame] | 900 | const struct weston_option x11_options[] = { |
| 901 | { WESTON_OPTION_INTEGER, "width", 0, &width }, |
| 902 | { WESTON_OPTION_INTEGER, "height", 0, &height }, |
| 903 | { WESTON_OPTION_BOOLEAN, "fullscreen", 0, &fullscreen }, |
| 904 | { WESTON_OPTION_INTEGER, "output-count", 0, &count }, |
Kristian Høgsberg | 83eeacb | 2011-06-18 04:20:54 -0400 | [diff] [blame] | 905 | }; |
Kristian Høgsberg | bcacef1 | 2012-03-11 21:05:57 -0400 | [diff] [blame] | 906 | |
| 907 | parse_options(x11_options, ARRAY_LENGTH(x11_options), argc, argv); |
Kristian Høgsberg | 1c56218 | 2011-05-02 22:09:20 -0400 | [diff] [blame] | 908 | |
Kristian Høgsberg | 1ccd9d2 | 2011-07-21 10:22:13 -0700 | [diff] [blame] | 909 | return x11_compositor_create(display, |
| 910 | width, height, count, fullscreen); |
Kristian Høgsberg | 1c56218 | 2011-05-02 22:09:20 -0400 | [diff] [blame] | 911 | } |