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.

286 lines
9.3 KiB

12 years ago
12 years ago
12 years ago
  1. /*
  2. * vim:ts=4:sw=4:expandtab
  3. *
  4. * © 2010-2012 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/dpms.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 "cursors.h"
  22. xcb_connection_t *conn;
  23. xcb_screen_t *screen;
  24. #define curs_invisible_width 8
  25. #define curs_invisible_height 8
  26. static unsigned char curs_invisible_bits[] = {
  27. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
  28. #define curs_windows_width 11
  29. #define curs_windows_height 19
  30. static unsigned char curs_windows_bits[] = {
  31. 0xfe, 0x07, 0xfc, 0x07, 0xfa, 0x07, 0xf6, 0x07, 0xee, 0x07, 0xde, 0x07,
  32. 0xbe, 0x07, 0x7e, 0x07, 0xfe, 0x06, 0xfe, 0x05, 0x3e, 0x00, 0xb6, 0x07,
  33. 0x6a, 0x07, 0x6c, 0x07, 0xde, 0x06, 0xdf, 0x06, 0xbf, 0x05, 0xbf, 0x05,
  34. 0x7f, 0x06};
  35. #define mask_windows_width 11
  36. #define mask_windows_height 19
  37. static unsigned char mask_windows_bits[] = {
  38. 0x01, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0f, 0x00, 0x1f, 0x00, 0x3f, 0x00,
  39. 0x7f, 0x00, 0xff, 0x00, 0xff, 0x01, 0xff, 0x03, 0xff, 0x07, 0x7f, 0x00,
  40. 0xf7, 0x00, 0xf3, 0x00, 0xe1, 0x01, 0xe0, 0x01, 0xc0, 0x03, 0xc0, 0x03,
  41. 0x80, 0x01};
  42. static uint32_t get_colorpixel(char *hex) {
  43. char strgroups[3][3] = {{hex[0], hex[1], '\0'},
  44. {hex[2], hex[3], '\0'},
  45. {hex[4], hex[5], '\0'}};
  46. uint32_t rgb16[3] = {(strtol(strgroups[0], NULL, 16)),
  47. (strtol(strgroups[1], NULL, 16)),
  48. (strtol(strgroups[2], NULL, 16))};
  49. return (rgb16[0] << 16) + (rgb16[1] << 8) + rgb16[2];
  50. }
  51. xcb_visualtype_t *get_root_visual_type(xcb_screen_t *screen) {
  52. xcb_visualtype_t *visual_type = NULL;
  53. xcb_depth_iterator_t depth_iter;
  54. xcb_visualtype_iterator_t visual_iter;
  55. for (depth_iter = xcb_screen_allowed_depths_iterator(screen);
  56. depth_iter.rem;
  57. xcb_depth_next(&depth_iter)) {
  58. for (visual_iter = xcb_depth_visuals_iterator(depth_iter.data);
  59. visual_iter.rem;
  60. xcb_visualtype_next(&visual_iter)) {
  61. if (screen->root_visual != visual_iter.data->visual_id)
  62. continue;
  63. visual_type = visual_iter.data;
  64. return visual_type;
  65. }
  66. }
  67. return NULL;
  68. }
  69. xcb_pixmap_t create_bg_pixmap(xcb_connection_t *conn, xcb_screen_t *scr, u_int32_t *resolution, char *color) {
  70. xcb_pixmap_t bg_pixmap = xcb_generate_id(conn);
  71. xcb_create_pixmap(conn, scr->root_depth, bg_pixmap, scr->root,
  72. resolution[0], resolution[1]);
  73. /* Generate a Graphics Context and fill the pixmap with background color
  74. * (for images that are smaller than your screen) */
  75. xcb_gcontext_t gc = xcb_generate_id(conn);
  76. uint32_t values[] = {get_colorpixel(color)};
  77. xcb_create_gc(conn, gc, bg_pixmap, XCB_GC_FOREGROUND, values);
  78. xcb_rectangle_t rect = {0, 0, resolution[0], resolution[1]};
  79. xcb_poly_fill_rectangle(conn, bg_pixmap, gc, 1, &rect);
  80. xcb_free_gc(conn, gc);
  81. return bg_pixmap;
  82. }
  83. xcb_window_t open_fullscreen_window(xcb_connection_t *conn, xcb_screen_t *scr, char *color, xcb_pixmap_t pixmap) {
  84. uint32_t mask = 0;
  85. uint32_t values[3];
  86. xcb_window_t win = xcb_generate_id(conn);
  87. if (pixmap == XCB_NONE) {
  88. mask |= XCB_CW_BACK_PIXEL;
  89. values[0] = get_colorpixel(color);
  90. } else {
  91. mask |= XCB_CW_BACK_PIXMAP;
  92. values[0] = pixmap;
  93. }
  94. mask |= XCB_CW_OVERRIDE_REDIRECT;
  95. values[1] = 1;
  96. mask |= XCB_CW_EVENT_MASK;
  97. values[2] = XCB_EVENT_MASK_EXPOSURE |
  98. XCB_EVENT_MASK_KEY_PRESS |
  99. XCB_EVENT_MASK_KEY_RELEASE |
  100. XCB_EVENT_MASK_VISIBILITY_CHANGE |
  101. XCB_EVENT_MASK_STRUCTURE_NOTIFY;
  102. xcb_create_window(conn,
  103. XCB_COPY_FROM_PARENT,
  104. win, /* the window id */
  105. scr->root, /* parent == root */
  106. 0, 0,
  107. scr->width_in_pixels,
  108. scr->height_in_pixels, /* dimensions */
  109. 0, /* border = 0, we draw our own */
  110. XCB_WINDOW_CLASS_INPUT_OUTPUT,
  111. XCB_WINDOW_CLASS_COPY_FROM_PARENT, /* copy visual from parent */
  112. mask,
  113. values);
  114. char *name = "i3lock";
  115. xcb_change_property(conn,
  116. XCB_PROP_MODE_REPLACE,
  117. win,
  118. XCB_ATOM_WM_NAME,
  119. XCB_ATOM_STRING,
  120. 8,
  121. strlen(name),
  122. name);
  123. /* Map the window (= make it visible) */
  124. xcb_map_window(conn, win);
  125. /* Raise window (put it on top) */
  126. values[0] = XCB_STACK_MODE_ABOVE;
  127. xcb_configure_window(conn, win, XCB_CONFIG_WINDOW_STACK_MODE, values);
  128. return win;
  129. }
  130. /*
  131. * Set the dpms level to 'mode'.
  132. *
  133. */
  134. void dpms_set_mode(xcb_connection_t *conn, xcb_dpms_dpms_mode_t mode) {
  135. xcb_dpms_enable(conn);
  136. xcb_dpms_force_level(conn, mode);
  137. xcb_flush(conn);
  138. }
  139. /*
  140. * Repeatedly tries to grab pointer and keyboard (up to 1000 times).
  141. *
  142. */
  143. void grab_pointer_and_keyboard(xcb_connection_t *conn, xcb_screen_t *screen, xcb_cursor_t cursor) {
  144. xcb_grab_pointer_cookie_t pcookie;
  145. xcb_grab_pointer_reply_t *preply;
  146. xcb_grab_keyboard_cookie_t kcookie;
  147. xcb_grab_keyboard_reply_t *kreply;
  148. int tries = 10000;
  149. while (tries-- > 0) {
  150. pcookie = xcb_grab_pointer(
  151. conn,
  152. false, /* get all pointer events specified by the following mask */
  153. screen->root, /* grab the root window */
  154. XCB_NONE, /* which events to let through */
  155. XCB_GRAB_MODE_ASYNC, /* pointer events should continue as normal */
  156. XCB_GRAB_MODE_ASYNC, /* keyboard mode */
  157. XCB_NONE, /* confine_to = in which window should the cursor stay */
  158. cursor, /* we change the cursor to whatever the user wanted */
  159. XCB_CURRENT_TIME);
  160. if ((preply = xcb_grab_pointer_reply(conn, pcookie, NULL)) &&
  161. preply->status == XCB_GRAB_STATUS_SUCCESS) {
  162. free(preply);
  163. break;
  164. }
  165. /* Make this quite a bit slower */
  166. usleep(50);
  167. }
  168. while (tries-- > 0) {
  169. kcookie = xcb_grab_keyboard(
  170. conn,
  171. true, /* report events */
  172. screen->root, /* grab the root window */
  173. XCB_CURRENT_TIME,
  174. XCB_GRAB_MODE_ASYNC, /* process events as normal, do not require sync */
  175. XCB_GRAB_MODE_ASYNC);
  176. if ((kreply = xcb_grab_keyboard_reply(conn, kcookie, NULL)) &&
  177. kreply->status == XCB_GRAB_STATUS_SUCCESS) {
  178. free(kreply);
  179. break;
  180. }
  181. /* Make this quite a bit slower */
  182. usleep(50);
  183. }
  184. if (tries <= 0)
  185. errx(EXIT_FAILURE, "Cannot grab pointer/keyboard");
  186. }
  187. xcb_cursor_t create_cursor(xcb_connection_t *conn, xcb_screen_t *screen, xcb_window_t win, int choice) {
  188. xcb_pixmap_t bitmap;
  189. xcb_pixmap_t mask;
  190. xcb_cursor_t cursor;
  191. unsigned char *curs_bits;
  192. unsigned char *mask_bits;
  193. int curs_w, curs_h;
  194. switch (choice) {
  195. case CURS_NONE:
  196. curs_bits = curs_invisible_bits;
  197. mask_bits = curs_invisible_bits;
  198. curs_w = curs_invisible_width;
  199. curs_h = curs_invisible_height;
  200. break;
  201. case CURS_WIN:
  202. curs_bits = curs_windows_bits;
  203. mask_bits = mask_windows_bits;
  204. curs_w = curs_windows_width;
  205. curs_h = curs_windows_height;
  206. break;
  207. case CURS_DEFAULT:
  208. default:
  209. return XCB_NONE; /* XCB_NONE is xcb's way of saying "don't change the cursor" */
  210. }
  211. bitmap = xcb_create_pixmap_from_bitmap_data(conn,
  212. win,
  213. curs_bits,
  214. curs_w,
  215. curs_h,
  216. 1,
  217. screen->white_pixel,
  218. screen->black_pixel,
  219. NULL);
  220. mask = xcb_create_pixmap_from_bitmap_data(conn,
  221. win,
  222. mask_bits,
  223. curs_w,
  224. curs_h,
  225. 1,
  226. screen->white_pixel,
  227. screen->black_pixel,
  228. NULL);
  229. cursor = xcb_generate_id(conn);
  230. xcb_create_cursor(conn,
  231. cursor,
  232. bitmap,
  233. mask,
  234. 65535, 65535, 65535,
  235. 0, 0, 0,
  236. 0, 0);
  237. xcb_free_pixmap(conn, bitmap);
  238. xcb_free_pixmap(conn, mask);
  239. return cursor;
  240. }