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.
24 #include <cairo-xlib.h>
29 extern AwesomeConf globalconf
;
31 /** Get a draw context
32 * \param phys_screen physical screen id
34 * \param height height
35 * \return draw context ref
38 draw_get_context(int phys_screen
, int width
, int height
)
40 DrawCtx
*d
= p_new(DrawCtx
, 1);
42 d
->phys_screen
= phys_screen
;
45 d
->depth
= DefaultDepth(globalconf
.display
, phys_screen
);
46 d
->visual
= DefaultVisual(globalconf
.display
, phys_screen
);
47 d
->drawable
= XCreatePixmap(globalconf
.display
,
48 RootWindow(globalconf
.display
, phys_screen
),
49 width
, height
, d
->depth
);
54 /** Free a draw context and its drawable
55 * \param ctx the draw context to free
58 draw_free_context(DrawCtx
*ctx
)
60 XFreePixmap(globalconf
.display
, ctx
->drawable
);
64 /** Draw text into a draw context
69 * \param align alignment
70 * \param padding padding to add before drawing the text
71 * \param font font to use
72 * \param text text to draw
73 * \param fg foreground color
74 * \param bg background color
77 draw_text(DrawCtx
*ctx
,
82 XftFont
*font
, const char *text
,
88 cairo_font_face_t
*font_face
;
89 cairo_surface_t
*surface
;
92 draw_rectangle(ctx
, x
, y
, w
, h
, True
, bg
);
94 olen
= len
= a_strlen(text
);
99 surface
= cairo_xlib_surface_create(globalconf
.display
, ctx
->drawable
, ctx
->visual
, ctx
->width
, ctx
->height
);
100 cr
= cairo_create(surface
);
101 font_face
= cairo_ft_font_face_create_for_pattern(font
->pattern
);
102 cairo_set_font_face(cr
, font_face
);
103 cairo_set_font_size(cr
, font
->height
);
104 cairo_set_source_rgb(cr
, fg
.red
/ 65535.0, fg
.green
/ 65535.0, fg
.blue
/ 65535.0);
106 if(len
>= sizeof(buf
))
107 len
= sizeof(buf
) - 1;
108 memcpy(buf
, text
, len
);
110 while(len
&& (nw
= (draw_textwidth(font
, buf
)) + padding
* 2) > w
)
113 return; /* too long */
127 cairo_move_to(cr
, x
+ padding
, y
+ font
->ascent
+ (ctx
->height
- font
->height
) / 2);
130 cairo_move_to(cr
, x
+ (w
- nw
) + padding
, y
+ font
->ascent
+ (ctx
->height
- font
->height
) / 2);
133 cairo_move_to(cr
, x
+ ((w
- nw
) / 2) + padding
, y
+ font
->ascent
+ (ctx
->height
- font
->height
) / 2);
136 cairo_show_text(cr
, buf
);
138 cairo_font_face_destroy(font_face
);
140 cairo_surface_destroy(surface
);
144 draw_rectangle(DrawCtx
*ctx
, int x
, int y
, int w
, int h
, Bool filled
, XColor color
)
146 cairo_surface_t
*surface
;
149 surface
= cairo_xlib_surface_create(globalconf
.display
, ctx
->drawable
, ctx
->visual
, ctx
->width
, ctx
->height
);
150 cr
= cairo_create (surface
);
152 cairo_set_antialias(cr
, CAIRO_ANTIALIAS_NONE
);
153 cairo_set_line_width(cr
, 1.0);
154 cairo_set_source_rgb(cr
, color
.red
/ 65535.0, color
.green
/ 65535.0, color
.blue
/ 65535.0);
157 cairo_rectangle(cr
, x
, y
, w
, h
);
161 cairo_rectangle(cr
, x
+ 1, y
, w
- 1, h
- 1);
166 cairo_surface_destroy(surface
);
169 /* draws a graph; it takes the line-lengths from 'h' (w = size of h)
170 * It cycles backwards through it, beginning at position h_index, until
171 * h_index is reached again (wrapped around). */
174 draw_graph(DrawCtx
*ctx
, int x
, int y
, int w
, int *h
, int h_index
, XColor color
)
176 cairo_surface_t
*surface
;
180 surface
= cairo_xlib_surface_create(globalconf
.display
, ctx
->drawable
, ctx
->visual
, ctx
->width
, ctx
->height
);
181 cr
= cairo_create (surface
);
183 cairo_set_antialias(cr
, CAIRO_ANTIALIAS_NONE
);
184 cairo_set_line_width(cr
, 1.0);
185 cairo_set_source_rgb(cr
, color
.red
/ 65535.0, color
.green
/ 65535.0, color
.blue
/ 65535.0);
191 cairo_move_to(cr
, x
, y
);
192 cairo_line_to(cr
, x
, y
- h
[i_tmp
]);
202 cairo_surface_destroy(surface
);
206 draw_circle(DrawCtx
*ctx
, int x
, int y
, int r
, Bool filled
, XColor color
)
208 cairo_surface_t
*surface
;
211 surface
= cairo_xlib_surface_create(globalconf
.display
, ctx
->drawable
, ctx
->visual
, ctx
->width
, ctx
->height
);
212 cr
= cairo_create (surface
);
213 cairo_set_line_width(cr
, 1.0);
214 cairo_set_source_rgb(cr
, color
.red
/ 65535.0, color
.green
/ 65535.0, color
.blue
/ 65535.0);
217 cairo_arc (cr
, x
+ r
, y
+ r
, r
, 0, 2 * M_PI
);
221 cairo_arc (cr
, x
+ r
, y
+ r
, r
- 1, 0, 2 * M_PI
);
226 cairo_surface_destroy(surface
);
229 void draw_image_from_argb_data(DrawCtx
*ctx
, int x
, int y
, int w
, int h
,
230 int wanted_h
, unsigned char *data
)
233 cairo_surface_t
*surface
, *source
;
236 surface
= cairo_xlib_surface_create(globalconf
.display
, ctx
->drawable
, ctx
->visual
, ctx
->width
, ctx
->height
);
237 source
= cairo_image_surface_create_for_data(data
, CAIRO_FORMAT_ARGB32
, w
, h
, 0);
238 cr
= cairo_create (surface
);
239 if(wanted_h
> 0 && h
> 0)
241 ratio
= (double) wanted_h
/ (double) h
;
242 cairo_scale(cr
, ratio
, ratio
);
243 cairo_set_source_surface(cr
, source
, x
/ ratio
, y
/ ratio
);
246 cairo_set_source_surface(cr
, source
, x
, y
);
250 cairo_surface_destroy(source
);
251 cairo_surface_destroy(surface
);
255 draw_image(DrawCtx
*ctx
, int x
, int y
, int wanted_h
, const char *filename
)
259 cairo_surface_t
*surface
, *source
;
262 source
= cairo_xlib_surface_create(globalconf
.display
, ctx
->drawable
, ctx
->visual
, ctx
->width
, ctx
->height
);
263 surface
= cairo_image_surface_create_from_png(filename
);
264 cr
= cairo_create (source
);
265 if(wanted_h
> 0 && (h
= cairo_image_surface_get_height(surface
)) > 0)
267 ratio
= (double) wanted_h
/ (double) h
;
268 cairo_scale(cr
, ratio
, ratio
);
269 cairo_set_source_surface(cr
, surface
, x
/ ratio
, y
/ ratio
);
272 cairo_set_source_surface(cr
, surface
, x
, y
);
276 cairo_surface_destroy(source
);
277 cairo_surface_destroy(surface
);
283 draw_get_image_size(const char *filename
)
286 cairo_surface_t
*surface
;
288 surface
= cairo_image_surface_create_from_png(filename
);
289 cairo_image_surface_get_width(surface
);
292 size
.width
= cairo_image_surface_get_width(surface
);
293 size
.height
= cairo_image_surface_get_height(surface
);
294 cairo_surface_destroy(surface
);
300 draw_rotate(DrawCtx
*ctx
, int screen
, double angle
, int tx
, int ty
)
302 cairo_surface_t
*surface
, *source
;
304 Drawable newdrawable
;
306 newdrawable
= XCreatePixmap(globalconf
.display
,
307 RootWindow(globalconf
.display
, screen
),
308 ctx
->height
, ctx
->width
,
310 surface
= cairo_xlib_surface_create(globalconf
.display
, newdrawable
, ctx
->visual
, ctx
->height
, ctx
->width
);
311 source
= cairo_xlib_surface_create(globalconf
.display
, ctx
->drawable
, ctx
->visual
, ctx
->width
, ctx
->height
);
312 cr
= cairo_create (surface
);
314 cairo_translate(cr
, tx
, ty
);
315 cairo_rotate(cr
, angle
);
317 cairo_set_source_surface(cr
, source
, 0.0, 0.0);
321 cairo_surface_destroy(source
);
322 cairo_surface_destroy(surface
);
328 draw_textwidth(XftFont
*font
, char *text
)
330 cairo_surface_t
*surface
;
332 cairo_font_face_t
*font_face
;
333 cairo_text_extents_t te
;
338 surface
= cairo_xlib_surface_create(globalconf
.display
, DefaultScreen(globalconf
.display
),
339 DefaultVisual(globalconf
.display
, DefaultScreen(globalconf
.display
)),
340 DisplayWidth(globalconf
.display
, DefaultScreen(globalconf
.display
)),
341 DisplayHeight(globalconf
.display
, DefaultScreen(globalconf
.display
)));
342 cr
= cairo_create(surface
);
343 font_face
= cairo_ft_font_face_create_for_pattern(font
->pattern
);
344 cairo_set_font_face(cr
, font_face
);
345 cairo_set_font_size(cr
, font
->height
);
346 cairo_text_extents(cr
, text
, &te
);
348 cairo_surface_destroy(surface
);
349 cairo_font_face_destroy(font_face
);
351 return MAX(te
.x_advance
, te
.width
);
355 draw_get_align(const char *align
)
357 if(!a_strncmp(align
, "center", 6))
359 else if(!a_strncmp(align
, "right", 5))
365 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80