]>
Dogcows Code - chaz/openbox/blob - render/render.c
18 static void pixel_data_to_pixmap(RrAppearance
*l
,
19 gint x
, gint y
, gint w
, gint h
);
21 void RrPaint(RrAppearance
*l
, Window win
, gint w
, gint h
)
23 int i
, transferred
= 0, sw
;
24 RrPixel32
*source
, *dest
;
26 RrRect tarea
; /* area in which to draw textures */
29 if (w
<= 0 || h
<= 0) return;
31 resized
= (l
->w
!= w
|| l
->h
!= h
);
33 oldp
= l
->pixmap
; /* save to free after changing the visible pixmap */
34 l
->pixmap
= XCreatePixmap(RrDisplay(l
->inst
),
35 RrRootWindow(l
->inst
),
36 w
, h
, RrDepth(l
->inst
));
38 g_assert(l
->pixmap
!= None
);
42 if (l
->xftdraw
!= NULL
)
43 XftDrawDestroy(l
->xftdraw
);
44 l
->xftdraw
= XftDrawCreate(RrDisplay(l
->inst
), l
->pixmap
,
45 RrVisual(l
->inst
), RrColormap(l
->inst
));
46 g_assert(l
->xftdraw
!= NULL
);
48 g_free(l
->surface
.pixel_data
);
49 l
->surface
.pixel_data
= g_new(RrPixel32
, w
* h
);
51 if (l
->surface
.grad
== RR_SURFACE_PARENTREL
) {
52 g_assert (l
->surface
.parent
);
53 g_assert (l
->surface
.parent
->w
);
55 sw
= l
->surface
.parent
->w
;
56 source
= (l
->surface
.parent
->surface
.pixel_data
+
57 l
->surface
.parentx
+ sw
* l
->surface
.parenty
);
58 dest
= l
->surface
.pixel_data
;
59 for (i
= 0; i
< h
; i
++, source
+= sw
, dest
+= w
) {
60 memcpy(dest
, source
, w
* sizeof(RrPixel32
));
65 RECT_SET(tarea
, 0, 0, w
, h
);
66 if (l
->surface
.grad
!= RR_SURFACE_PARENTREL
) {
67 if (l
->surface
.relief
!= RR_RELIEF_FLAT
) {
68 switch (l
->surface
.bevel
) {
70 tarea
.x
+= 1; tarea
.y
+= 1;
71 tarea
.width
-= 2; tarea
.height
-= 2;
74 tarea
.x
+= 2; tarea
.y
+= 2;
75 tarea
.width
-= 4; tarea
.height
-= 4;
78 } else if (l
->surface
.border
) {
79 tarea
.x
+= 1; tarea
.y
+= 1;
80 tarea
.width
-= 2; tarea
.height
-= 2;
84 for (i
= 0; i
< l
->textures
; i
++) {
85 switch (l
->texture
[i
].type
) {
91 if (l
->surface
.grad
!= RR_SURFACE_SOLID
)
92 pixel_data_to_pixmap(l
, 0, 0, w
, h
);
94 if (l
->xftdraw
== NULL
) {
95 l
->xftdraw
= XftDrawCreate(RrDisplay(l
->inst
), l
->pixmap
,
99 RrFontDraw(l
->xftdraw
, &l
->texture
[i
].data
.text
, &tarea
);
101 case RR_TEXTURE_LINE_ART
:
104 if (l
->surface
.grad
!= RR_SURFACE_SOLID
)
105 pixel_data_to_pixmap(l
, 0, 0, w
, h
);
107 g_message("%d %d -> %d %d",
108 l
->texture
[i
].data
.lineart
.x1
,
109 l
->texture
[i
].data
.lineart
.y1
,
110 l
->texture
[i
].data
.lineart
.x2
,
111 l
->texture
[i
].data
.lineart
.y2
);
112 XDrawLine(RrDisplay(l
->inst
), l
->pixmap
,
113 RrColorGC(l
->texture
[i
].data
.lineart
.color
),
114 l
->texture
[i
].data
.lineart
.x1
,
115 l
->texture
[i
].data
.lineart
.y1
,
116 l
->texture
[i
].data
.lineart
.x2
,
117 l
->texture
[i
].data
.lineart
.y2
);
119 case RR_TEXTURE_MASK
:
122 if (l
->surface
.grad
!= RR_SURFACE_SOLID
)
123 pixel_data_to_pixmap(l
, 0, 0, w
, h
);
125 RrPixmapMaskDraw(l
->pixmap
, &l
->texture
[i
].data
.mask
, &tarea
);
127 case RR_TEXTURE_RGBA
:
128 g_assert(!transferred
);
129 RrImageDraw(l
->surface
.pixel_data
,
130 &l
->texture
[i
].data
.rgba
, &tarea
);
137 if (l
->surface
.grad
!= RR_SURFACE_SOLID
)
138 pixel_data_to_pixmap(l
, 0, 0, w
, h
);
141 XSetWindowBackgroundPixmap(RrDisplay(l
->inst
), win
, l
->pixmap
);
142 XClearWindow(RrDisplay(l
->inst
), win
);
143 if (oldp
) XFreePixmap(RrDisplay(l
->inst
), oldp
);
146 RrAppearance
*RrAppearanceNew(const RrInstance
*inst
, gint numtex
)
150 out
= g_new0(RrAppearance
, 1);
152 out
->textures
= numtex
;
153 if (numtex
) out
->texture
= g_new0(RrTexture
, numtex
);
158 RrAppearance
*RrAppearanceCopy(RrAppearance
*orig
)
160 RrSurface
*spo
, *spc
;
161 RrAppearance
*copy
= g_new(RrAppearance
, 1);
164 copy
->inst
= orig
->inst
;
166 spo
= &(orig
->surface
);
167 spc
= &(copy
->surface
);
168 spc
->grad
= spo
->grad
;
169 spc
->relief
= spo
->relief
;
170 spc
->bevel
= spo
->bevel
;
171 if (spo
->primary
!= NULL
)
172 spc
->primary
= RrColorNew(copy
->inst
,
176 else spc
->primary
= NULL
;
178 if (spo
->secondary
!= NULL
)
179 spc
->secondary
= RrColorNew(copy
->inst
,
183 else spc
->secondary
= NULL
;
185 if (spo
->border_color
!= NULL
)
186 spc
->border_color
= RrColorNew(copy
->inst
,
187 spo
->border_color
->r
,
188 spo
->border_color
->g
,
189 spo
->border_color
->b
);
190 else spc
->border_color
= NULL
;
192 if (spo
->interlace_color
!= NULL
)
193 spc
->interlace_color
= RrColorNew(copy
->inst
,
194 spo
->interlace_color
->r
,
195 spo
->interlace_color
->g
,
196 spo
->interlace_color
->b
);
197 else spc
->interlace_color
= NULL
;
199 if (spo
->bevel_dark
!= NULL
)
200 spc
->bevel_dark
= RrColorNew(copy
->inst
,
204 else spc
->bevel_dark
= NULL
;
206 if (spo
->bevel_light
!= NULL
)
207 spc
->bevel_light
= RrColorNew(copy
->inst
,
210 spo
->bevel_light
->b
);
211 else spc
->bevel_light
= NULL
;
213 spc
->interlaced
= spo
->interlaced
;
214 spc
->border
= spo
->border
;
216 spc
->parentx
= spc
->parenty
= 0;
217 spc
->pixel_data
= NULL
;
219 copy
->textures
= orig
->textures
;
220 copy
->texture
= g_memdup(orig
->texture
,
221 orig
->textures
* sizeof(RrTexture
));
222 for (i
= 0; i
< copy
->textures
; ++i
)
223 if (copy
->texture
[i
].type
== RR_TEXTURE_RGBA
) {
224 g_free(copy
->texture
[i
].data
.rgba
.cache
);
225 copy
->texture
[i
].data
.rgba
.cache
= NULL
;
228 copy
->xftdraw
= NULL
;
229 copy
->w
= copy
->h
= 0;
233 void RrAppearanceFree(RrAppearance
*a
)
239 if (a
->pixmap
!= None
) XFreePixmap(RrDisplay(a
->inst
), a
->pixmap
);
240 if (a
->xftdraw
!= NULL
) XftDrawDestroy(a
->xftdraw
);
241 for (i
= 0; i
< a
->textures
; ++i
)
242 if (a
->texture
[i
].type
== RR_TEXTURE_RGBA
) {
243 g_free(a
->texture
[i
].data
.rgba
.cache
);
244 a
->texture
[i
].data
.rgba
.cache
= NULL
;
249 RrColorFree(p
->primary
);
250 RrColorFree(p
->secondary
);
251 RrColorFree(p
->border_color
);
252 RrColorFree(p
->interlace_color
);
253 RrColorFree(p
->bevel_dark
);
254 RrColorFree(p
->bevel_light
);
255 g_free(p
->pixel_data
);
262 static void pixel_data_to_pixmap(RrAppearance
*l
,
263 gint x
, gint y
, gint w
, gint h
)
265 RrPixel32
*in
, *scratch
;
268 im
= XCreateImage(RrDisplay(l
->inst
), RrVisual(l
->inst
), RrDepth(l
->inst
),
269 ZPixmap
, 0, NULL
, w
, h
, 32, 0);
270 g_assert(im
!= NULL
);
272 in
= l
->surface
.pixel_data
;
275 im
->byte_order
= LSBFirst
;
276 /* this malloc is a complete waste of time on normal 32bpp
277 as reduce_depth just sets im->data = data and returns
279 scratch
= g_new(RrPixel32
, im
->width
* im
->height
);
280 im
->data
= (char*) scratch
;
281 RrReduceDepth(l
->inst
, in
, im
);
282 XPutImage(RrDisplay(l
->inst
), out
,
283 DefaultGC(RrDisplay(l
->inst
), RrScreen(l
->inst
)),
284 im
, 0, 0, x
, y
, w
, h
);
290 void RrMinsize(RrAppearance
*l
, gint
*w
, gint
*h
)
296 for (i
= 0; i
< l
->textures
; ++i
) {
297 switch (l
->texture
[i
].type
) {
298 case RR_TEXTURE_NONE
:
300 case RR_TEXTURE_MASK
:
301 *w
= MAX(*w
, l
->texture
[i
].data
.mask
.mask
->width
);
302 *h
= MAX(*h
, l
->texture
[i
].data
.mask
.mask
->height
);
304 case RR_TEXTURE_TEXT
:
305 m
= RrFontMeasureString(l
->texture
[i
].data
.text
.font
,
306 l
->texture
[i
].data
.text
.string
);
308 m
= RrFontHeight(l
->texture
[i
].data
.text
.font
);
311 case RR_TEXTURE_RGBA
:
312 *w
+= MAX(*w
, l
->texture
[i
].data
.rgba
.width
);
313 *h
+= MAX(*h
, l
->texture
[i
].data
.rgba
.height
);
315 case RR_TEXTURE_LINE_ART
:
316 *w
+= MAX(*w
, MAX(l
->texture
[i
].data
.lineart
.x1
,
317 l
->texture
[i
].data
.lineart
.x2
));
318 *h
+= MAX(*h
, MAX(l
->texture
[i
].data
.lineart
.y1
,
319 l
->texture
[i
].data
.lineart
.y2
));
324 if (l
->surface
.relief
!= RR_RELIEF_FLAT
) {
325 switch (l
->surface
.bevel
) {
335 } else if (l
->surface
.border
) {
344 gboolean
RrPixmapToRGBA(const RrInstance
*inst
,
345 Pixmap pmap
, Pixmap mask
,
346 gint
*w
, gint
*h
, RrPixel32
**data
)
350 guint pw
, ph
, mw
, mh
, xb
, xd
, i
, x
, y
, di
;
351 XImage
*xi
, *xm
= NULL
;
353 if (!XGetGeometry(RrDisplay(inst
),
354 pmap
, &xr
, &xx
, &xy
, &pw
, &ph
, &xb
, &xd
))
357 if (!XGetGeometry(RrDisplay(inst
), mask
,
358 &xr
, &xx
, &xy
, &mw
, &mh
, &xb
, &xd
))
360 if (pw
!= mw
|| ph
!= mh
|| xd
!= 1)
364 xi
= XGetImage(RrDisplay(inst
), pmap
,
365 0, 0, pw
, ph
, 0xffffffff, ZPixmap
);
370 xm
= XGetImage(RrDisplay(inst
), mask
,
371 0, 0, mw
, mh
, 0xffffffff, ZPixmap
);
376 *data
= g_new(RrPixel32
, pw
* ph
);
377 RrIncreaseDepth(inst
, *data
, xi
);
380 /* apply transparency from the mask */
382 for (i
= 0, y
= 0; y
< ph
; ++y
) {
383 for (x
= 0; x
< pw
; ++x
, ++i
) {
384 if (!((((unsigned)xm
->data
[di
+ x
/ 8]) >> (x
% 8)) & 0x1))
385 (*data
)[i
] &= ~(0xff << RrDefaultAlphaOffset
);
387 di
+= xm
->bytes_per_line
;
This page took 0.055517 seconds and 4 git commands to generate.