2 * draw.c - draw functions
4 * Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #include <cairo-xcb.h>
34 #include "common/tokenize.h"
35 #include "common/markup.h"
37 extern awesome_t globalconf
;
39 /** Convert text from any charset to UTF-8 using iconv.
40 * \param iso The ISO string to convert.
41 * \param len The string size.
42 * \return NULL if error, otherwise pointer to the new converted string.
45 draw_iso2utf8(const char *iso
, size_t len
)
49 static iconv_t iso2utf8
= (iconv_t
) -1;
54 if(!a_strcmp(nl_langinfo(CODESET
), "UTF-8"))
57 if(iso2utf8
== (iconv_t
) -1)
59 iso2utf8
= iconv_open("UTF-8", nl_langinfo(CODESET
));
60 if(iso2utf8
== (iconv_t
) -1)
63 warn("unable to convert text from %s to UTF-8, not available",
64 nl_langinfo(CODESET
));
66 warn("unable to convert text: %s", strerror(errno
));
72 utf8len
= 2 * len
+ 1;
73 utf8
= utf8p
= p_new(char, utf8len
);
75 if(iconv(iso2utf8
, (char **) &iso
, &len
, &utf8
, &utf8len
) == (size_t) -1)
77 warn("text conversion failed: %s", strerror(errno
));
84 static xcb_visualtype_t
*
85 draw_screen_default_visual(xcb_screen_t
*s
)
87 xcb_depth_iterator_t depth_iter
;
88 xcb_visualtype_iterator_t visual_iter
;
93 for(depth_iter
= xcb_screen_allowed_depths_iterator(s
);
94 depth_iter
.rem
; xcb_depth_next (&depth_iter
))
95 for(visual_iter
= xcb_depth_visuals_iterator (depth_iter
.data
);
96 visual_iter
.rem
; xcb_visualtype_next (&visual_iter
))
97 if (s
->root_visual
== visual_iter
.data
->visual_id
)
98 return visual_iter
.data
;
103 /** Create a new Pango font.
104 * \param fontname Pango fontname (e.g. [FAMILY-LIST] [STYLE-OPTIONS] [SIZE]).
105 * \return A new font.
108 draw_font_new(const char *fontname
)
110 cairo_surface_t
*surface
;
111 xcb_screen_t
*s
= xutil_screen_get(globalconf
.connection
, globalconf
.default_screen
);
114 font_t
*font
= p_new(font_t
, 1);
116 /* Create a dummy cairo surface, cairo context and pango layout in
117 * order to get font informations */
118 surface
= cairo_xcb_surface_create(globalconf
.connection
,
119 globalconf
.default_screen
,
120 draw_screen_default_visual(s
),
122 s
->height_in_pixels
);
124 cr
= cairo_create(surface
);
125 layout
= pango_cairo_create_layout(cr
);
127 /* Get the font description used to set text on a PangoLayout */
128 font
->desc
= pango_font_description_from_string(fontname
);
129 pango_layout_set_font_description(layout
, font
->desc
);
132 pango_layout_get_pixel_size(layout
, NULL
, &font
->height
);
134 g_object_unref(layout
);
136 cairo_surface_destroy(surface
);
142 * \param font Font to delete.
145 draw_font_delete(font_t
**font
)
149 pango_font_description_free((*font
)->desc
);
155 draw_markup_on_element(markup_parser_data_t
*p
, const char *elem
,
156 const char **names
, const char **values
)
158 draw_parser_data_t
*data
= p
->priv
;
160 xcolor_init_request_t reqs
[3];
161 int8_t i
, bg_color_nbr
= -1, reqs_nbr
= -1;
163 /* hack: markup.c validates tags so we can avoid strcmps here */
166 if(elem
[1] == 'g') /* bg? */
168 if(elem
[2] == '_') /* bg_margin */
169 for(; *names
; names
++, values
++)
170 switch(a_tokenize(*names
, -1))
173 data
->bg_margin
.left
= atoi(*values
);
176 data
->bg_margin
.top
= atoi(*values
);
181 for(; *names
; names
++, values
++)
182 switch(a_tokenize(*names
, -1))
185 reqs
[++reqs_nbr
] = xcolor_init_unchecked(&data
->bg_color
,
189 bg_color_nbr
= reqs_nbr
;
193 image_delete(&data
->bg_image
);
194 data
->bg_image
= image_new_from_file(*values
);
197 data
->bg_align
= draw_align_fromstr(*values
, -1);
200 data
->bg_resize
= a_strtobool(*values
, -1);
207 for(; *names
; names
++, values
++)
208 switch(a_tokenize(*names
, -1))
211 reqs
[++reqs_nbr
] = xcolor_init_unchecked(&data
->border
.color
,
216 data
->border
.width
= atoi(*values
);
223 for(; *names
; names
++, values
++)
224 switch(a_tokenize(*names
, -1))
227 data
->align
= draw_align_fromstr(*values
, -1);
230 reqs
[++reqs_nbr
] = xcolor_init_unchecked(&data
->shadow
.color
,
234 case A_TK_SHADOW_OFFSET
:
235 data
->shadow
.offset
= atoi(*values
);
241 case 'm': /* margin */
242 for (; *names
; names
++, values
++)
243 switch(a_tokenize(*names
, -1))
246 data
->margin
.left
= atoi(*values
);
249 data
->margin
.right
= atoi(*values
);
252 data
->margin
.top
= atoi(*values
);
259 for(i
= 0; i
<= reqs_nbr
; i
++)
260 if(i
== bg_color_nbr
)
261 data
->has_bg_color
= xcolor_init_reply(reqs
[i
]);
263 xcolor_init_reply(reqs
[i
]);
267 draw_text_markup_expand(draw_parser_data_t
*data
,
268 const char *str
, ssize_t slen
)
270 static char const * const elements
[] = { "bg", "bg_margin", "text", "margin", "border", NULL
};
271 markup_parser_data_t p
=
273 .elements
= elements
,
275 .on_element
= &draw_markup_on_element
,
277 GError
*error
= NULL
;
280 markup_parser_data_init(&p
);
282 if(!markup_parse(&p
, str
, slen
))
285 if(!pango_parse_markup(p
.text
.s
, p
.text
.len
, 0, &data
->attr_list
, &data
->text
, NULL
, &error
))
287 warn("cannot parse pango markup: %s", error
? error
->message
: "unknown error");
293 data
->len
= a_strlen(data
->text
);
297 markup_parser_data_wipe(&p
);
301 /** Initialize a new draw context.
302 * \param d The draw context to initialize.
303 * \param phys_screen Physical screen id.
304 * \param width Width.
305 * \param height Height.
306 * \param px Pixmap object to store.
307 * \param fg Foreground color.
308 * \param bg Background color.
311 draw_context_init(draw_context_t
*d
, int phys_screen
,
312 int width
, int height
, xcb_pixmap_t px
,
313 const xcolor_t
*fg
, const xcolor_t
*bg
)
315 xcb_screen_t
*s
= xutil_screen_get(globalconf
.connection
, phys_screen
);
317 d
->phys_screen
= phys_screen
;
320 d
->depth
= s
->root_depth
;
321 d
->visual
= draw_screen_default_visual(s
);
323 d
->surface
= cairo_xcb_surface_create(globalconf
.connection
, px
, d
->visual
, width
, height
);
324 d
->cr
= cairo_create(d
->surface
);
325 d
->layout
= pango_cairo_create_layout(d
->cr
);
330 /** Draw text into a draw context.
331 * \param ctx Draw context to draw to.
332 * \param font The font to use.
333 * \param elip Ellipsize mode.
334 * \param wrap Wrap mode.
335 * \param area Area to draw to.
336 * \param text Text to draw.
337 * \param len Text to draw length.
338 * \param data Optional parser data.
341 draw_text(draw_context_t
*ctx
, font_t
*font
, PangoEllipsizeMode ellip
, PangoWrapMode wrap
,
342 area_t area
, const char *text
, ssize_t len
, draw_parser_data_t
*pdata
)
346 draw_parser_data_t parser_data
;
350 draw_parser_data_init(&parser_data
);
351 if(draw_text_markup_expand(&parser_data
, text
, len
))
353 text
= parser_data
.text
;
354 len
= parser_data
.len
;
356 pdata
= &parser_data
;
364 if(pdata
->has_bg_color
)
365 draw_rectangle(ctx
, area
, 1.0, true, &pdata
->bg_color
);
367 if(pdata
->border
.width
> 0)
368 draw_rectangle(ctx
, area
, pdata
->border
.width
, false, &pdata
->border
.color
);
374 switch(pdata
->bg_align
)
377 x
+= (area
.width
- pdata
->bg_image
->width
) / 2;
380 x
+= area
.width
- pdata
->bg_image
->width
;
386 x
+ pdata
->bg_margin
.left
,
387 y
+ pdata
->bg_margin
.top
,
388 pdata
->bg_resize
? area
.height
: 0, pdata
->bg_image
);
391 pango_layout_set_text(ctx
->layout
, pdata
->text
, pdata
->len
);
392 pango_layout_set_width(ctx
->layout
,
393 pango_units_from_double(area
.width
394 - (pdata
->margin
.left
395 + pdata
->margin
.right
)));
396 pango_layout_set_height(ctx
->layout
, pango_units_from_double(area
.height
) - pdata
->margin
.top
);
397 pango_layout_set_ellipsize(ctx
->layout
, ellip
);
398 pango_layout_set_wrap(ctx
->layout
, wrap
);
399 pango_layout_set_attributes(ctx
->layout
, pdata
->attr_list
);
400 pango_layout_set_font_description(ctx
->layout
, font
->desc
);
401 pango_layout_get_pixel_extents(ctx
->layout
, NULL
, &ext
);
403 x
= area
.x
+ pdata
->margin
.left
;
404 /* + 1 is added for rounding, so that in any case of doubt we rather draw
405 * the text 1px lower than too high which usually results in a better type
407 y
= area
.y
+ (ctx
->height
- ext
.height
+ 1) / 2 + pdata
->margin
.top
;
409 /* only honors alignment if enough space */
410 if(ext
.width
< area
.width
)
414 x
+= (area
.width
- ext
.width
) / 2;
417 x
+= area
.width
- ext
.width
;
423 if(pdata
->shadow
.offset
)
425 cairo_set_source_rgba(ctx
->cr
,
426 pdata
->shadow
.color
.red
/ 65535.0,
427 pdata
->shadow
.color
.green
/ 65535.0,
428 pdata
->shadow
.color
.blue
/ 65535.0,
429 pdata
->shadow
.color
.alpha
/ 65535.0);
430 cairo_move_to(ctx
->cr
, x
+ pdata
->shadow
.offset
, y
+ pdata
->shadow
.offset
);
431 pango_cairo_layout_path(ctx
->cr
, ctx
->layout
);
432 cairo_stroke(ctx
->cr
);
435 cairo_move_to(ctx
->cr
, x
, y
);
437 cairo_set_source_rgba(ctx
->cr
,
438 ctx
->fg
.red
/ 65535.0,
439 ctx
->fg
.green
/ 65535.0,
440 ctx
->fg
.blue
/ 65535.0,
441 ctx
->fg
.alpha
/ 65535.0);
442 pango_cairo_update_layout(ctx
->cr
, ctx
->layout
);
443 pango_cairo_show_layout(ctx
->cr
, ctx
->layout
);
445 if (pdata
== &parser_data
)
446 draw_parser_data_wipe(&parser_data
);
449 /** Setup color-source for cairo (gradient or mono).
450 * \param ctx Draw context.
451 * \param gradient_vector x, y to x + x_offset, y + y_offset.
452 * \param pcolor Color to use at start of gradient_vector.
453 * \param pcolor_center Color at center of gradient_vector.
454 * \param pcolor_end Color at end of gradient_vector.
455 * \return pat Pattern or NULL, needs to get cairo_pattern_destroy()'ed.
457 static cairo_pattern_t
*
458 draw_setup_cairo_color_source(draw_context_t
*ctx
, vector_t gradient_vector
,
459 const xcolor_t
*pcolor
, const xcolor_t
*pcolor_center
,
460 const xcolor_t
*pcolor_end
)
462 cairo_pattern_t
*pat
= NULL
;
463 bool has_center
= pcolor_center
->initialized
;
464 bool has_end
= pcolor_end
->initialized
;
466 /* no need for a real pattern: */
467 if(!has_end
&& !has_center
)
468 cairo_set_source_rgba(ctx
->cr
,
469 pcolor
->red
/ 65535.0,
470 pcolor
->green
/ 65535.0,
471 pcolor
->blue
/ 65535.0,
472 pcolor
->alpha
/ 65535.0);
475 pat
= cairo_pattern_create_linear(gradient_vector
.x
,
477 gradient_vector
.x
+ gradient_vector
.x_offset
,
478 gradient_vector
.y
+ gradient_vector
.y_offset
);
480 /* pcolor is always set (so far in awesome) */
481 cairo_pattern_add_color_stop_rgba(pat
, 0.0,
482 pcolor
->red
/ 65535.0,
483 pcolor
->green
/ 65535.0,
484 pcolor
->blue
/ 65535.0,
485 pcolor
->alpha
/ 65535.0);
488 cairo_pattern_add_color_stop_rgba(pat
, 0.5,
489 pcolor_center
->red
/ 65535.0,
490 pcolor_center
->green
/ 65535.0,
491 pcolor_center
->blue
/ 65535.0,
492 pcolor_center
->alpha
/ 65535.0);
495 cairo_pattern_add_color_stop_rgba(pat
, 1.0,
496 pcolor_end
->red
/ 65535.0,
497 pcolor_end
->green
/ 65535.0,
498 pcolor_end
->blue
/ 65535.0,
499 pcolor_end
->alpha
/ 65535.0);
501 cairo_pattern_add_color_stop_rgba(pat
, 1.0,
502 pcolor
->red
/ 65535.0,
503 pcolor
->green
/ 65535.0,
504 pcolor
->blue
/ 65535.0,
505 pcolor
->alpha
/ 65535.0);
506 cairo_set_source(ctx
->cr
, pat
);
511 /** Draw rectangle inside the coordinates
512 * \param ctx Draw context
513 * \param geometry geometry
514 * \param line_width line width
515 * \param filled fill rectangle?
516 * \param color color to use
519 draw_rectangle(draw_context_t
*ctx
, area_t geometry
,
520 float line_width
, bool filled
, const xcolor_t
*color
)
522 cairo_set_antialias(ctx
->cr
, CAIRO_ANTIALIAS_NONE
);
523 cairo_set_line_width(ctx
->cr
, line_width
);
524 cairo_set_miter_limit(ctx
->cr
, 10.0);
525 cairo_set_line_join(ctx
->cr
, CAIRO_LINE_JOIN_MITER
);
526 cairo_set_source_rgba(ctx
->cr
,
527 color
->red
/ 65535.0,
528 color
->green
/ 65535.0,
529 color
->blue
/ 65535.0,
530 color
->alpha
/ 65535.0);
533 cairo_rectangle(ctx
->cr
, geometry
.x
, geometry
.y
,
534 geometry
.width
, geometry
.height
);
539 cairo_rectangle(ctx
->cr
, geometry
.x
+ line_width
/ 2.0, geometry
.y
+ line_width
/ 2.0,
540 geometry
.width
- line_width
, geometry
.height
- line_width
);
541 cairo_stroke(ctx
->cr
);
545 /** Draw rectangle with gradient colors
546 * \param ctx Draw context.
547 * \param geometry Geometry.
548 * \param line_width Line width.
549 * \param filled Filled rectangle?
550 * \param gradient_vector Color-gradient course.
551 * \param pcolor Color at start of gradient_vector.
552 * \param pcolor_center Color in the center.
553 * \param pcolor_end Color at end of gradient_vector.
556 draw_rectangle_gradient(draw_context_t
*ctx
, area_t geometry
, float line_width
, bool filled
,
557 vector_t gradient_vector
, const xcolor_t
*pcolor
,
558 const xcolor_t
*pcolor_center
, const xcolor_t
*pcolor_end
)
560 cairo_pattern_t
*pat
;
562 cairo_set_antialias(ctx
->cr
, CAIRO_ANTIALIAS_NONE
);
563 cairo_set_line_width(ctx
->cr
, line_width
);
564 cairo_set_miter_limit(ctx
->cr
, 10.0);
565 cairo_set_line_join(ctx
->cr
, CAIRO_LINE_JOIN_MITER
);
567 pat
= draw_setup_cairo_color_source(ctx
, gradient_vector
, pcolor
, pcolor_center
, pcolor_end
);
571 cairo_rectangle(ctx
->cr
, geometry
.x
, geometry
.y
, geometry
.width
, geometry
.height
);
576 cairo_rectangle(ctx
->cr
, geometry
.x
+ 1, geometry
.y
, geometry
.width
- 1, geometry
.height
- 1);
577 cairo_stroke(ctx
->cr
);
581 cairo_pattern_destroy(pat
);
584 /** Setup some cairo-things for drawing a graph
585 * \param ctx Draw context
588 draw_graph_setup(draw_context_t
*ctx
)
590 cairo_set_antialias(ctx
->cr
, CAIRO_ANTIALIAS_NONE
);
591 cairo_set_line_width(ctx
->cr
, 1.0);
592 /* without it, it can draw over the path on sharp angles
593 * ...too long lines * (...graph_line) */
594 cairo_set_miter_limit(ctx
->cr
, 0.0);
595 cairo_set_line_join(ctx
->cr
, CAIRO_LINE_JOIN_MITER
);
599 * \param ctx Draw context.
600 * \param rect The area to draw into.
601 * \param from Array of starting-point offsets to draw a graph lines.
602 * \param to Array of end-point offsets to draw a graph lines.
603 * \param cur_index Current position in data-array (cycles around).
604 * \param grow Put new values to the left or to the right.
605 * \param gradient_vector Color-Gradient course.
606 * \param pcolor Color at start of gradient_vector.
607 * \param pcolor_center Color in the center.
608 * \param pcolor_end Color at end of gradient_vector.
611 draw_graph(draw_context_t
*ctx
, area_t rect
, int *from
, int *to
, int cur_index
,
612 position_t grow
, vector_t gradient_vector
, const xcolor_t
*pcolor
,
613 const xcolor_t
*pcolor_center
, const xcolor_t
*pcolor_end
)
616 float x
= rect
.x
+ 0.5; /* middle of a pixel */
617 cairo_pattern_t
*pat
;
619 pat
= draw_setup_cairo_color_source(ctx
, gradient_vector
,
620 pcolor
, pcolor_center
, pcolor_end
);
622 if(grow
== Right
) /* draw from right to left */
625 while(++i
< rect
.width
)
627 cairo_move_to(ctx
->cr
, x
, rect
.y
- from
[cur_index
]);
628 cairo_line_to(ctx
->cr
, x
, rect
.y
- to
[cur_index
]);
632 cur_index
= rect
.width
- 1;
635 else /* draw from left to right */
636 while(++i
< rect
.width
)
638 cairo_move_to(ctx
->cr
, x
, rect
.y
- from
[cur_index
]);
639 cairo_line_to(ctx
->cr
, x
, rect
.y
- to
[cur_index
]);
643 cur_index
= rect
.width
- 1;
646 cairo_stroke(ctx
->cr
);
649 cairo_pattern_destroy(pat
);
652 /** Draw a line into a graph-widget.
653 * \param ctx Draw context.
654 * \param rect The area to draw into.
655 * \param to array of offsets to draw the line through...
656 * \param cur_index current position in data-array (cycles around)
657 * \param grow put new values to the left or to the right
658 * \param gradient_vector Color-gradient course.
659 * \param pcolor Color at start of gradient_vector.
660 * \param pcolor_center Color in the center.
661 * \param pcolor_end Color at end of gradient_vector.
664 draw_graph_line(draw_context_t
*ctx
, area_t rect
, int *to
, int cur_index
,
665 position_t grow
, vector_t gradient_vector
, const xcolor_t
*pcolor
,
666 const xcolor_t
*pcolor_center
, const xcolor_t
*pcolor_end
)
670 cairo_pattern_t
*pat
;
672 /* NOTE: without, it sometimes won't draw to some path (centered in a pixel)
673 * ... it won't fill some pixels! It also looks much nicer so.
674 * (since line-drawing is the last on the graph, no need to reset to _NONE) */
675 /* Not much difference to CAIRO_ANTIALIAS_DEFAULT, but recommend for LCD */
676 cairo_set_antialias(ctx
->cr
, CAIRO_ANTIALIAS_SUBPIXEL
);
677 /* a nicer, better visible line compared to 1.0 */
678 cairo_set_line_width(ctx
->cr
, 1.25);
680 pat
= draw_setup_cairo_color_source(ctx
, gradient_vector
, pcolor
, pcolor_center
, pcolor_end
);
682 /* path through the centers of pixels */
689 /* go through the values from old to new. Begin with the oldest. */
690 if(++cur_index
> w
- 1)
693 cairo_move_to(ctx
->cr
, x
, y
- to
[cur_index
]);
696 /* on the left border: fills a pixel also when there's only one value */
697 cairo_move_to(ctx
->cr
, x
- 1.0, y
- to
[cur_index
]);
699 for(i
= 0; i
< w
; i
++)
701 cairo_line_to(ctx
->cr
, x
, y
- to
[cur_index
]);
704 /* cycles around the index */
707 if (++cur_index
> w
- 1)
717 /* onto the right border: fills a pixel also when there's only one value */
719 cairo_line_to(ctx
->cr
, x
, y
- to
[cur_index
]);
721 cairo_stroke(ctx
->cr
);
724 cairo_pattern_destroy(pat
);
725 /* reset line-width */
726 cairo_set_line_width(ctx
->cr
, 1.0);
729 /** Draw an image from ARGB data to a draw context.
730 * Data should be stored as an array of alpha, red, blue, green for each pixel
731 * and the array size should be w * h elements long.
732 * \param ctx Draw context to draw to.
733 * \param x X coordinate.
734 * \param y Y coordinate.
737 * \param wanted_h Wanted height: if > 0, image will be resized.
738 * \param data The image pixels array.
741 draw_image_from_argb_data(draw_context_t
*ctx
, int x
, int y
, int w
, int h
,
742 int wanted_h
, unsigned char *data
)
746 cairo_surface_t
*source
;
748 source
= cairo_image_surface_create_for_data(data
, CAIRO_FORMAT_ARGB32
, w
, h
,
749 #if CAIRO_VERSION_MAJOR < 1 || (CAIRO_VERSION_MAJOR == 1 && CAIRO_VERSION_MINOR < 5) || (CAIRO_VERSION_MAJOR == 1 && CAIRO_VERSION_MINOR == 5 && CAIRO_VERSION_MICRO < 8)
750 sizeof(unsigned char) * 4 * w
);
752 cairo_format_stride_for_width(CAIRO_FORMAT_ARGB32
, w
));
754 cr
= cairo_create(ctx
->surface
);
755 if(wanted_h
> 0 && h
> 0)
757 ratio
= (double) wanted_h
/ (double) h
;
758 cairo_scale(cr
, ratio
, ratio
);
759 cairo_set_source_surface(cr
, source
, x
/ ratio
, y
/ ratio
);
762 cairo_set_source_surface(cr
, source
, x
, y
);
767 cairo_surface_destroy(source
);
770 /** Draw an image to a draw context.
771 * \param ctx Draw context to draw to.
772 * \param x X coordinate.
773 * \param y Y coordinate.
774 * \param wanted_h Wanted height: if > 0, image will be resized.
775 * \param image The image to draw.
778 draw_image(draw_context_t
*ctx
, int x
, int y
, int wanted_h
, image_t
*image
)
780 draw_image_from_argb_data(ctx
, x
, y
, image
->width
, image
->height
, wanted_h
, image
->data
);
784 * \param ctx Draw context to draw with.
785 * \param src Drawable to draw from.
786 * \param dest Drawable to draw to.
787 * \param src_w Drawable width.
788 * \param src_h Drawable height.
789 * \param dest_w Drawable width.
790 * \param dest_h Drawable height.
791 * \param angle angle to rotate.
792 * \param tx Translate to this x coordinate.
793 * \param ty Translate to this y coordinate.
796 draw_rotate(draw_context_t
*ctx
,
797 xcb_pixmap_t src
, xcb_pixmap_t dest
,
798 int src_w
, int src_h
,
799 int dest_w
, int dest_h
,
800 double angle
, int tx
, int ty
)
802 cairo_surface_t
*surface
, *source
;
805 surface
= cairo_xcb_surface_create(globalconf
.connection
, dest
,
806 ctx
->visual
, dest_w
, dest_h
);
807 source
= cairo_xcb_surface_create(globalconf
.connection
, src
,
808 ctx
->visual
, src_w
, src_h
);
809 cr
= cairo_create (surface
);
811 cairo_translate(cr
, tx
, ty
);
812 cairo_rotate(cr
, angle
);
814 cairo_set_source_surface(cr
, source
, 0.0, 0.0);
818 cairo_surface_destroy(source
);
819 cairo_surface_destroy(surface
);
822 /** Return the width and height of a text in pixel.
823 * \param font Font to use.
824 * \param text The text.
825 * \param len The text length.
826 * \param pdata The parser data to fill.
827 * \return Text height and width.
830 draw_text_extents(font_t
*font
, const char *text
, ssize_t len
, draw_parser_data_t
*parser_data
)
832 cairo_surface_t
*surface
;
836 xcb_screen_t
*s
= xutil_screen_get(globalconf
.connection
, globalconf
.default_screen
);
837 area_t geom
= { 0, 0, 0, 0 };
842 if(!draw_text_markup_expand(parser_data
, text
, len
))
845 surface
= cairo_xcb_surface_create(globalconf
.connection
,
846 globalconf
.default_screen
,
847 draw_screen_default_visual(s
),
849 s
->height_in_pixels
);
851 cr
= cairo_create(surface
);
852 layout
= pango_cairo_create_layout(cr
);
853 pango_layout_set_text(layout
, parser_data
->text
, parser_data
->len
);
854 pango_layout_set_attributes(layout
, parser_data
->attr_list
);
855 pango_layout_set_font_description(layout
, font
->desc
);
856 pango_layout_get_pixel_extents(layout
, NULL
, &ext
);
857 g_object_unref(layout
);
859 cairo_surface_destroy(surface
);
861 geom
.width
= ext
.width
;
862 geom
.height
= ext
.height
* 1.5;
867 /** Transform a string to a alignment_t type.
868 * Recognized string are flex, left, center or right. Everything else will be
869 * recognized as AlignLeft.
870 * \param align Atring with align text.
871 * \param len The string length.
872 * \return An alignment_t type.
875 draw_align_fromstr(const char *align
, ssize_t len
)
877 switch (a_tokenize(align
, len
))
879 case A_TK_CENTER
: return AlignCenter
;
880 case A_TK_RIGHT
: return AlignRight
;
881 case A_TK_FLEX
: return AlignFlex
;
882 case A_TK_TOP
: return AlignTop
;
883 case A_TK_BOTTOM
: return AlignBottom
;
884 default: return AlignLeft
;
888 /** Transform an alignment to a string.
889 * \param a The alignment.
890 * \return A string which must not be freed.
893 draw_align_tostr(alignment_t a
)
897 case AlignLeft
: return "left";
898 case AlignCenter
: return "center";
899 case AlignRight
: return "right";
900 case AlignFlex
: return "flex";
901 case AlignBottom
: return "bottom";
902 case AlignTop
: return "top";
903 default: return NULL
;
907 #define RGB_COLOR_8_TO_16(i) (65535 * ((i) & 0xff) / 255)
909 /** Send a request to initialize a X color.
910 * \param color xcolor_t struct to store color into.
911 * \param colstr Color specification.
912 * \return request informations.
914 xcolor_init_request_t
915 xcolor_init_unchecked(xcolor_t
*color
, const char *colstr
, ssize_t len
)
917 xcb_screen_t
*s
= xutil_screen_get(globalconf
.connection
, globalconf
.default_screen
);
918 xcolor_init_request_t req
;
919 unsigned long colnum
;
920 uint16_t red
, green
, blue
;
926 req
.has_error
= true;
933 /* The color is given in RGB value */
940 colnum
= strtoul(colstr
+ 1, &p
, 16);
947 colnum
= strtoul(colstr
+ 1, &p
, 16);
950 req
.alpha
= RGB_COLOR_8_TO_16(colnum
);
956 warn("awesome: error, invalid color '%s'", colstr
);
957 req
.has_error
= true;
961 red
= RGB_COLOR_8_TO_16(colnum
>> 16);
962 green
= RGB_COLOR_8_TO_16(colnum
>> 8);
963 blue
= RGB_COLOR_8_TO_16(colnum
);
966 req
.cookie_hexa
= xcb_alloc_color_unchecked(globalconf
.connection
,
973 req
.cookie_named
= xcb_alloc_named_color_unchecked(globalconf
.connection
,
974 s
->default_colormap
, len
,
978 req
.has_error
= false;
984 /** Initialize a X color.
985 * \param req xcolor_init request.
986 * \return True if color allocation was successfull.
989 xcolor_init_reply(xcolor_init_request_t req
)
996 xcb_alloc_color_reply_t
*hexa_color
;
998 if((hexa_color
= xcb_alloc_color_reply(globalconf
.connection
,
999 req
.cookie_hexa
, NULL
)))
1001 req
.color
->pixel
= hexa_color
->pixel
;
1002 req
.color
->red
= hexa_color
->red
;
1003 req
.color
->green
= hexa_color
->green
;
1004 req
.color
->blue
= hexa_color
->blue
;
1005 req
.color
->alpha
= req
.alpha
;
1006 req
.color
->initialized
= true;
1007 p_delete(&hexa_color
);
1013 xcb_alloc_named_color_reply_t
*named_color
;
1015 if((named_color
= xcb_alloc_named_color_reply(globalconf
.connection
,
1016 req
.cookie_named
, NULL
)))
1018 req
.color
->pixel
= named_color
->pixel
;
1019 req
.color
->red
= named_color
->visual_red
;
1020 req
.color
->green
= named_color
->visual_green
;
1021 req
.color
->blue
= named_color
->visual_blue
;
1022 req
.color
->alpha
= req
.alpha
;
1023 req
.color
->initialized
= true;
1024 p_delete(&named_color
);
1029 warn("awesome: error, cannot allocate color '%s'", req
.colstr
);
1033 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80