1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 gradient.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
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.
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.
18 See the COPYING file for a copy of the GNU General Public License.
26 static void highlight(RrPixel32
*x
, RrPixel32
*y
, gboolean raised
);
27 static void gradient_parentrelative(RrAppearance
*a
, gint w
, gint h
);
28 static void gradient_solid(RrAppearance
*l
, gint w
, gint h
);
29 static void gradient_splitvertical(RrAppearance
*a
, gint w
, gint h
);
30 static void gradient_vertical(RrSurface
*sf
, gint w
, gint h
);
31 static void gradient_horizontal(RrSurface
*sf
, gint w
, gint h
);
32 static void gradient_mirrorhorizontal(RrSurface
*sf
, gint w
, gint h
);
33 static void gradient_diagonal(RrSurface
*sf
, gint w
, gint h
);
34 static void gradient_crossdiagonal(RrSurface
*sf
, gint w
, gint h
);
35 static void gradient_pyramid(RrSurface
*sf
, gint inw
, gint inh
);
37 void RrRender(RrAppearance
*a
, gint w
, gint h
)
39 RrPixel32
*data
= a
->surface
.pixel_data
;
44 switch (a
->surface
.grad
) {
45 case RR_SURFACE_PARENTREL
:
46 gradient_parentrelative(a
, w
, h
);
48 case RR_SURFACE_SOLID
:
49 gradient_solid(a
, w
, h
);
51 case RR_SURFACE_SPLIT_VERTICAL
:
52 gradient_splitvertical(a
, w
, h
);
54 case RR_SURFACE_VERTICAL
:
55 gradient_vertical(&a
->surface
, w
, h
);
57 case RR_SURFACE_HORIZONTAL
:
58 gradient_horizontal(&a
->surface
, w
, h
);
60 case RR_SURFACE_MIRROR_HORIZONTAL
:
61 gradient_mirrorhorizontal(&a
->surface
, w
, h
);
63 case RR_SURFACE_DIAGONAL
:
64 gradient_diagonal(&a
->surface
, w
, h
);
66 case RR_SURFACE_CROSS_DIAGONAL
:
67 gradient_crossdiagonal(&a
->surface
, w
, h
);
69 case RR_SURFACE_PYRAMID
:
70 gradient_pyramid(&a
->surface
, w
, h
);
73 g_assert_not_reached(); /* unhandled gradient */
77 if (a
->surface
.interlaced
) {
81 r
= a
->surface
.interlace_color
->r
;
82 g
= a
->surface
.interlace_color
->g
;
83 b
= a
->surface
.interlace_color
->b
;
84 current
= (r
<< RrDefaultRedOffset
)
85 + (g
<< RrDefaultGreenOffset
)
86 + (b
<< RrDefaultBlueOffset
);
88 for (i
= 0; i
< h
; i
+= 2, p
+= w
)
89 for (x
= 0; x
< w
; ++x
, ++p
)
93 if (a
->surface
.relief
== RR_RELIEF_FLAT
&& a
->surface
.border
) {
94 r
= a
->surface
.border_color
->r
;
95 g
= a
->surface
.border_color
->g
;
96 b
= a
->surface
.border_color
->b
;
97 current
= (r
<< RrDefaultRedOffset
)
98 + (g
<< RrDefaultGreenOffset
)
99 + (b
<< RrDefaultBlueOffset
);
100 for (off
= 0, x
= 0; x
< w
; ++x
, off
++) {
101 *(data
+ off
) = current
;
102 *(data
+ off
+ ((h
-1) * w
)) = current
;
104 for (off
= 0, x
= 0; x
< h
; ++x
, off
++) {
105 *(data
+ (off
* w
)) = current
;
106 *(data
+ (off
* w
) + w
- 1) = current
;
110 if (a
->surface
.relief
!= RR_RELIEF_FLAT
) {
111 if (a
->surface
.bevel
== RR_BEVEL_1
) {
112 for (off
= 1, x
= 1; x
< w
- 1; ++x
, off
++)
113 highlight(data
+ off
,
114 data
+ off
+ (h
-1) * w
,
115 a
->surface
.relief
==RR_RELIEF_RAISED
);
116 for (off
= 0, x
= 0; x
< h
; ++x
, off
++)
117 highlight(data
+ off
* w
,
118 data
+ off
* w
+ w
- 1,
119 a
->surface
.relief
==RR_RELIEF_RAISED
);
122 if (a
->surface
.bevel
== RR_BEVEL_2
) {
123 for (off
= 2, x
= 2; x
< w
- 2; ++x
, off
++)
124 highlight(data
+ off
+ w
,
125 data
+ off
+ (h
-2) * w
,
126 a
->surface
.relief
==RR_RELIEF_RAISED
);
127 for (off
= 1, x
= 1; x
< h
-1; ++x
, off
++)
128 highlight(data
+ off
* w
+ 1,
129 data
+ off
* w
+ w
- 2,
130 a
->surface
.relief
==RR_RELIEF_RAISED
);
135 static void highlight(RrPixel32
*x
, RrPixel32
*y
, gboolean raised
)
139 RrPixel32
*up
, *down
;
147 r
= (*up
>> RrDefaultRedOffset
) & 0xFF;
149 g
= (*up
>> RrDefaultGreenOffset
) & 0xFF;
151 b
= (*up
>> RrDefaultBlueOffset
) & 0xFF;
153 if (r
> 0xFF) r
= 0xFF;
154 if (g
> 0xFF) g
= 0xFF;
155 if (b
> 0xFF) b
= 0xFF;
156 *up
= (r
<< RrDefaultRedOffset
) + (g
<< RrDefaultGreenOffset
)
157 + (b
<< RrDefaultBlueOffset
);
159 r
= (*down
>> RrDefaultRedOffset
) & 0xFF;
160 r
= (r
>> 1) + (r
>> 2);
161 g
= (*down
>> RrDefaultGreenOffset
) & 0xFF;
162 g
= (g
>> 1) + (g
>> 2);
163 b
= (*down
>> RrDefaultBlueOffset
) & 0xFF;
164 b
= (b
>> 1) + (b
>> 2);
165 *down
= (r
<< RrDefaultRedOffset
) + (g
<< RrDefaultGreenOffset
)
166 + (b
<< RrDefaultBlueOffset
);
169 static void create_bevel_colors(RrAppearance
*l
)
174 r
= l
->surface
.primary
->r
;
176 g
= l
->surface
.primary
->g
;
178 b
= l
->surface
.primary
->b
;
180 if (r
> 0xFF) r
= 0xFF;
181 if (g
> 0xFF) g
= 0xFF;
182 if (b
> 0xFF) b
= 0xFF;
183 g_assert(!l
->surface
.bevel_light
);
184 l
->surface
.bevel_light
= RrColorNew(l
->inst
, r
, g
, b
);
187 r
= l
->surface
.primary
->r
;
188 r
= (r
>> 1) + (r
>> 2);
189 g
= l
->surface
.primary
->g
;
190 g
= (g
>> 1) + (g
>> 2);
191 b
= l
->surface
.primary
->b
;
192 b
= (b
>> 1) + (b
>> 2);
193 g_assert(!l
->surface
.bevel_dark
);
194 l
->surface
.bevel_dark
= RrColorNew(l
->inst
, r
, g
, b
);
197 static void gradient_parentrelative(RrAppearance
*a
, gint w
, gint h
)
199 RrPixel32
*source
, *dest
;
200 gint sw
, sh
, partial_w
, partial_h
, i
;
202 g_assert (a
->surface
.parent
);
203 g_assert (a
->surface
.parent
->w
);
205 sw
= a
->surface
.parent
->w
;
206 sh
= a
->surface
.parent
->h
;
208 source
= (a
->surface
.parent
->surface
.pixel_data
+
209 a
->surface
.parentx
+ sw
* a
->surface
.parenty
);
210 dest
= a
->surface
.pixel_data
;
212 if (a
->surface
.parentx
+ w
> sw
) {
213 partial_w
= sw
- a
->surface
.parentx
;
214 } else partial_w
= w
;
216 if (a
->surface
.parenty
+ h
> sh
) {
217 partial_h
= sh
- a
->surface
.parenty
;
218 } else partial_h
= h
;
220 for (i
= 0; i
< partial_h
; i
++, source
+= sw
, dest
+= w
) {
221 memcpy(dest
, source
, partial_w
* sizeof(RrPixel32
));
225 static void gradient_solid(RrAppearance
*l
, gint w
, gint h
)
229 RrPixel32
*data
= l
->surface
.pixel_data
;
230 RrSurface
*sp
= &l
->surface
;
231 gint left
= 0, top
= 0, right
= w
- 1, bottom
= h
- 1;
233 pix
= (sp
->primary
->r
<< RrDefaultRedOffset
)
234 + (sp
->primary
->g
<< RrDefaultGreenOffset
)
235 + (sp
->primary
->b
<< RrDefaultBlueOffset
);
237 for (i
= 0; i
< w
* h
; i
++)
243 XFillRectangle(RrDisplay(l
->inst
), l
->pixmap
, RrColorGC(sp
->primary
),
246 switch (sp
->relief
) {
247 case RR_RELIEF_RAISED
:
249 create_bevel_colors(l
);
253 XDrawLine(RrDisplay(l
->inst
), l
->pixmap
, RrColorGC(sp
->bevel_dark
),
254 left
, bottom
, right
, bottom
);
255 XDrawLine(RrDisplay(l
->inst
), l
->pixmap
, RrColorGC(sp
->bevel_dark
),
256 right
, bottom
, right
, top
);
258 XDrawLine(RrDisplay(l
->inst
), l
->pixmap
,RrColorGC(sp
->bevel_light
),
259 left
, top
, right
, top
);
260 XDrawLine(RrDisplay(l
->inst
), l
->pixmap
,RrColorGC(sp
->bevel_light
),
261 left
, bottom
, left
, top
);
264 XDrawLine(RrDisplay(l
->inst
), l
->pixmap
, RrColorGC(sp
->bevel_dark
),
265 left
+ 2, bottom
- 1, right
- 2, bottom
- 1);
266 XDrawLine(RrDisplay(l
->inst
), l
->pixmap
, RrColorGC(sp
->bevel_dark
),
267 right
- 1, bottom
- 1, right
- 1, top
+ 1);
269 XDrawLine(RrDisplay(l
->inst
), l
->pixmap
,RrColorGC(sp
->bevel_light
),
270 left
+ 2, top
+ 1, right
- 2, top
+ 1);
271 XDrawLine(RrDisplay(l
->inst
), l
->pixmap
,RrColorGC(sp
->bevel_light
),
272 left
+ 1, bottom
- 1, left
+ 1, top
+ 1);
275 g_assert_not_reached(); /* unhandled BevelType */
278 case RR_RELIEF_SUNKEN
:
280 create_bevel_colors(l
);
284 XDrawLine(RrDisplay(l
->inst
), l
->pixmap
,RrColorGC(sp
->bevel_light
),
285 left
, bottom
, right
, bottom
);
286 XDrawLine(RrDisplay(l
->inst
), l
->pixmap
,RrColorGC(sp
->bevel_light
),
287 right
, bottom
, right
, top
);
289 XDrawLine(RrDisplay(l
->inst
), l
->pixmap
, RrColorGC(sp
->bevel_dark
),
290 left
, top
, right
, top
);
291 XDrawLine(RrDisplay(l
->inst
), l
->pixmap
, RrColorGC(sp
->bevel_dark
),
292 left
, bottom
, left
, top
);
295 XDrawLine(RrDisplay(l
->inst
), l
->pixmap
,RrColorGC(sp
->bevel_light
),
296 left
+ 2, bottom
- 1, right
- 2, bottom
- 1);
297 XDrawLine(RrDisplay(l
->inst
), l
->pixmap
,RrColorGC(sp
->bevel_light
),
298 right
- 1, bottom
- 1, right
- 1, top
+ 1);
300 XDrawLine(RrDisplay(l
->inst
), l
->pixmap
, RrColorGC(sp
->bevel_dark
),
301 left
+ 2, top
+ 1, right
- 2, top
+ 1);
302 XDrawLine(RrDisplay(l
->inst
), l
->pixmap
, RrColorGC(sp
->bevel_dark
),
303 left
+ 1, bottom
- 1, left
+ 1, top
+ 1);
306 g_assert_not_reached(); /* unhandled BevelType */
311 XDrawRectangle(RrDisplay(l
->inst
), l
->pixmap
,
312 RrColorGC(sp
->border_color
),
313 left
, top
, right
, bottom
);
317 g_assert_not_reached(); /* unhandled ReliefType */
321 /* * * * * * * * * * * * * * GRADIENT MAGIC WOOT * * * * * * * * * * * * * * */
325 gint len##x, cdelta##x[3], error##x[3] = { 0, 0, 0 }, inc##x[3]; \
326 gboolean bigslope##x[3] /* color slope > 1 */
328 #define SETUP(x, from, to, w) \
331 color##x[0] = from->r; \
332 color##x[1] = from->g; \
333 color##x[2] = from->b; \
335 cdelta##x[0] = to->r - from->r; \
336 cdelta##x[1] = to->g - from->g; \
337 cdelta##x[2] = to->b - from->b; \
339 if (cdelta##x[0] < 0) { \
340 cdelta##x[0] = -cdelta##x[0]; \
344 if (cdelta##x[1] < 0) { \
345 cdelta##x[1] = -cdelta##x[1]; \
349 if (cdelta##x[2] < 0) { \
350 cdelta##x[2] = -cdelta##x[2]; \
354 bigslope##x[0] = cdelta##x[0] > w;\
355 bigslope##x[1] = cdelta##x[1] > w;\
356 bigslope##x[2] = cdelta##x[2] > w
358 #define COLOR_RR(x, c) \
359 c->r = color##x[0]; \
360 c->g = color##x[1]; \
364 ((color##x[0] << RrDefaultRedOffset) + \
365 (color##x[1] << RrDefaultGreenOffset) + \
366 (color##x[2] << RrDefaultBlueOffset))
368 #define INCREMENT(x, i) \
374 for (i = 2; i >= 0; --i) { \
375 if (!cdelta##x[i]) continue; \
377 if (!bigslope##x[i]) { \
378 /* Y (color) is dependant on X */ \
379 error##x[i] += cdelta##x[i]; \
380 if ((error##x[i] << 1) >= len##x) { \
381 color##x[i] += INCREMENT(x, i); \
382 error##x[i] -= len##x; \
385 /* X is dependant on Y (color) */ \
387 color##x[i] += INCREMENT(x, i); \
388 error##x[i] += len##x; \
389 if ((error##x[i] << 1) >= cdelta##x[i]) { \
390 error##x[i] -= cdelta##x[i]; \
398 static void gradient_splitvertical(RrAppearance
*a
, gint w
, gint h
)
400 gint x
, y1
, y3
, r
, g
, b
;
401 RrSurface
*sf
= &a
->surface
;
402 RrPixel32
*data
= sf
->pixel_data
;
404 RrColor
*primary_light
, *secondary_light
;
415 if (r
> 0xFF) r
= 0xFF;
416 if (g
> 0xFF) g
= 0xFF;
417 if (b
> 0xFF) b
= 0xFF;
418 primary_light
= RrColorNew(a
->inst
, r
, g
, b
);
420 r
= sf
->secondary
->r
;
422 g
= sf
->secondary
->g
;
424 b
= sf
->secondary
->b
;
426 if (r
> 0xFF) r
= 0xFF;
427 if (g
> 0xFF) g
= 0xFF;
428 if (b
> 0xFF) b
= 0xFF;
429 secondary_light
= RrColorNew(a
->inst
, r
, g
, b
);
431 SETUP(y1
, primary_light
, sf
->primary
, (h
/ 2) -1);
432 SETUP(y3
, sf
->secondary
, secondary_light
, (h
/ 2) -1);
434 for (y1
= h
- 1; y1
> (h
/ 2) -1; --y1
) { /* 0 -> h-1 */
436 for (x
= w
- 1; x
>= 0; --x
) /* 0 -> w */
443 for (y3
= (h
/ 2) - 1; y3
> 0; --y3
) {
445 for (x
= w
- 1; x
>= 0; --x
)
452 for (x
= w
- 1; x
>= 0; --x
) /* 0 -> w */
455 RrColorFree(primary_light
);
456 RrColorFree(secondary_light
);
459 static void gradient_horizontal(RrSurface
*sf
, gint w
, gint h
)
462 RrPixel32
*data
= sf
->pixel_data
, *datav
;
466 SETUP(x
, sf
->primary
, sf
->secondary
, w
);
468 for (x
= w
- 1; x
> 0; --x
) { /* 0 -> w-1 */
471 for (y
= h
- 1; y
>= 0; --y
) { /* 0 -> h */
480 for (y
= h
- 1; y
>= 0; --y
) /* 0 -> h */
481 *(data
+ y
* w
) = current
;
484 static void gradient_mirrorhorizontal(RrSurface
*sf
, gint w
, gint h
)
487 RrPixel32
*data
= sf
->pixel_data
, *datav
;
491 SETUP(x
, sf
->primary
, sf
->secondary
, w
/2);
494 for (x
= w
- 1; x
> w
/2-1; --x
) { /* 0 -> w-1 */
497 for (y
= h
- 1; y
>= 0; --y
) { /* 0 -> h */
505 SETUP(x
, sf
->secondary
, sf
->primary
, w
/2);
506 for (x
= w
/2 - 1; x
> 0; --x
) { /* 0 -> w-1 */
509 for (y
= h
- 1; y
>= 0; --y
) { /* 0 -> h */
519 for (y
= h
- 1; y
>= 0; --y
) /* 0 -> h */
520 *(data
+ y
* w
) = current
;
523 static void gradient_vertical(RrSurface
*sf
, gint w
, gint h
)
526 RrPixel32
*data
= sf
->pixel_data
;
530 SETUP(y
, sf
->primary
, sf
->secondary
, h
);
532 for (y
= h
- 1; y
> 0; --y
) { /* 0 -> h-1 */
534 for (x
= w
- 1; x
>= 0; --x
) /* 0 -> w */
540 for (x
= w
- 1; x
>= 0; --x
) /* 0 -> w */
545 static void gradient_diagonal(RrSurface
*sf
, gint w
, gint h
)
548 RrPixel32
*data
= sf
->pixel_data
;
556 extracorner
.r
= (sf
->primary
->r
+ sf
->secondary
->r
) / 2;
557 extracorner
.g
= (sf
->primary
->g
+ sf
->secondary
->g
) / 2;
558 extracorner
.b
= (sf
->primary
->b
+ sf
->secondary
->b
) / 2;
560 SETUP(lefty
, sf
->primary
, (&extracorner
), h
);
561 SETUP(righty
, (&extracorner
), sf
->secondary
, h
);
563 for (y
= h
- 1; y
> 0; --y
) { /* 0 -> h-1 */
564 COLOR_RR(lefty
, (&left
));
565 COLOR_RR(righty
, (&right
));
567 SETUP(x
, (&left
), (&right
), w
);
569 for (x
= w
- 1; x
> 0; --x
) { /* 0 -> w-1 */
570 *(data
++) = COLOR(x
);
574 *(data
++) = COLOR(x
);
579 COLOR_RR(lefty
, (&left
));
580 COLOR_RR(righty
, (&right
));
582 SETUP(x
, (&left
), (&right
), w
);
584 for (x
= w
- 1; x
> 0; --x
) { /* 0 -> w-1 */
585 *(data
++) = COLOR(x
);
592 static void gradient_crossdiagonal(RrSurface
*sf
, gint w
, gint h
)
595 RrPixel32
*data
= sf
->pixel_data
;
603 extracorner
.r
= (sf
->primary
->r
+ sf
->secondary
->r
) / 2;
604 extracorner
.g
= (sf
->primary
->g
+ sf
->secondary
->g
) / 2;
605 extracorner
.b
= (sf
->primary
->b
+ sf
->secondary
->b
) / 2;
607 SETUP(lefty
, (&extracorner
), sf
->secondary
, h
);
608 SETUP(righty
, sf
->primary
, (&extracorner
), h
);
610 for (y
= h
- 1; y
> 0; --y
) { /* 0 -> h-1 */
611 COLOR_RR(lefty
, (&left
));
612 COLOR_RR(righty
, (&right
));
614 SETUP(x
, (&left
), (&right
), w
);
616 for (x
= w
- 1; x
> 0; --x
) { /* 0 -> w-1 */
617 *(data
++) = COLOR(x
);
621 *(data
++) = COLOR(x
);
626 COLOR_RR(lefty
, (&left
));
627 COLOR_RR(righty
, (&right
));
629 SETUP(x
, (&left
), (&right
), w
);
631 for (x
= w
- 1; x
> 0; --x
) { /* 0 -> w-1 */
632 *(data
++) = COLOR(x
);
639 static void gradient_pyramid(RrSurface
*sf
, gint inw
, gint inh
)
641 gint x
, y
, w
= (inw
>> 1) + 1, h
= (inh
>> 1) + 1;
642 RrPixel32
*data
= sf
->pixel_data
;
643 RrPixel32
*end
= data
+ inw
*inh
- 1;
652 extracorner
.r
= (sf
->primary
->r
+ sf
->secondary
->r
) / 2;
653 extracorner
.g
= (sf
->primary
->g
+ sf
->secondary
->g
) / 2;
654 extracorner
.b
= (sf
->primary
->b
+ sf
->secondary
->b
) / 2;
656 SETUP(lefty
, (&extracorner
), sf
->secondary
, h
);
657 SETUP(righty
, sf
->primary
, (&extracorner
), h
);
659 for (y
= h
- 1; y
> 0; --y
) { /* 0 -> h-1 */
660 COLOR_RR(lefty
, (&left
));
661 COLOR_RR(righty
, (&right
));
663 SETUP(x
, (&left
), (&right
), w
);
665 for (x
= w
- 1; x
> 0; --x
) { /* 0 -> w-1 */
668 *(data
+inw
-x
) = current
;
670 *(end
-(inw
-x
)) = current
;
676 *(data
+inw
-x
) = current
;
678 *(end
-(inw
-x
)) = current
;
686 COLOR_RR(lefty
, (&left
));
687 COLOR_RR(righty
, (&right
));
689 SETUP(x
, (&left
), (&right
), w
);
691 for (x
= w
- 1; x
> 0; --x
) { /* 0 -> w-1 */
694 *(data
+inw
-x
) = current
;
696 *(end
-(inw
-x
)) = current
;
702 *(data
+inw
-x
) = current
;
704 *(end
-(inw
-x
)) = current
;