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.

302 lines
9.8 KiB

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