]> git.sur5r.net Git - i3/i3/blob - libi3/draw_util.c
Use 32-bit visual by default if available.
[i3/i3] / libi3 / draw_util.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * © 2015 Ingo Bürk and contributors (see also: LICENSE)
5  *
6  * draw.c: Utility for drawing.
7  *
8  */
9 #include <stdlib.h>
10 #include <err.h>
11 #include <string.h>
12 #include <xcb/xcb.h>
13 #include <xcb/xcb_aux.h>
14 #ifdef CAIRO_SUPPORT
15 #include <cairo/cairo-xcb.h>
16 #endif
17
18 #include "libi3.h"
19
20 /* The default visual_type to use if none is specified when creating the surface. Must be defined globally. */
21 xcb_visualtype_t *visual_type;
22
23 /* Forward declarations */
24 static void draw_util_set_source_color(xcb_connection_t *conn, surface_t *surface, color_t color);
25
26 #define RETURN_UNLESS_SURFACE_INITIALIZED(surface)                               \
27     do {                                                                         \
28         if ((surface)->id == XCB_NONE) {                                         \
29             ELOG("Surface %p is not initialized, skipping drawing.\n", surface); \
30             return;                                                              \
31         }                                                                        \
32     } while (0)
33
34 /*
35  * Initialize the surface to represent the given drawable.
36  *
37  */
38 void draw_util_surface_init(xcb_connection_t *conn, surface_t *surface, xcb_drawable_t drawable,
39                             xcb_visualtype_t *visual, int width, int height) {
40     surface->id = drawable;
41     surface->visual_type = ((visual == NULL) ? visual_type : visual);
42     surface->width = width;
43     surface->height = height;
44
45     surface->gc = xcb_generate_id(conn);
46     xcb_void_cookie_t gc_cookie = xcb_create_gc_checked(conn, surface->gc, surface->id, 0, NULL);
47
48     xcb_generic_error_t *error = xcb_request_check(conn, gc_cookie);
49     if (error != NULL) {
50         ELOG("Could not create graphical context. Error code: %d\n", error->error_code);
51         exit(EXIT_FAILURE);
52     }
53
54 #ifdef CAIRO_SUPPORT
55     surface->surface = cairo_xcb_surface_create(conn, surface->id, surface->visual_type, width, height);
56     surface->cr = cairo_create(surface->surface);
57 #endif
58 }
59
60 /*
61  * Destroys the surface.
62  *
63  */
64 void draw_util_surface_free(xcb_connection_t *conn, surface_t *surface) {
65     xcb_free_gc(conn, surface->gc);
66 #ifdef CAIRO_SUPPORT
67     cairo_surface_destroy(surface->surface);
68     cairo_destroy(surface->cr);
69 #endif
70 }
71
72 /*
73  * Resize the surface to the given size.
74  *
75  */
76 void draw_util_surface_set_size(surface_t *surface, int width, int height) {
77     surface->width = width;
78     surface->height = height;
79 #ifdef CAIRO_SUPPORT
80     cairo_xcb_surface_set_size(surface->surface, width, height);
81 #endif
82 }
83
84 /*
85  * Parses the given color in hex format to an internal color representation.
86  * Note that the input must begin with a hash sign, e.g., "#3fbc59".
87  *
88  */
89 color_t draw_util_hex_to_color(const char *color) {
90     char alpha[2];
91     if (strlen(color) == strlen("#rrggbbaa")) {
92         alpha[0] = color[7];
93         alpha[1] = color[8];
94     } else {
95         alpha[0] = alpha[1] = 'F';
96     }
97
98     char groups[4][3] = {
99         {color[1], color[2], '\0'},
100         {color[3], color[4], '\0'},
101         {color[5], color[6], '\0'},
102         {alpha[0], alpha[1], '\0'}};
103
104     return (color_t){
105         .red = strtol(groups[0], NULL, 16) / 255.0,
106         .green = strtol(groups[1], NULL, 16) / 255.0,
107         .blue = strtol(groups[2], NULL, 16) / 255.0,
108         .alpha = strtol(groups[3], NULL, 16) / 255.0,
109         .colorpixel = get_colorpixel(color)};
110 }
111
112 /*
113  * Set the given color as the source color on the surface.
114  *
115  */
116 static void draw_util_set_source_color(xcb_connection_t *conn, surface_t *surface, color_t color) {
117     RETURN_UNLESS_SURFACE_INITIALIZED(surface);
118
119 #ifdef CAIRO_SUPPORT
120     cairo_set_source_rgba(surface->cr, color.red, color.green, color.blue, color.alpha);
121 #else
122     uint32_t colorpixel = color.colorpixel;
123     xcb_change_gc(conn, surface->gc, XCB_GC_FOREGROUND | XCB_GC_BACKGROUND,
124                   (uint32_t[]){colorpixel, colorpixel});
125 #endif
126 }
127
128 /**
129  * Draw the given text using libi3.
130  * This function also marks the surface dirty which is needed if other means of
131  * drawing are used. This will be the case when using XCB to draw text.
132  *
133  */
134 void draw_util_text(i3String *text, surface_t *surface, color_t fg_color, color_t bg_color, int x, int y, int max_width) {
135     RETURN_UNLESS_SURFACE_INITIALIZED(surface);
136
137 #ifdef CAIRO_SUPPORT
138     /* Flush any changes before we draw the text as this might use XCB directly. */
139     CAIRO_SURFACE_FLUSH(surface->surface);
140 #endif
141
142     set_font_colors(surface->gc, fg_color.colorpixel, bg_color.colorpixel);
143     draw_text(text, surface->id, surface->gc, surface->visual_type, x, y, max_width);
144
145 #ifdef CAIRO_SUPPORT
146     /* Notify cairo that we (possibly) used another way to draw on the surface. */
147     cairo_surface_mark_dirty(surface->surface);
148 #endif
149 }
150
151 /**
152  * Draws a filled rectangle.
153  * This function is a convenience wrapper and takes care of flushing the
154  * surface as well as restoring the cairo state.
155  *
156  */
157 void draw_util_rectangle(xcb_connection_t *conn, surface_t *surface, color_t color, double x, double y, double w, double h) {
158     RETURN_UNLESS_SURFACE_INITIALIZED(surface);
159
160 #ifdef CAIRO_SUPPORT
161     cairo_save(surface->cr);
162
163     /* Using the SOURCE operator will copy both color and alpha information directly
164      * onto the surface rather than blending it. This is a bit more efficient and
165      * allows better color control for the user when using opacity. */
166     cairo_set_operator(surface->cr, CAIRO_OPERATOR_SOURCE);
167     draw_util_set_source_color(conn, surface, color);
168
169     cairo_rectangle(surface->cr, x, y, w, h);
170     cairo_fill(surface->cr);
171
172     /* Make sure we flush the surface for any text drawing operations that could follow.
173      * Since we support drawing text via XCB, we need this. */
174     CAIRO_SURFACE_FLUSH(surface->surface);
175
176     cairo_restore(surface->cr);
177 #else
178     draw_util_set_source_color(conn, surface, color);
179
180     xcb_rectangle_t rect = {x, y, w, h};
181     xcb_poly_fill_rectangle(conn, surface->id, surface->gc, 1, &rect);
182 #endif
183 }
184
185 /**
186  * Clears a surface with the given color.
187  *
188  */
189 void draw_util_clear_surface(xcb_connection_t *conn, surface_t *surface, color_t color) {
190     RETURN_UNLESS_SURFACE_INITIALIZED(surface);
191
192 #ifdef CAIRO_SUPPORT
193     cairo_save(surface->cr);
194
195     /* Using the SOURCE operator will copy both color and alpha information directly
196      * onto the surface rather than blending it. This is a bit more efficient and
197      * allows better color control for the user when using opacity. */
198     cairo_set_operator(surface->cr, CAIRO_OPERATOR_SOURCE);
199     draw_util_set_source_color(conn, surface, color);
200
201     cairo_paint(surface->cr);
202
203     /* Make sure we flush the surface for any text drawing operations that could follow.
204      * Since we support drawing text via XCB, we need this. */
205     CAIRO_SURFACE_FLUSH(surface->surface);
206
207     cairo_restore(surface->cr);
208 #else
209     draw_util_set_source_color(conn, surface, color);
210
211     xcb_rectangle_t rect = {0, 0, surface->width, surface->height};
212     xcb_poly_fill_rectangle(conn, surface->id, surface->gc, 1, &rect);
213 #endif
214 }
215
216 /**
217  * Copies a surface onto another surface.
218  *
219  */
220 void draw_util_copy_surface(xcb_connection_t *conn, surface_t *src, surface_t *dest, double src_x, double src_y,
221                             double dest_x, double dest_y, double width, double height) {
222     RETURN_UNLESS_SURFACE_INITIALIZED(src);
223     RETURN_UNLESS_SURFACE_INITIALIZED(dest);
224
225 #ifdef CAIRO_SUPPORT
226     cairo_save(dest->cr);
227
228     /* Using the SOURCE operator will copy both color and alpha information directly
229      * onto the surface rather than blending it. This is a bit more efficient and
230      * allows better color control for the user when using opacity. */
231     cairo_set_operator(dest->cr, CAIRO_OPERATOR_SOURCE);
232     cairo_set_source_surface(dest->cr, src->surface, dest_x - src_x, dest_y - src_y);
233
234     cairo_rectangle(dest->cr, dest_x, dest_y, width, height);
235     cairo_fill(dest->cr);
236
237     /* Make sure we flush the surface for any text drawing operations that could follow.
238      * Since we support drawing text via XCB, we need this. */
239     CAIRO_SURFACE_FLUSH(src->surface);
240     CAIRO_SURFACE_FLUSH(dest->surface);
241
242     cairo_restore(dest->cr);
243 #else
244     xcb_copy_area(conn, src->id, dest->id, dest->gc, (int16_t)src_x, (int16_t)src_y,
245                   (int16_t)dest_x, (int16_t)dest_y, (uint16_t)width, (uint16_t)height);
246 #endif
247 }