2009-02-14 02:33:31 +01:00
|
|
|
|
/*
|
|
|
|
|
* vim:ts=8:expandtab
|
|
|
|
|
*
|
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
|
|
|
|
*
|
2009-02-15 03:07:29 +01:00
|
|
|
|
* © 2009 Michael Stapelberg and contributors
|
2009-02-14 02:33:31 +01:00
|
|
|
|
*
|
|
|
|
|
* See file LICENSE for license information.
|
|
|
|
|
*
|
2009-02-15 03:07:29 +01:00
|
|
|
|
* xcb.c: Helper functions for easier usage of XCB
|
|
|
|
|
*
|
2009-02-14 02:33:31 +01:00
|
|
|
|
*/
|
2009-02-13 19:04:45 +01:00
|
|
|
|
#include <stdint.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
2009-02-24 14:18:08 +01:00
|
|
|
|
#include <string.h>
|
2009-02-13 19:04:45 +01:00
|
|
|
|
|
|
|
|
|
#include <xcb/xcb.h>
|
2009-02-15 03:07:29 +01:00
|
|
|
|
|
2009-02-14 03:46:20 +01:00
|
|
|
|
#include "util.h"
|
2009-02-13 19:04:45 +01:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Returns the colorpixel to use for the given hex color (think of HTML).
|
|
|
|
|
*
|
|
|
|
|
* The hex_color has to start with #, for example #FF00FF.
|
|
|
|
|
*
|
2009-02-24 14:18:08 +01:00
|
|
|
|
* The client argument is optional. If it is given, the colorpixel will be cached.
|
|
|
|
|
*
|
2009-02-13 19:04:45 +01:00
|
|
|
|
* NOTE that get_colorpixel() does _NOT_ check the given color code for validity.
|
|
|
|
|
* This has to be done by the caller.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2009-02-24 14:18:08 +01:00
|
|
|
|
uint32_t get_colorpixel(xcb_connection_t *conn, Client *client, xcb_window_t window, char *hex) {
|
|
|
|
|
/* Lookup this colorpixel in the cache if a client was specified */
|
|
|
|
|
if (client != NULL) {
|
|
|
|
|
struct Colorpixel *pixel;
|
|
|
|
|
SLIST_FOREACH(pixel, &(client->colorpixels), colorpixels)
|
|
|
|
|
if (strcmp(pixel->hex, hex) == 0)
|
|
|
|
|
return pixel->pixel;
|
|
|
|
|
}
|
2009-02-14 02:33:31 +01:00
|
|
|
|
#define RGB_8_TO_16(i) (65535 * ((i) & 0xFF) / 255)
|
2009-02-13 19:04:45 +01:00
|
|
|
|
char strgroups[3][3] = {{hex[1], hex[2], '\0'},
|
|
|
|
|
{hex[3], hex[4], '\0'},
|
|
|
|
|
{hex[5], hex[6], '\0'}};
|
2009-02-14 02:33:31 +01:00
|
|
|
|
int rgb16[3] = {RGB_8_TO_16(strtol(strgroups[0], NULL, 16)),
|
|
|
|
|
RGB_8_TO_16(strtol(strgroups[1], NULL, 16)),
|
|
|
|
|
RGB_8_TO_16(strtol(strgroups[2], NULL, 16))};
|
2009-02-13 19:04:45 +01:00
|
|
|
|
|
2009-02-14 02:33:31 +01:00
|
|
|
|
xcb_screen_t *root_screen = xcb_setup_roots_iterator(xcb_get_setup(conn)).data;
|
2009-02-13 19:04:45 +01:00
|
|
|
|
|
2009-02-14 03:46:20 +01:00
|
|
|
|
xcb_colormap_t colormap_id = xcb_generate_id(conn);
|
|
|
|
|
xcb_void_cookie_t cookie = xcb_create_colormap_checked(conn, XCB_COLORMAP_ALLOC_NONE,
|
|
|
|
|
colormap_id, window, root_screen->root_visual);
|
|
|
|
|
check_error(conn, cookie, "Could not create colormap");
|
2009-02-14 02:33:31 +01:00
|
|
|
|
xcb_alloc_color_reply_t *reply = xcb_alloc_color_reply(conn,
|
2009-02-14 03:46:20 +01:00
|
|
|
|
xcb_alloc_color(conn, colormap_id, rgb16[0], rgb16[1], rgb16[2]), NULL);
|
2009-02-13 19:04:45 +01:00
|
|
|
|
|
2009-02-14 02:33:31 +01:00
|
|
|
|
if (!reply) {
|
2009-02-14 03:46:20 +01:00
|
|
|
|
printf("Could not allocate color\n");
|
2009-02-14 02:33:31 +01:00
|
|
|
|
exit(1);
|
|
|
|
|
}
|
2009-02-13 19:04:45 +01:00
|
|
|
|
|
2009-02-14 02:33:31 +01:00
|
|
|
|
uint32_t pixel = reply->pixel;
|
|
|
|
|
free(reply);
|
2009-02-14 03:46:20 +01:00
|
|
|
|
xcb_free_colormap(conn, colormap_id);
|
2009-02-24 14:18:08 +01:00
|
|
|
|
|
|
|
|
|
/* Store the result in the cache if a client was specified */
|
|
|
|
|
if (client != NULL) {
|
|
|
|
|
struct Colorpixel *cache_pixel = scalloc(sizeof(struct Colorpixel));
|
|
|
|
|
cache_pixel->hex = sstrdup(hex);
|
|
|
|
|
cache_pixel->pixel = pixel;
|
|
|
|
|
|
|
|
|
|
SLIST_INSERT_HEAD(&(client->colorpixels), cache_pixel, colorpixels);
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-14 02:33:31 +01:00
|
|
|
|
return pixel;
|
2009-02-13 19:04:45 +01:00
|
|
|
|
}
|
2009-02-16 03:28:07 +01:00
|
|
|
|
|
|
|
|
|
xcb_window_t create_window(xcb_connection_t *conn, Rect dims, uint16_t window_class, uint32_t mask, uint32_t *values) {
|
|
|
|
|
xcb_window_t root = xcb_setup_roots_iterator(xcb_get_setup(conn)).data->root;
|
|
|
|
|
xcb_window_t result = xcb_generate_id(conn);
|
|
|
|
|
xcb_void_cookie_t cookie;
|
|
|
|
|
|
|
|
|
|
/* If the window class is XCB_WINDOW_CLASS_INPUT_ONLY, depth has to be 0 */
|
|
|
|
|
uint16_t depth = (window_class == XCB_WINDOW_CLASS_INPUT_ONLY ? 0 : XCB_COPY_FROM_PARENT);
|
|
|
|
|
|
|
|
|
|
cookie = xcb_create_window_checked(conn,
|
|
|
|
|
depth,
|
|
|
|
|
result, /* the window id */
|
|
|
|
|
root, /* parent == root */
|
|
|
|
|
dims.x, dims.y, dims.width, dims.height, /* dimensions */
|
|
|
|
|
0, /* border = 0, we draw our own */
|
|
|
|
|
window_class,
|
|
|
|
|
XCB_WINDOW_CLASS_COPY_FROM_PARENT, /* copy visual from parent */
|
|
|
|
|
mask,
|
|
|
|
|
values);
|
|
|
|
|
check_error(conn, cookie, "Could not create window");
|
|
|
|
|
|
|
|
|
|
/* Map the window (= make it visible) */
|
|
|
|
|
xcb_map_window(conn, result);
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
2009-02-24 00:30:04 +01:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Changes a single value in the graphic context (so one doesn’t have to define an array of values)
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void xcb_change_gc_single(xcb_connection_t *conn, xcb_gcontext_t gc, uint32_t mask, uint32_t value) {
|
|
|
|
|
xcb_change_gc(conn, gc, mask, &value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Draws a line from x,y to to_x,to_y using the given color
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void xcb_draw_line(xcb_connection_t *conn, xcb_drawable_t drawable, xcb_gcontext_t gc,
|
|
|
|
|
uint32_t colorpixel, uint32_t x, uint32_t y, uint32_t to_x, uint32_t to_y) {
|
|
|
|
|
xcb_change_gc_single(conn, gc, XCB_GC_FOREGROUND, colorpixel);
|
|
|
|
|
xcb_point_t points[] = {{x, y}, {to_x, to_y}};
|
|
|
|
|
xcb_poly_line(conn, XCB_COORD_MODE_ORIGIN, drawable, gc, 2, points);
|
|
|
|
|
}
|