2 * color.c - color functions
4 * Copyright © 2008-2009 Julien Danjou <julien@danjou.info>
5 * Copyright © 2009 Uli Schlachter <psychon@znc.in>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 #include "globalconf.h"
27 #include "common/xutil.h"
29 #define RGB_8TO16(i) (0xffff * ((i) & 0xff) / 0xff)
30 #define RGB_16TO8(i) (0xff * ((i) & 0xffff) / 0xffff)
32 /** Parse an hexadecimal color string to its component.
33 * \param colstr The color string.
34 * \param len The color string length.
35 * \param red A pointer to the red color to fill.
36 * \param green A pointer to the green color to fill.
37 * \param blue A pointer to the blue color to fill.
38 * \param alpha A pointer to the alpha color to fill.
39 * \return True if everything alright.
42 color_parse(const char *colstr
, ssize_t len
,
43 uint8_t *red
, uint8_t *green
, uint8_t *blue
, uint8_t *alpha
)
50 colnum
= strtoul(colstr
+ 1, &p
, 16);
58 colnum
= strtoul(colstr
+ 1, &p
, 16);
61 *alpha
= colnum
& 0xff;
67 warn("awesome: error, invalid color '%s'", colstr
);
71 *red
= (colnum
>> 16) & 0xff;
72 *green
= (colnum
>> 8) & 0xff;
73 *blue
= colnum
& 0xff;
78 /** Send a request to initialize a color.
79 * If you are only interested in the color's pixel value or need both, the pixel
80 * value and the rgba components, use xcolor_init_unchecked() and/or
81 * xcolor_to_color() instead.
82 * \param color color_t struct to store color into.
83 * \param colstr Color specification.
84 * \param len The length of colstr (which still MUST be NULL terminated).
85 * \return request informations.
88 color_init_unchecked(color_t
*color
, const char *colstr
, ssize_t len
)
90 xcb_screen_t
*s
= xutil_screen_get(globalconf
.connection
, globalconf
.default_screen
);
91 color_init_cookie_t req
;
101 /* The color is given in RGB value */
104 if(!color_parse(colstr
, len
, &color
->red
, &color
->green
, &color
->blue
, &color
->alpha
))
106 req
.has_error
= true;
110 color
->initialized
= true;
112 /* This means everything is done and _reply() will just return true */
119 req
.cookie
= xcb_alloc_named_color_unchecked(globalconf
.connection
,
120 s
->default_colormap
, len
,
124 req
.has_error
= false;
129 /** Initialize a color.
130 * \param req color_init request.
131 * \return True if color allocation was successful.
134 color_init_reply(color_init_cookie_t req
)
139 if(req
.color
== NULL
)
142 xcb_alloc_named_color_reply_t
*named_color
;
144 if((named_color
= xcb_alloc_named_color_reply(globalconf
.connection
,
147 req
.color
->red
= named_color
->visual_red
;
148 req
.color
->green
= named_color
->visual_green
;
149 req
.color
->blue
= named_color
->visual_blue
;
150 req
.color
->alpha
= 0xff;
151 req
.color
->initialized
= true;
152 p_delete(&named_color
);
156 warn("awesome: error, cannot allocate color '%s'", req
.colstr
);
160 /** Send a request to initialize a X color.
161 * If you are only interested in the rgba values and don't need the color's
162 * pixel value, you should use color_init_unchecked() instead.
163 * \param color xcolor_t struct to store color into.
164 * \param colstr Color specification.
165 * \param len The length of colstr (which still MUST be NULL terminated).
166 * \return request informations.
168 xcolor_init_request_t
169 xcolor_init_unchecked(xcolor_t
*color
, const char *colstr
, ssize_t len
)
171 xcb_screen_t
*s
= xutil_screen_get(globalconf
.connection
, globalconf
.default_screen
);
172 xcolor_init_request_t req
;
173 uint8_t red
, green
, blue
, alpha
;
179 req
.has_error
= true;
186 /* The color is given in RGB value */
189 if(!color_parse(colstr
, len
, &red
, &green
, &blue
, &alpha
))
191 warn("awesome: error, invalid color '%s'", colstr
);
192 req
.has_error
= true;
196 req
.alpha
= RGB_8TO16(alpha
);
199 req
.cookie_hexa
= xcb_alloc_color_unchecked(globalconf
.connection
,
208 req
.cookie_named
= xcb_alloc_named_color_unchecked(globalconf
.connection
,
209 s
->default_colormap
, len
,
213 req
.has_error
= false;
219 /** Initialize a X color.
220 * \param req xcolor_init request.
221 * \return True if color allocation was successful.
224 xcolor_init_reply(xcolor_init_request_t req
)
231 xcb_alloc_color_reply_t
*hexa_color
;
233 if((hexa_color
= xcb_alloc_color_reply(globalconf
.connection
,
234 req
.cookie_hexa
, NULL
)))
236 req
.color
->pixel
= hexa_color
->pixel
;
237 req
.color
->red
= hexa_color
->red
;
238 req
.color
->green
= hexa_color
->green
;
239 req
.color
->blue
= hexa_color
->blue
;
240 req
.color
->alpha
= req
.alpha
;
241 req
.color
->initialized
= true;
242 p_delete(&hexa_color
);
248 xcb_alloc_named_color_reply_t
*named_color
;
250 if((named_color
= xcb_alloc_named_color_reply(globalconf
.connection
,
251 req
.cookie_named
, NULL
)))
253 req
.color
->pixel
= named_color
->pixel
;
254 req
.color
->red
= named_color
->visual_red
;
255 req
.color
->green
= named_color
->visual_green
;
256 req
.color
->blue
= named_color
->visual_blue
;
257 req
.color
->alpha
= req
.alpha
;
258 req
.color
->initialized
= true;
259 p_delete(&named_color
);
264 warn("awesome: error, cannot allocate color '%s'", req
.colstr
);
268 /** Convert a xcolor struct to a color one.
269 * \param xcol The X color.
270 * \param col The color.
271 * \return True if everything has been converted.
274 xcolor_to_color(const xcolor_t
*xcol
, color_t
*col
)
276 if (!xcol
->initialized
)
278 col
->initialized
= false;
282 col
->initialized
= true;
283 col
->red
= RGB_16TO8(xcol
->red
);
284 col
->green
= RGB_16TO8(xcol
->green
);
285 col
->blue
= RGB_16TO8(xcol
->blue
);
286 col
->alpha
= RGB_16TO8(xcol
->alpha
);
291 /** Push a color as a string onto the stack
292 * \param L The Lua VM state.
293 * \param c The color to push.
294 * \return The number of elements pushed on stack.
297 luaA_pushxcolor(lua_State
*L
, const xcolor_t c
)
299 uint8_t r
= (unsigned) c
.red
* 0xff / 0xffff;
300 uint8_t g
= (unsigned) c
.green
* 0xff / 0xffff;
301 uint8_t b
= (unsigned) c
.blue
* 0xff / 0xffff;
302 uint8_t a
= (unsigned) c
.alpha
* 0xff / 0xffff;
305 /* do not print alpha if it's full */
307 len
= snprintf(s
, sizeof(s
), "#%02x%02x%02x", r
, g
, b
);
309 len
= snprintf(s
, sizeof(s
), "#%02x%02x%02x%02x", r
, g
, b
, a
);
310 lua_pushlstring(L
, s
, len
);
314 /** Push a color as a string onto the stack
315 * \param L The Lua VM state.
316 * \param c The color to push.
317 * \return The number of elements pushed on stack.
320 luaA_pushcolor(lua_State
*L
, const color_t
*c
)
323 uint8_t g
= c
->green
;
325 uint8_t a
= c
->alpha
;
328 /* do not print alpha if it's full */
330 len
= snprintf(s
, sizeof(s
), "#%02x%02x%02x", r
, g
, b
);
332 len
= snprintf(s
, sizeof(s
), "#%02x%02x%02x%02x", r
, g
, b
, a
);
333 lua_pushlstring(L
, s
, len
);
337 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80