]> Dogcows Code - chaz/openbox/blob - obrender/render.c
cb698d6bdc3b040727641f5e00de8327ba8c030d
[chaz/openbox] / obrender / render.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3 render.c for the Openbox window manager
4 Copyright (c) 2006 Mikael Magnusson
5 Copyright (c) 2003-2007 Dana Jansens
6 Copyright (c) 2003 Derek Foreman
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 See the COPYING file for a copy of the GNU General Public License.
19 */
20
21 #include "render.h"
22 #include "gradient.h"
23 #include "font.h"
24 #include "mask.h"
25 #include "color.h"
26 #include "image.h"
27 #include "theme.h"
28
29 #include <glib.h>
30 #include <X11/Xlib.h>
31 #include <X11/Xutil.h>
32 #include <X11/Xft/Xft.h>
33
34 #ifdef HAVE_STDLIB_H
35 # include <stdlib.h>
36 #endif
37
38 static void pixel_data_to_pixmap(RrAppearance *l,
39 gint x, gint y, gint w, gint h);
40
41 Pixmap RrPaintPixmap(RrAppearance *a, gint w, gint h)
42 {
43 gint i, transferred = 0, force_transfer = 0;
44 Pixmap oldp = None;
45 RrRect tarea; /* area in which to draw textures */
46 gboolean resized;
47
48 if (w <= 0 || h <= 0) return None;
49
50 if (a->surface.parentx < 0 || a->surface.parenty < 0) {
51 /* ob_debug("Invalid parent co-ordinates\n"); */
52 return None;
53 }
54
55 if (a->surface.grad == RR_SURFACE_PARENTREL &&
56 (a->surface.parentx >= a->surface.parent->w ||
57 a->surface.parenty >= a->surface.parent->h))
58 {
59 return None;
60 }
61
62 resized = (a->w != w || a->h != h);
63
64 oldp = a->pixmap; /* save to free after changing the visible pixmap */
65 a->pixmap = XCreatePixmap(RrDisplay(a->inst),
66 RrRootWindow(a->inst),
67 w, h, RrDepth(a->inst));
68
69 g_assert(a->pixmap != None);
70 a->w = w;
71 a->h = h;
72
73 if (a->xftdraw != NULL)
74 XftDrawDestroy(a->xftdraw);
75 a->xftdraw = XftDrawCreate(RrDisplay(a->inst), a->pixmap,
76 RrVisual(a->inst), RrColormap(a->inst));
77 g_assert(a->xftdraw != NULL);
78
79 if (resized) {
80 g_free(a->surface.pixel_data);
81 a->surface.pixel_data = g_new(RrPixel32, w * h);
82 }
83
84 RrRender(a, w, h);
85
86 {
87 gint l, t, r, b;
88 RrMargins(a, &l, &t, &r, &b);
89 RECT_SET(tarea, l, t, w - l - r, h - t - b);
90 }
91
92 for (i = 0; i < a->textures; i++) {
93 switch (a->texture[i].type) {
94 case RR_TEXTURE_NONE:
95 break;
96 case RR_TEXTURE_TEXT:
97 if (!transferred) {
98 transferred = 1;
99 if ((a->surface.grad != RR_SURFACE_SOLID)
100 || (a->surface.interlaced))
101 pixel_data_to_pixmap(a, 0, 0, w, h);
102 }
103 if (a->xftdraw == NULL) {
104 a->xftdraw = XftDrawCreate(RrDisplay(a->inst), a->pixmap,
105 RrVisual(a->inst),
106 RrColormap(a->inst));
107 }
108 RrFontDraw(a->xftdraw, &a->texture[i].data.text, &tarea);
109 break;
110 case RR_TEXTURE_LINE_ART:
111 if (!transferred) {
112 transferred = 1;
113 if ((a->surface.grad != RR_SURFACE_SOLID)
114 || (a->surface.interlaced))
115 pixel_data_to_pixmap(a, 0, 0, w, h);
116 }
117 XDrawLine(RrDisplay(a->inst), a->pixmap,
118 RrColorGC(a->texture[i].data.lineart.color),
119 a->texture[i].data.lineart.x1,
120 a->texture[i].data.lineart.y1,
121 a->texture[i].data.lineart.x2,
122 a->texture[i].data.lineart.y2);
123 break;
124 case RR_TEXTURE_MASK:
125 if (!transferred) {
126 transferred = 1;
127 if ((a->surface.grad != RR_SURFACE_SOLID)
128 || (a->surface.interlaced))
129 pixel_data_to_pixmap(a, 0, 0, w, h);
130 }
131 RrPixmapMaskDraw(a->pixmap, &a->texture[i].data.mask, &tarea);
132 break;
133 case RR_TEXTURE_IMAGE:
134 g_assert(!transferred);
135 {
136 RrRect narea = tarea;
137 RrTextureImage *img = &a->texture[i].data.image;
138 narea.x += img->tx;
139 narea.width -= img->tx;
140 narea.y += img->ty;
141 narea.height -= img->ty;
142 if (img->twidth)
143 narea.width = MIN(narea.width, img->twidth);
144 if (img->theight)
145 narea.height = MIN(narea.height, img->theight);
146 RrImageDrawImage(a->surface.pixel_data,
147 &a->texture[i].data.image,
148 a->w, a->h,
149 &narea);
150 }
151 force_transfer = 1;
152 break;
153 case RR_TEXTURE_RGBA:
154 g_assert(!transferred);
155 {
156 RrRect narea = tarea;
157 RrTextureRGBA *rgb = &a->texture[i].data.rgba;
158 narea.x += rgb->tx;
159 narea.width -= rgb->tx;
160 narea.y += rgb->ty;
161 narea.height -= rgb->ty;
162 if (rgb->twidth)
163 narea.width = MIN(narea.width, rgb->twidth);
164 if (rgb->theight)
165 narea.height = MIN(narea.height, rgb->theight);
166 RrImageDrawRGBA(a->surface.pixel_data,
167 &a->texture[i].data.rgba,
168 a->w, a->h,
169 &narea);
170 }
171 force_transfer = 1;
172 break;
173 case RR_TEXTURE_NUM_TYPES:
174 g_assert_not_reached();
175 }
176 }
177
178 if (!transferred) {
179 transferred = 1;
180 if ((a->surface.grad != RR_SURFACE_SOLID) || (a->surface.interlaced) ||
181 force_transfer)
182 {
183 pixel_data_to_pixmap(a, 0, 0, w, h);
184 }
185 }
186
187 return oldp;
188 }
189
190 void RrPaint(RrAppearance *a, Window win, gint w, gint h)
191 {
192 Pixmap oldp;
193
194 oldp = RrPaintPixmap(a, w, h);
195 XSetWindowBackgroundPixmap(RrDisplay(a->inst), win, a->pixmap);
196 XClearWindow(RrDisplay(a->inst), win);
197 /* free this after changing the visible pixmap */
198 if (oldp) XFreePixmap(RrDisplay(a->inst), oldp);
199 }
200
201 RrAppearance *RrAppearanceNew(const RrInstance *inst, gint numtex)
202 {
203 RrAppearance *out;
204
205 out = g_slice_new0(RrAppearance);
206 out->inst = inst;
207 out->textures = numtex;
208 out->surface.bevel_light_adjust = 128;
209 out->surface.bevel_dark_adjust = 64;
210 if (numtex) out->texture = g_new0(RrTexture, numtex);
211
212 return out;
213 }
214
215 void RrAppearanceRemoveTextures(RrAppearance *a)
216 {
217 g_free(a->texture);
218 a->textures = 0;
219 }
220
221 void RrAppearanceAddTextures(RrAppearance *a, gint numtex)
222 {
223 g_assert(a->textures == 0);
224
225 a->textures = numtex;
226 if (numtex) a->texture = g_new0(RrTexture, numtex);
227 }
228
229 void RrAppearanceClearTextures(RrAppearance *a)
230 {
231 memset(a->texture, 0, a->textures * sizeof(RrTexture));
232 }
233
234 /* shallow copy means up the ref count and return it */
235 RrAppearance *RrAppearanceCopyShallow(RrAppearance *orig)
236 {
237 orig->ref++;
238 return orig;
239 }
240
241 /* deep copy of orig, means reset ref to 1 on copy
242 * and copy each thing memwise. */
243 RrAppearance *RrAppearanceCopy(RrAppearance *orig)
244 {
245 RrSurface *spo, *spc;
246 RrAppearance *copy = g_slice_new(RrAppearance);
247
248 copy->inst = orig->inst;
249
250 spo = &(orig->surface);
251 spc = &(copy->surface);
252 spc->grad = spo->grad;
253 spc->relief = spo->relief;
254 spc->bevel = spo->bevel;
255 if (spo->primary != NULL)
256 spc->primary = RrColorNew(copy->inst,
257 spo->primary->r,
258 spo->primary->g,
259 spo->primary->b);
260 else spc->primary = NULL;
261
262 if (spo->secondary != NULL)
263 spc->secondary = RrColorNew(copy->inst,
264 spo->secondary->r,
265 spo->secondary->g,
266 spo->secondary->b);
267 else spc->secondary = NULL;
268
269 if (spo->border_color != NULL)
270 spc->border_color = RrColorNew(copy->inst,
271 spo->border_color->r,
272 spo->border_color->g,
273 spo->border_color->b);
274 else spc->border_color = NULL;
275
276 if (spo->interlace_color != NULL)
277 spc->interlace_color = RrColorNew(copy->inst,
278 spo->interlace_color->r,
279 spo->interlace_color->g,
280 spo->interlace_color->b);
281 else spc->interlace_color = NULL;
282
283 if (spo->bevel_dark != NULL)
284 spc->bevel_dark = RrColorNew(copy->inst,
285 spo->bevel_dark->r,
286 spo->bevel_dark->g,
287 spo->bevel_dark->b);
288 else spc->bevel_dark = NULL;
289
290 if (spo->bevel_light != NULL)
291 spc->bevel_light = RrColorNew(copy->inst,
292 spo->bevel_light->r,
293 spo->bevel_light->g,
294 spo->bevel_light->b);
295 else spc->bevel_light = NULL;
296
297 if (spo->split_primary != NULL)
298 spc->split_primary = RrColorNew(copy->inst,
299 spo->split_primary->r,
300 spo->split_primary->g,
301 spo->split_primary->b);
302 else spc->split_primary = NULL;
303
304 if (spo->split_secondary != NULL)
305 spc->split_secondary = RrColorNew(copy->inst,
306 spo->split_secondary->r,
307 spo->split_secondary->g,
308 spo->split_secondary->b);
309 else spc->split_secondary = NULL;
310
311 spc->interlaced = spo->interlaced;
312 spc->bevel_light_adjust = spo->bevel_light_adjust;
313 spc->bevel_dark_adjust = spo->bevel_dark_adjust;
314 spc->border = spo->border;
315 spc->parent = NULL;
316 spc->parentx = spc->parenty = 0;
317 spc->pixel_data = NULL;
318
319 copy->textures = orig->textures;
320 copy->texture = g_memdup(orig->texture,
321 orig->textures * sizeof(RrTexture));
322 copy->pixmap = None;
323 copy->xftdraw = NULL;
324 copy->w = copy->h = 0;
325 return copy;
326 }
327
328 /* now decrements ref counter, and frees only if ref <= 0 */
329 void RrAppearanceFree(RrAppearance *a)
330 {
331 if (a) {
332 RrSurface *p;
333 if (a->pixmap != None) XFreePixmap(RrDisplay(a->inst), a->pixmap);
334 if (a->xftdraw != NULL) XftDrawDestroy(a->xftdraw);
335 if (a->textures)
336 g_free(a->texture);
337 p = &a->surface;
338 RrColorFree(p->primary);
339 RrColorFree(p->secondary);
340 RrColorFree(p->border_color);
341 RrColorFree(p->interlace_color);
342 RrColorFree(p->bevel_dark);
343 RrColorFree(p->bevel_light);
344 RrColorFree(p->split_primary);
345 RrColorFree(p->split_secondary);
346 g_free(p->pixel_data);
347 p->pixel_data = NULL;
348 g_slice_free(RrAppearance, a);
349 }
350 }
351
352 static void pixel_data_to_pixmap(RrAppearance *l,
353 gint x, gint y, gint w, gint h)
354 {
355 RrPixel32 *in, *scratch;
356 Pixmap out;
357 XImage *im = NULL;
358 im = XCreateImage(RrDisplay(l->inst), RrVisual(l->inst), RrDepth(l->inst),
359 ZPixmap, 0, NULL, w, h, 32, 0);
360 g_assert(im != NULL);
361
362 in = l->surface.pixel_data;
363 out = l->pixmap;
364
365 /* this malloc is a complete waste of time on normal 32bpp
366 as reduce_depth just sets im->data = data and returns
367 */
368 scratch = g_new(RrPixel32, im->width * im->height);
369 im->data = (gchar*) scratch;
370 RrReduceDepth(l->inst, in, im);
371 XPutImage(RrDisplay(l->inst), out,
372 DefaultGC(RrDisplay(l->inst), RrScreen(l->inst)),
373 im, 0, 0, x, y, w, h);
374 im->data = NULL;
375 XDestroyImage(im);
376 g_free(scratch);
377 }
378
379 void RrMargins (RrAppearance *a, gint *l, gint *t, gint *r, gint *b)
380 {
381 *l = *t = *r = *b = 0;
382
383 if (a->surface.grad != RR_SURFACE_PARENTREL) {
384 if (a->surface.relief != RR_RELIEF_FLAT) {
385 switch (a->surface.bevel) {
386 case RR_BEVEL_1:
387 *l = *t = *r = *b = 1;
388 break;
389 case RR_BEVEL_2:
390 *l = *t = *r = *b = 2;
391 break;
392 case RR_BEVEL_NUM_TYPES:
393 g_assert_not_reached();
394 }
395 } else if (a->surface.border) {
396 *l = *t = *r = *b = 1;
397 }
398 }
399 }
400
401 void RrMinSize(RrAppearance *a, gint *w, gint *h)
402 {
403 *w = RrMinWidth(a);
404 *h = RrMinHeight(a);
405 }
406
407 gint RrMinWidth(RrAppearance *a)
408 {
409 gint i;
410 RrSize *m;
411 gint l, t, r, b;
412 gint w = 0;
413
414 RrMargins(a, &l, &t, &r, &b);
415
416 for (i = 0; i < a->textures; ++i) {
417 switch (a->texture[i].type) {
418 case RR_TEXTURE_NONE:
419 break;
420 case RR_TEXTURE_MASK:
421 w = MAX(w, a->texture[i].data.mask.mask->width);
422 break;
423 case RR_TEXTURE_TEXT:
424 m = RrFontMeasureString(a->texture[i].data.text.font,
425 a->texture[i].data.text.string,
426 a->texture[i].data.text.shadow_offset_x,
427 a->texture[i].data.text.shadow_offset_y,
428 a->texture[i].data.text.flow,
429 a->texture[i].data.text.maxwidth);
430 w = MAX(w, m->width);
431 g_slice_free(RrSize, m);
432 break;
433 case RR_TEXTURE_RGBA:
434 w += MAX(w, a->texture[i].data.rgba.width);
435 break;
436 case RR_TEXTURE_IMAGE:
437 /* images resize so they don't contribute anything to the min */
438 break;
439 case RR_TEXTURE_LINE_ART:
440 w = MAX(w, MAX(a->texture[i].data.lineart.x1 - l - r,
441 a->texture[i].data.lineart.x2 - l - r));
442 break;
443 case RR_TEXTURE_NUM_TYPES:
444 g_assert_not_reached();
445 }
446 }
447
448 w += l + r;
449
450 if (w < 1) w = 1;
451 return w;
452 }
453
454 gint RrMinHeight(RrAppearance *a)
455 {
456 gint i;
457 gint l, t, r, b;
458 RrSize *m;
459 gint h = 0;
460
461 RrMargins(a, &l, &t, &r, &b);
462
463 for (i = 0; i < a->textures; ++i) {
464 switch (a->texture[i].type) {
465 case RR_TEXTURE_NONE:
466 break;
467 case RR_TEXTURE_MASK:
468 h = MAX(h, a->texture[i].data.mask.mask->height);
469 break;
470 case RR_TEXTURE_TEXT:
471 if (a->texture[i].data.text.flow) {
472 g_assert(a->texture[i].data.text.string != NULL);
473
474 m = RrFontMeasureString
475 (a->texture[i].data.text.font,
476 a->texture[i].data.text.string,
477 a->texture[i].data.text.shadow_offset_x,
478 a->texture[i].data.text.shadow_offset_y,
479 a->texture[i].data.text.flow,
480 a->texture[i].data.text.maxwidth);
481 h += MAX(h, m->height);
482 g_slice_free(RrSize, m);
483 }
484 else
485 h += MAX(h,
486 RrFontHeight
487 (a->texture[i].data.text.font,
488 a->texture[i].data.text.shadow_offset_y));
489 break;
490 case RR_TEXTURE_RGBA:
491 h += MAX(h, a->texture[i].data.rgba.height);
492 break;
493 case RR_TEXTURE_IMAGE:
494 /* images resize so they don't contribute anything to the min */
495 break;
496 case RR_TEXTURE_LINE_ART:
497 h = MAX(h, MAX(a->texture[i].data.lineart.y1 - t - b,
498 a->texture[i].data.lineart.y2 - t - b));
499 break;
500 case RR_TEXTURE_NUM_TYPES:
501 g_assert_not_reached();
502 }
503 }
504
505 h += t + b;
506
507 if (h < 1) h = 1;
508 return h;
509 }
510
511 static void reverse_bits(gchar *c, gint n)
512 {
513 gint i;
514 for (i = 0; i < n; i++, c++)
515 *c = (((*c * 0x0802UL & 0x22110UL) |
516 (*c * 0x8020UL & 0x88440UL)) * 0x10101UL) >> 16;
517 }
518
519 gboolean RrPixmapToRGBA(const RrInstance *inst,
520 Pixmap pmap, Pixmap mask,
521 gint *w, gint *h, RrPixel32 **data)
522 {
523 Window xr;
524 gint xx, xy;
525 guint pw, ph, mw, mh, xb, xd, i, x, y, di;
526 XImage *xi, *xm = NULL;
527
528 if (!XGetGeometry(RrDisplay(inst), pmap,
529 &xr, &xx, &xy, &pw, &ph, &xb, &xd))
530 return FALSE;
531
532 if (mask) {
533 if (!XGetGeometry(RrDisplay(inst), mask,
534 &xr, &xx, &xy, &mw, &mh, &xb, &xd))
535 return FALSE;
536 if (pw != mw || ph != mh || xd != 1)
537 return FALSE;
538 }
539
540 xi = XGetImage(RrDisplay(inst), pmap,
541 0, 0, pw, ph, 0xffffffff, ZPixmap);
542 if (!xi)
543 return FALSE;
544
545 if (mask) {
546 xm = XGetImage(RrDisplay(inst), mask,
547 0, 0, mw, mh, 0xffffffff, ZPixmap);
548 if (!xm) {
549 XDestroyImage(xi);
550 return FALSE;
551 }
552 if ((xm->bits_per_pixel == 1) && (xm->bitmap_bit_order != LSBFirst))
553 reverse_bits(xm->data, xm->bytes_per_line * xm->height);
554 }
555
556 if ((xi->bits_per_pixel == 1) && (xi->bitmap_bit_order != LSBFirst))
557 reverse_bits(xi->data, xi->bytes_per_line * xi->height);
558
559 *data = g_new(RrPixel32, pw * ph);
560 RrIncreaseDepth(inst, *data, xi);
561
562 if (mask) {
563 /* apply transparency from the mask */
564 di = 0;
565 for (i = 0, y = 0; y < ph; ++y) {
566 for (x = 0; x < pw; ++x, ++i) {
567 if (!((((unsigned)xm->data[di + x / 8]) >> (x % 8)) & 0x1))
568 (*data)[i] &= ~(0xff << RrDefaultAlphaOffset);
569 }
570 di += xm->bytes_per_line;
571 }
572 }
573
574 *w = pw;
575 *h = ph;
576
577 XDestroyImage(xi);
578 if (mask)
579 XDestroyImage(xm);
580
581 return TRUE;
582 }
This page took 0.055846 seconds and 3 git commands to generate.