You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

403 lines
13 KiB

12 years ago
12 years ago
12 years ago
  1. /*
  2. * vim:ts=4:sw=4:expandtab
  3. *
  4. * © 2010 Michael Stapelberg
  5. *
  6. * xcb.c: contains all functions which use XCB to talk to X11. Mostly wrappers
  7. * around the rather complicated/ugly parts of the XCB API.
  8. *
  9. */
  10. #include <xcb/xcb.h>
  11. #include <xcb/xcb_image.h>
  12. #include <xcb/xcb_atom.h>
  13. #include <xcb/xcb_aux.h>
  14. #include <stdio.h>
  15. #include <stdlib.h>
  16. #include <stdbool.h>
  17. #include <string.h>
  18. #include <unistd.h>
  19. #include <assert.h>
  20. #include <err.h>
  21. #include <time.h>
  22. #include <sys/time.h>
  23. #include "cursors.h"
  24. #include "unlock_indicator.h"
  25. extern auth_state_t auth_state;
  26. xcb_connection_t *conn;
  27. xcb_screen_t *screen;
  28. #define curs_invisible_width 8
  29. #define curs_invisible_height 8
  30. static unsigned char curs_invisible_bits[] = {
  31. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
  32. #define curs_windows_width 11
  33. #define curs_windows_height 19
  34. static unsigned char curs_windows_bits[] = {
  35. 0xfe, 0x07, 0xfc, 0x07, 0xfa, 0x07, 0xf6, 0x07, 0xee, 0x07, 0xde, 0x07,
  36. 0xbe, 0x07, 0x7e, 0x07, 0xfe, 0x06, 0xfe, 0x05, 0x3e, 0x00, 0xb6, 0x07,
  37. 0x6a, 0x07, 0x6c, 0x07, 0xde, 0x06, 0xdf, 0x06, 0xbf, 0x05, 0xbf, 0x05,
  38. 0x7f, 0x06};
  39. #define mask_windows_width 11
  40. #define mask_windows_height 19
  41. static unsigned char mask_windows_bits[] = {
  42. 0x01, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0f, 0x00, 0x1f, 0x00, 0x3f, 0x00,
  43. 0x7f, 0x00, 0xff, 0x00, 0xff, 0x01, 0xff, 0x03, 0xff, 0x07, 0x7f, 0x00,
  44. 0xf7, 0x00, 0xf3, 0x00, 0xe1, 0x01, 0xe0, 0x01, 0xc0, 0x03, 0xc0, 0x03,
  45. 0x80, 0x01};
  46. static uint32_t get_colorpixel(char *hex) {
  47. char strgroups[3][3] = {{hex[0], hex[1], '\0'},
  48. {hex[2], hex[3], '\0'},
  49. {hex[4], hex[5], '\0'}};
  50. uint32_t rgb16[3] = {(strtol(strgroups[0], NULL, 16)),
  51. (strtol(strgroups[1], NULL, 16)),
  52. (strtol(strgroups[2], NULL, 16))};
  53. return (rgb16[0] << 16) + (rgb16[1] << 8) + rgb16[2];
  54. }
  55. xcb_visualtype_t *get_root_visual_type(xcb_screen_t *screen) {
  56. xcb_visualtype_t *visual_type = NULL;
  57. xcb_depth_iterator_t depth_iter;
  58. xcb_visualtype_iterator_t visual_iter;
  59. for (depth_iter = xcb_screen_allowed_depths_iterator(screen);
  60. depth_iter.rem;
  61. xcb_depth_next(&depth_iter)) {
  62. for (visual_iter = xcb_depth_visuals_iterator(depth_iter.data);
  63. visual_iter.rem;
  64. xcb_visualtype_next(&visual_iter)) {
  65. if (screen->root_visual != visual_iter.data->visual_id)
  66. continue;
  67. visual_type = visual_iter.data;
  68. return visual_type;
  69. }
  70. }
  71. return NULL;
  72. }
  73. xcb_pixmap_t create_bg_pixmap(xcb_connection_t *conn, xcb_screen_t *scr, u_int32_t *resolution, char *color) {
  74. xcb_pixmap_t bg_pixmap = xcb_generate_id(conn);
  75. xcb_create_pixmap(conn, scr->root_depth, bg_pixmap, scr->root,
  76. resolution[0], resolution[1]);
  77. /* Generate a Graphics Context and fill the pixmap with background color
  78. * (for images that are smaller than your screen) */
  79. xcb_gcontext_t gc = xcb_generate_id(conn);
  80. uint32_t values[] = {get_colorpixel(color)};
  81. xcb_create_gc(conn, gc, bg_pixmap, XCB_GC_FOREGROUND, values);
  82. xcb_rectangle_t rect = {0, 0, resolution[0], resolution[1]};
  83. xcb_poly_fill_rectangle(conn, bg_pixmap, gc, 1, &rect);
  84. xcb_free_gc(conn, gc);
  85. return bg_pixmap;
  86. }
  87. xcb_window_t open_fullscreen_window(xcb_connection_t *conn, xcb_screen_t *scr, char *color, xcb_pixmap_t pixmap) {
  88. uint32_t mask = 0;
  89. uint32_t values[3];
  90. xcb_window_t win = xcb_generate_id(conn);
  91. if (pixmap == XCB_NONE) {
  92. mask |= XCB_CW_BACK_PIXEL;
  93. values[0] = get_colorpixel(color);
  94. } else {
  95. mask |= XCB_CW_BACK_PIXMAP;
  96. values[0] = pixmap;
  97. }
  98. mask |= XCB_CW_OVERRIDE_REDIRECT;
  99. values[1] = 1;
  100. mask |= XCB_CW_EVENT_MASK;
  101. values[2] = XCB_EVENT_MASK_EXPOSURE |
  102. XCB_EVENT_MASK_KEY_PRESS |
  103. XCB_EVENT_MASK_KEY_RELEASE |
  104. XCB_EVENT_MASK_VISIBILITY_CHANGE |
  105. XCB_EVENT_MASK_STRUCTURE_NOTIFY;
  106. xcb_create_window(conn,
  107. XCB_COPY_FROM_PARENT,
  108. win, /* the window id */
  109. scr->root, /* parent == root */
  110. 0, 0,
  111. scr->width_in_pixels,
  112. scr->height_in_pixels, /* dimensions */
  113. 0, /* border = 0, we draw our own */
  114. XCB_WINDOW_CLASS_INPUT_OUTPUT,
  115. XCB_WINDOW_CLASS_COPY_FROM_PARENT, /* copy visual from parent */
  116. mask,
  117. values);
  118. char *name = "i3lock";
  119. xcb_change_property(conn,
  120. XCB_PROP_MODE_REPLACE,
  121. win,
  122. XCB_ATOM_WM_NAME,
  123. XCB_ATOM_STRING,
  124. 8,
  125. strlen(name),
  126. name);
  127. xcb_change_property(conn,
  128. XCB_PROP_MODE_REPLACE,
  129. win,
  130. XCB_ATOM_WM_CLASS,
  131. XCB_ATOM_STRING,
  132. 8,
  133. 2 * (strlen("i3lock") + 1),
  134. "i3lock\0i3lock\0");
  135. /* Map the window (= make it visible) */
  136. xcb_map_window(conn, win);
  137. /* Raise window (put it on top) */
  138. values[0] = XCB_STACK_MODE_ABOVE;
  139. xcb_configure_window(conn, win, XCB_CONFIG_WINDOW_STACK_MODE, values);
  140. /* Ensure that the window is created and set up before returning */
  141. xcb_aux_sync(conn);
  142. return win;
  143. }
  144. /*
  145. * Repeatedly tries to grab pointer and keyboard (up to the specified number of
  146. * tries).
  147. *
  148. * Returns true if the grab succeeded, false if not.
  149. *
  150. */
  151. bool grab_pointer_and_keyboard(xcb_connection_t *conn, xcb_screen_t *screen, xcb_cursor_t cursor, int tries) {
  152. xcb_grab_pointer_cookie_t pcookie;
  153. xcb_grab_pointer_reply_t *preply;
  154. xcb_grab_keyboard_cookie_t kcookie;
  155. xcb_grab_keyboard_reply_t *kreply;
  156. const suseconds_t screen_redraw_timeout = 100000; /* 100ms */
  157. /* Using few variables to trigger a redraw_screen() if too many tries */
  158. bool redrawn = false;
  159. struct timeval start;
  160. if (gettimeofday(&start, NULL) == -1) {
  161. err(EXIT_FAILURE, "gettimeofday");
  162. }
  163. while (tries-- > 0) {
  164. pcookie = xcb_grab_pointer(
  165. conn,
  166. false, /* get all pointer events specified by the following mask */
  167. screen->root, /* grab the root window */
  168. XCB_NONE, /* which events to let through */
  169. XCB_GRAB_MODE_ASYNC, /* pointer events should continue as normal */
  170. XCB_GRAB_MODE_ASYNC, /* keyboard mode */
  171. XCB_NONE, /* confine_to = in which window should the cursor stay */
  172. cursor, /* we change the cursor to whatever the user wanted */
  173. XCB_CURRENT_TIME);
  174. if ((preply = xcb_grab_pointer_reply(conn, pcookie, NULL)) &&
  175. preply->status == XCB_GRAB_STATUS_SUCCESS) {
  176. free(preply);
  177. break;
  178. }
  179. /* In case the grab failed, we still need to free the reply */
  180. free(preply);
  181. /* Make this quite a bit slower */
  182. usleep(50);
  183. struct timeval now;
  184. if (gettimeofday(&now, NULL) == -1) {
  185. err(EXIT_FAILURE, "gettimeofday");
  186. }
  187. struct timeval elapsed;
  188. timersub(&now, &start, &elapsed);
  189. if (!redrawn &&
  190. (tries % 100) == 0 &&
  191. elapsed.tv_usec >= screen_redraw_timeout) {
  192. redraw_screen();
  193. redrawn = true;
  194. }
  195. }
  196. while (tries-- > 0) {
  197. kcookie = xcb_grab_keyboard(
  198. conn,
  199. true, /* report events */
  200. screen->root, /* grab the root window */
  201. XCB_CURRENT_TIME,
  202. XCB_GRAB_MODE_ASYNC, /* process events as normal, do not require sync */
  203. XCB_GRAB_MODE_ASYNC);
  204. if ((kreply = xcb_grab_keyboard_reply(conn, kcookie, NULL)) &&
  205. kreply->status == XCB_GRAB_STATUS_SUCCESS) {
  206. free(kreply);
  207. break;
  208. }
  209. /* In case the grab failed, we still need to free the reply */
  210. free(kreply);
  211. /* Make this quite a bit slower */
  212. usleep(50);
  213. struct timeval now;
  214. if (gettimeofday(&now, NULL) == -1) {
  215. err(EXIT_FAILURE, "gettimeofday");
  216. }
  217. struct timeval elapsed;
  218. timersub(&now, &start, &elapsed);
  219. /* Trigger a screen redraw if 100ms elapsed */
  220. if (!redrawn &&
  221. (tries % 100) == 0 &&
  222. elapsed.tv_usec >= screen_redraw_timeout) {
  223. redraw_screen();
  224. redrawn = true;
  225. }
  226. }
  227. return (tries > 0);
  228. }
  229. xcb_cursor_t create_cursor(xcb_connection_t *conn, xcb_screen_t *screen, xcb_window_t win, int choice) {
  230. xcb_pixmap_t bitmap;
  231. xcb_pixmap_t mask;
  232. xcb_cursor_t cursor;
  233. unsigned char *curs_bits;
  234. unsigned char *mask_bits;
  235. int curs_w, curs_h;
  236. switch (choice) {
  237. case CURS_NONE:
  238. curs_bits = curs_invisible_bits;
  239. mask_bits = curs_invisible_bits;
  240. curs_w = curs_invisible_width;
  241. curs_h = curs_invisible_height;
  242. break;
  243. case CURS_WIN:
  244. curs_bits = curs_windows_bits;
  245. mask_bits = mask_windows_bits;
  246. curs_w = curs_windows_width;
  247. curs_h = curs_windows_height;
  248. break;
  249. case CURS_DEFAULT:
  250. default:
  251. return XCB_NONE; /* XCB_NONE is xcb's way of saying "don't change the cursor" */
  252. }
  253. bitmap = xcb_create_pixmap_from_bitmap_data(conn,
  254. win,
  255. curs_bits,
  256. curs_w,
  257. curs_h,
  258. 1,
  259. screen->white_pixel,
  260. screen->black_pixel,
  261. NULL);
  262. mask = xcb_create_pixmap_from_bitmap_data(conn,
  263. win,
  264. mask_bits,
  265. curs_w,
  266. curs_h,
  267. 1,
  268. screen->white_pixel,
  269. screen->black_pixel,
  270. NULL);
  271. cursor = xcb_generate_id(conn);
  272. xcb_create_cursor(conn,
  273. cursor,
  274. bitmap,
  275. mask,
  276. 65535, 65535, 65535,
  277. 0, 0, 0,
  278. 0, 0);
  279. xcb_free_pixmap(conn, bitmap);
  280. xcb_free_pixmap(conn, mask);
  281. return cursor;
  282. }
  283. static xcb_atom_t _NET_ACTIVE_WINDOW = XCB_NONE;
  284. void _init_net_active_window(xcb_connection_t *conn) {
  285. if (_NET_ACTIVE_WINDOW != XCB_NONE) {
  286. /* already initialized */
  287. return;
  288. }
  289. xcb_generic_error_t *err;
  290. xcb_intern_atom_reply_t *atom_reply = xcb_intern_atom_reply(
  291. conn,
  292. xcb_intern_atom(conn, 0, strlen("_NET_ACTIVE_WINDOW"), "_NET_ACTIVE_WINDOW"),
  293. &err);
  294. if (atom_reply == NULL) {
  295. fprintf(stderr, "X11 Error %d\n", err->error_code);
  296. free(err);
  297. return;
  298. }
  299. _NET_ACTIVE_WINDOW = atom_reply->atom;
  300. free(atom_reply);
  301. }
  302. xcb_window_t find_focused_window(xcb_connection_t *conn, const xcb_window_t root) {
  303. xcb_window_t result = XCB_NONE;
  304. _init_net_active_window(conn);
  305. xcb_get_property_reply_t *prop_reply = xcb_get_property_reply(
  306. conn,
  307. xcb_get_property_unchecked(
  308. conn, false, root, _NET_ACTIVE_WINDOW, XCB_GET_PROPERTY_TYPE_ANY, 0, 1 /* word */),
  309. NULL);
  310. if (prop_reply == NULL) {
  311. goto out;
  312. }
  313. if (xcb_get_property_value_length(prop_reply) == 0) {
  314. goto out_prop;
  315. }
  316. if (prop_reply->type != XCB_ATOM_WINDOW) {
  317. goto out_prop;
  318. }
  319. result = *((xcb_window_t *)xcb_get_property_value(prop_reply));
  320. out_prop:
  321. free(prop_reply);
  322. out:
  323. return result;
  324. }
  325. void set_focused_window(xcb_connection_t *conn, const xcb_window_t root, const xcb_window_t window) {
  326. xcb_client_message_event_t ev;
  327. memset(&ev, '\0', sizeof(xcb_client_message_event_t));
  328. _init_net_active_window(conn);
  329. ev.response_type = XCB_CLIENT_MESSAGE;
  330. ev.window = window;
  331. ev.type = _NET_ACTIVE_WINDOW;
  332. ev.format = 32;
  333. ev.data.data32[0] = 2; /* 2 = pager */
  334. xcb_send_event(conn, false, root, XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT, (char *)&ev);
  335. xcb_flush(conn);
  336. }