]>
Dogcows Code - chaz/openbox/blob - render/color.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 color.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 #include <X11/Xutil.h>
29 void RrColorAllocateGC(RrColor
*in
)
33 gcv
.foreground
= in
->pixel
;
34 gcv
.cap_style
= CapProjecting
;
35 in
->gc
= XCreateGC(RrDisplay(in
->inst
),
36 RrRootWindow(in
->inst
),
37 GCForeground
| GCCapStyle
, &gcv
);
40 RrColor
*RrColorParse(const RrInstance
*inst
, gchar
*colorname
)
44 g_assert(colorname
!= NULL
);
45 /* get rgb values from colorname */
51 if (!XParseColor(RrDisplay(inst
), RrColormap(inst
), colorname
, &xcol
)) {
52 g_message("Unable to parse color '%s'", colorname
);
55 return RrColorNew(inst
, xcol
.red
>> 8, xcol
.green
>> 8, xcol
.blue
>> 8);
58 /*#define NO_COLOR_CACHE*/
63 RrColor
*RrColorNew(const RrInstance
*inst
, gint r
, gint g
, gint b
)
65 /* this should be replaced with something far cooler */
70 g_assert(r
>= 0 && r
< 256);
71 g_assert(g
>= 0 && g
< 256);
72 g_assert(b
>= 0 && b
< 256);
74 key
= (r
<< 24) + (g
<< 16) + (b
<< 8);
75 #ifndef NO_COLOR_CACHE
76 if ((out
= g_hash_table_lookup(RrColorHash(inst
), &key
))) {
80 xcol
.red
= (r
<< 8) | r
;
81 xcol
.green
= (g
<< 8) | g
;
82 xcol
.blue
= (b
<< 8) | b
;
83 if (XAllocColor(RrDisplay(inst
), RrColormap(inst
), &xcol
)) {
84 out
= g_new(RrColor
, 1);
86 out
->r
= xcol
.red
>> 8;
87 out
->g
= xcol
.green
>> 8;
88 out
->b
= xcol
.blue
>> 8;
90 out
->pixel
= xcol
.pixel
;
96 #ifndef NO_COLOR_CACHE
97 g_hash_table_insert(RrColorHash(inst
), &out
->key
, out
);
104 void RrColorFree(RrColor
*c
)
107 if (--c
->refcount
< 1) {
108 #ifndef NO_COLOR_CACHE
109 g_assert(g_hash_table_lookup(RrColorHash(c
->inst
), &c
->key
));
110 g_hash_table_remove(RrColorHash(c
->inst
), &c
->key
);
112 if (c
->pixel
) XFreeColors(RrDisplay(c
->inst
), RrColormap(c
->inst
),
114 if (c
->gc
) XFreeGC(RrDisplay(c
->inst
), c
->gc
);
120 void RrReduceDepth(const RrInstance
*inst
, RrPixel32
*data
, XImage
*im
)
124 RrPixel32
*p32
= (RrPixel32
*) im
->data
;
125 RrPixel16
*p16
= (RrPixel16
*) im
->data
;
126 RrPixel8
*p8
= (RrPixel8
*) im
->data
;
127 switch (im
->bits_per_pixel
) {
129 if ((RrRedOffset(inst
) != RrDefaultRedOffset
) ||
130 (RrBlueOffset(inst
) != RrDefaultBlueOffset
) ||
131 (RrGreenOffset(inst
) != RrDefaultGreenOffset
)) {
132 for (y
= 0; y
< im
->height
; y
++) {
133 for (x
= 0; x
< im
->width
; x
++) {
134 r
= (data
[x
] >> RrDefaultRedOffset
) & 0xFF;
135 g
= (data
[x
] >> RrDefaultGreenOffset
) & 0xFF;
136 b
= (data
[x
] >> RrDefaultBlueOffset
) & 0xFF;
137 p32
[x
] = (r
<< RrRedOffset(inst
))
138 + (g
<< RrGreenOffset(inst
))
139 + (b
<< RrBlueOffset(inst
));
144 } else im
->data
= (gchar
*) data
;
148 /* reverse the ordering, shifting left 16bit should be the first byte
150 const guint roff
= (16 - RrRedOffset(inst
)) / 8;
151 const guint goff
= (16 - RrGreenOffset(inst
)) / 8;
152 const guint boff
= (16 - RrBlueOffset(inst
)) / 8;
154 for (y
= 0; y
< im
->height
; y
++) {
155 for (x
= 0, outx
= 0; x
< im
->width
; x
++, outx
+= 3) {
156 r
= (data
[x
] >> RrDefaultRedOffset
) & 0xFF;
157 g
= (data
[x
] >> RrDefaultGreenOffset
) & 0xFF;
158 b
= (data
[x
] >> RrDefaultBlueOffset
) & 0xFF;
164 p8
+= im
->bytes_per_line
;
169 for (y
= 0; y
< im
->height
; y
++) {
170 for (x
= 0; x
< im
->width
; x
++) {
171 r
= (data
[x
] >> RrDefaultRedOffset
) & 0xFF;
172 r
= r
>> RrRedShift(inst
);
173 g
= (data
[x
] >> RrDefaultGreenOffset
) & 0xFF;
174 g
= g
>> RrGreenShift(inst
);
175 b
= (data
[x
] >> RrDefaultBlueOffset
) & 0xFF;
176 b
= b
>> RrBlueShift(inst
);
177 p16
[x
] = (r
<< RrRedOffset(inst
))
178 + (g
<< RrGreenOffset(inst
))
179 + (b
<< RrBlueOffset(inst
));
182 p16
+= im
->bytes_per_line
/2;
186 if (RrVisual(inst
)->class == TrueColor
) {
187 for (y
= 0; y
< im
->height
; y
++) {
188 for (x
= 0; x
< im
->width
; x
++) {
189 r
= (data
[x
] >> RrDefaultRedOffset
) & 0xFF;
190 r
= r
>> RrRedShift(inst
);
191 g
= (data
[x
] >> RrDefaultGreenOffset
) & 0xFF;
192 g
= g
>> RrGreenShift(inst
);
193 b
= (data
[x
] >> RrDefaultBlueOffset
) & 0xFF;
194 b
= b
>> RrBlueShift(inst
);
195 p8
[x
] = (r
<< RrRedOffset(inst
))
196 + (g
<< RrGreenOffset(inst
))
197 + (b
<< RrBlueOffset(inst
));
200 p8
+= im
->bytes_per_line
;
203 for (y
= 0; y
< im
->height
; y
++) {
204 for (x
= 0; x
< im
->width
; x
++) {
205 p8
[x
] = RrPickColor(inst
,
206 data
[x
] >> RrDefaultRedOffset
,
207 data
[x
] >> RrDefaultGreenOffset
,
208 data
[x
] >> RrDefaultBlueOffset
)->pixel
;
211 p8
+= im
->bytes_per_line
;
216 g_error("This image bit depth (%i) is currently unhandled", im
->bits_per_pixel
);
221 XColor
*RrPickColor(const RrInstance
*inst
, gint r
, gint g
, gint b
)
223 r
= (r
& 0xff) >> (8-RrPseudoBPC(inst
));
224 g
= (g
& 0xff) >> (8-RrPseudoBPC(inst
));
225 b
= (b
& 0xff) >> (8-RrPseudoBPC(inst
));
226 return &RrPseudoColors(inst
)[(r
<< (2*RrPseudoBPC(inst
))) +
227 (g
<< (1*RrPseudoBPC(inst
))) +
231 static void swap_byte_order(XImage
*im
)
236 for (y
= 0; y
< im
->height
; ++y
) {
237 for (x
= 0; x
< im
->height
; ++x
) {
238 gchar
*c
= &im
->data
[di
+ x
* im
->bits_per_pixel
/ 8];
241 switch (im
->bits_per_pixel
) {
254 g_error("Your bit depth (%i) is currently unhandled",
258 di
+= im
->bytes_per_line
;
261 if (im
->byte_order
== LSBFirst
)
262 im
->byte_order
= MSBFirst
;
264 im
->byte_order
= LSBFirst
;
267 void RrIncreaseDepth(const RrInstance
*inst
, RrPixel32
*data
, XImage
*im
)
271 RrPixel32
*p32
= (RrPixel32
*) im
->data
;
272 RrPixel16
*p16
= (RrPixel16
*) im
->data
;
273 guchar
*p8
= (guchar
*)im
->data
;
275 if (im
->byte_order
!= LSBFirst
)
278 switch (im
->bits_per_pixel
) {
280 for (y
= 0; y
< im
->height
; y
++) {
281 for (x
= 0; x
< im
->width
; x
++) {
282 r
= (p32
[x
] >> RrRedOffset(inst
)) & 0xff;
283 g
= (p32
[x
] >> RrGreenOffset(inst
)) & 0xff;
284 b
= (p32
[x
] >> RrBlueOffset(inst
)) & 0xff;
285 data
[x
] = (r
<< RrDefaultRedOffset
)
286 + (g
<< RrDefaultGreenOffset
)
287 + (b
<< RrDefaultBlueOffset
)
288 + (0xff << RrDefaultAlphaOffset
);
291 p32
+= im
->bytes_per_line
/4;
295 for (y
= 0; y
< im
->height
; y
++) {
296 for (x
= 0; x
< im
->width
; x
++) {
297 r
= (p16
[x
] & RrRedMask(inst
)) >>
300 g
= (p16
[x
] & RrGreenMask(inst
)) >>
301 RrGreenOffset(inst
) <<
303 b
= (p16
[x
] & RrBlueMask(inst
)) >>
304 RrBlueOffset(inst
) <<
306 data
[x
] = (r
<< RrDefaultRedOffset
)
307 + (g
<< RrDefaultGreenOffset
)
308 + (b
<< RrDefaultBlueOffset
)
309 + (0xff << RrDefaultAlphaOffset
);
312 p16
+= im
->bytes_per_line
/2;
316 g_error("This image bit depth (%i) is currently unhandled", 8);
319 for (y
= 0; y
< im
->height
; y
++) {
320 for (x
= 0; x
< im
->width
; x
++) {
321 if (!(((p8
[x
/ 8]) >> (x
% 8)) & 0x1))
322 data
[x
] = 0xff << RrDefaultAlphaOffset
; /* black */
324 data
[x
] = 0xffffffff; /* white */
327 p8
+= im
->bytes_per_line
;
331 g_error("This image bit depth (%i) is currently unhandled",
336 gint
RrColorRed(const RrColor
*c
)
341 gint
RrColorGreen(const RrColor
*c
)
346 gint
RrColorBlue(const RrColor
*c
)
351 gulong
RrColorPixel(const RrColor
*c
)
356 GC
RrColorGC(RrColor
*c
)
359 RrColorAllocateGC(c
);
This page took 0.050259 seconds and 5 git commands to generate.