]> Dogcows Code - chaz/openbox/blob - render/render.c
add a Rect to the textures for positioning them
[chaz/openbox] / render / render.c
1 #include <X11/Xlib.h>
2 #include <X11/Xutil.h>
3 #include <glib.h>
4 #include "render.h"
5 #include "gradient.h"
6 #include "font.h"
7 #include "mask.h"
8 #include "color.h"
9 #include "../kernel/openbox.h"
10
11 int render_depth;
12 Visual *render_visual;
13 Colormap render_colormap;
14 int render_red_offset = 0, render_green_offset = 0, render_blue_offset = 0;
15 int render_red_shift, render_green_shift, render_blue_shift;
16
17 void render_startup(void)
18 {
19 paint = x_paint;
20
21 render_depth = DefaultDepth(ob_display, ob_screen);
22 render_visual = DefaultVisual(ob_display, ob_screen);
23 render_colormap = DefaultColormap(ob_display, ob_screen);
24
25 if (render_depth < 8) {
26 XVisualInfo vinfo_template, *vinfo_return;
27 /* search for a TrueColor Visual... if we can't find one...
28 we will use the default visual for the screen */
29 int vinfo_nitems;
30 int best = -1;
31
32 vinfo_template.screen = ob_screen;
33 vinfo_template.class = TrueColor;
34 vinfo_return = XGetVisualInfo(ob_display,
35 VisualScreenMask | VisualClassMask,
36 &vinfo_template, &vinfo_nitems);
37 if (vinfo_return) {
38 int i;
39 int max_depth = 1;
40 for (i = 0; i < vinfo_nitems; ++i) {
41 if (vinfo_return[i].depth > max_depth) {
42 if (max_depth == 24 && vinfo_return[i].depth > 24)
43 break; /* prefer 24 bit over 32 */
44 max_depth = vinfo_return[i].depth;
45 best = i;
46 }
47 }
48 if (max_depth < render_depth) best = -1;
49 }
50 if (best != -1) {
51 render_depth = vinfo_return[best].depth;
52 render_visual = vinfo_return[best].visual;
53 render_colormap = XCreateColormap(ob_display, ob_root, render_visual,
54 AllocNone);
55 }
56 XFree(vinfo_return);
57 }
58 truecolor_startup();
59 }
60
61 void truecolor_startup(void)
62 {
63 unsigned long red_mask, green_mask, blue_mask;
64 XImage *timage = NULL;
65
66 timage = XCreateImage(ob_display, render_visual, render_depth,
67 ZPixmap, 0, NULL, 1, 1, 32, 0);
68 g_assert(timage != NULL);
69 /* find the offsets for each color in the visual's masks */
70 red_mask = timage->red_mask;
71 green_mask = timage->green_mask;
72 blue_mask = timage->blue_mask;
73
74 render_red_offset = 0;
75 render_green_offset = 0;
76 render_blue_offset = 0;
77
78 while (! (red_mask & 1)) { render_red_offset++; red_mask >>= 1; }
79 while (! (green_mask & 1)) { render_green_offset++; green_mask >>= 1; }
80 while (! (blue_mask & 1)) { render_blue_offset++; blue_mask >>= 1; }
81
82 render_red_shift = render_green_shift = render_blue_shift = 8;
83 while (red_mask) { red_mask >>= 1; render_red_shift--; }
84 while (green_mask) { green_mask >>= 1; render_green_shift--; }
85 while (blue_mask) { blue_mask >>= 1; render_blue_shift--; }
86 XFree(timage);
87 }
88
89 void x_paint(Window win, Appearance *l, int x, int y, int w, int h)
90 {
91 int i;
92 XImage *im = NULL;
93 Pixmap oldp;
94
95 if (w <= 0 || h <= 0 || x+w <= 0 || y+h <= 0) return;
96
97 g_assert(l->surface.type == Surface_Planar);
98
99 oldp = l->pixmap; /* save to free after changing the visible pixmap */
100 l->pixmap = XCreatePixmap(ob_display, ob_root, x+w, y+h, render_depth);
101 g_assert(l->pixmap != None);
102
103 if (l->xftdraw != NULL)
104 XftDrawDestroy(l->xftdraw);
105 l->xftdraw = XftDrawCreate(ob_display, l->pixmap, render_visual,
106 render_colormap);
107 g_assert(l->xftdraw != NULL);
108
109 g_free(l->surface.data.planar.pixel_data);
110 l->surface.data.planar.pixel_data = g_new(pixel32, w * h);
111
112 if (l->surface.data.planar.grad == Background_Solid)
113 gradient_solid(l, x, y, w, h);
114 else gradient_render(&l->surface, w, h);
115
116 /*this is not the right place for this code, it's only here so
117 text rendering shows up for now.
118 */
119 if (l->surface.data.planar.grad != Background_Solid) {
120 im = XCreateImage(ob_display, render_visual, render_depth,
121 ZPixmap, 0, NULL, w, h, 32, 0);
122 g_assert(im != NULL);
123 im->byte_order = endian;
124 im->data = (char *)l->surface.data.planar.pixel_data;
125 reduce_depth((pixel32*)im->data, im);
126 XPutImage(ob_display, l->pixmap, DefaultGC(ob_display, ob_screen),
127 im, 0, 0, x, y, w, h);
128 im->data = NULL;
129 XDestroyImage(im);
130 }
131
132 for (i = 0; i < l->textures; i++) {
133 switch (l->texture[i].type) {
134 case Text:
135 if (l->xftdraw == NULL) {
136 l->xftdraw = XftDrawCreate(ob_display, l->pixmap,
137 render_visual, render_colormap);
138 }
139 font_draw(l->xftdraw, &l->texture[i].data.text,
140 &l->texture[i].position);
141 break;
142 case Bitmask:
143 if (l->texture[i].data.mask.color->gc == None)
144 color_allocate_gc(l->texture[i].data.mask.color);
145 mask_draw(l->pixmap, &l->texture[i].data.mask,
146 &l->texture[i].position);
147 break;
148 }
149 }
150 XSetWindowBackgroundPixmap(ob_display, win, l->pixmap);
151 XClearWindow(ob_display, win);
152 if (oldp != None) XFreePixmap(ob_display, oldp);
153 }
154
155 /*
156 void gl_paint(Window win, Appearance *l)
157 {
158 glXMakeCurrent(ob_display, win, gl_context);
159 }
160 */
161
162 void render_shutdown(void)
163 {
164 }
165
166 Appearance *appearance_new(SurfaceType type, int numtex)
167 {
168 PlanarSurface *p;
169 Appearance *out;
170
171 out = g_new(Appearance, 1);
172 out->surface.type = type;
173 out->textures = numtex;
174 out->xftdraw = NULL;
175 if (numtex) out->texture = g_new(Texture, numtex);
176 else out->texture = NULL;
177 out->pixmap = None;
178
179 switch (type) {
180 case Surface_Planar:
181 p = &out->surface.data.planar;
182 p->primary = NULL;
183 p->secondary = NULL;
184 p->border_color = NULL;
185 p->pixel_data = NULL;
186 break;
187 }
188 return out;
189 }
190
191 Appearance *appearance_copy(Appearance *orig)
192 {
193 PlanarSurface *spo, *spc;
194 Appearance *copy = g_new(Appearance, 1);
195 copy->surface.type = orig->surface.type;
196 switch (orig->surface.type) {
197 case Surface_Planar:
198 spo = &(orig->surface.data.planar);
199 spc = &(copy->surface.data.planar);
200 spc->grad = spo->grad;
201 spc->relief = spo->relief;
202 spc->bevel = spo->bevel;
203 if (spo->primary != NULL)
204 spc->primary = color_new(spo->primary->r,
205 spo->primary->g,
206 spo->primary->b);
207 else spc->primary = NULL;
208
209 if (spo->secondary != NULL)
210 spc->secondary = color_new(spo->secondary->r,
211 spo->secondary->g,
212 spo->secondary->b);
213 else spc->secondary = NULL;
214
215 if (spo->border_color != NULL)
216 spc->border_color = color_new(spo->border_color->r,
217 spo->border_color->g,
218 spo->border_color->b);
219 else spc->border_color = NULL;
220
221 spc->interlaced = spo->interlaced;
222 spc->border = spo->border;
223 spc->pixel_data = NULL;
224 break;
225 }
226 copy->textures = orig->textures;
227 copy->texture = g_memdup(orig->texture, orig->textures * sizeof(Texture));
228 copy->pixmap = None;
229 copy->xftdraw = NULL;
230 return copy;
231 }
232
233 void appearance_free(Appearance *a)
234 {
235 PlanarSurface *p;
236 if (a->pixmap != None) XFreePixmap(ob_display, a->pixmap);
237 if (a->xftdraw != NULL) XftDrawDestroy(a->xftdraw);
238 if (a->textures)
239 g_free(a->texture);
240 if (a->surface.type == Surface_Planar) {
241 p = &a->surface.data.planar;
242 if (p->primary != NULL) color_free(p->primary);
243 if (p->secondary != NULL) color_free(p->secondary);
244 if (p->border_color != NULL) color_free(p->border_color);
245 if (p->pixel_data != NULL) g_free(p->pixel_data);
246 }
247 g_free(a);
248 }
This page took 0.047651 seconds and 5 git commands to generate.