]> icculus.org git repositories - dana/openbox.git/blob - render/color.c
offsets in planar surfaces
[dana/openbox.git] / render / color.c
1 #include <X11/Xlib.h>
2 #include <X11/Xutil.h>
3 #include "render.h"
4 #include "color.h"
5 #include "../kernel/openbox.h"
6 void color_allocate_gc(color_rgb *in)
7 {
8     XGCValues gcv;
9
10     gcv.foreground = in->pixel;
11     gcv.cap_style = CapProjecting;
12     in->gc = XCreateGC(ob_display, ob_root, GCForeground | GCCapStyle, &gcv);
13 }
14
15 color_rgb *color_parse(char *colorname)
16 {
17     XColor xcol;
18
19     g_assert(colorname != NULL);
20     // get rgb values from colorname                                  
21
22     xcol.red = 0;
23     xcol.green = 0;
24     xcol.blue = 0;
25     xcol.pixel = 0;
26     if (!XParseColor(ob_display, render_colormap, colorname, &xcol)) {
27         g_warning("unable to parse color '%s'", colorname);
28         return NULL;
29     }
30     return color_new(xcol.red >> 8, xcol.green >> 8, xcol.blue >> 8);
31 }
32
33 color_rgb *color_new(int r, int g, int b)
34 {
35 /* this should be replaced with something far cooler */
36     color_rgb *out;
37     XColor xcol;
38     xcol.red = (r << 8) | r;
39     xcol.green = (g << 8) | g;
40     xcol.blue = (b << 8) | b;
41     if (XAllocColor(ob_display, render_colormap, &xcol)) {
42         out = g_new(color_rgb, 1);
43         out->r = xcol.red >> 8;
44         out->g = xcol.green >> 8;
45         out->b = xcol.blue >> 8;
46         out->gc = None;
47         out->pixel = xcol.pixel;
48         return out;
49     }
50     return NULL;
51 }
52
53 void color_free(color_rgb *c)
54 {
55     if (c->gc != None)
56         XFreeGC(ob_display, c->gc);
57     free(c);
58 }