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_slice_new(RrColor
);
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 RrColor
*RrColorCopy(RrColor
* c
)
106 return RrColorNew(c
->inst
, c
->r
, c
->g
, c
->b
);
109 void RrColorFree(RrColor
*c
)
112 if (--c
->refcount
< 1) {
113 #ifndef NO_COLOR_CACHE
114 g_assert(g_hash_table_lookup(RrColorHash(c
->inst
), &c
->key
));
115 g_hash_table_remove(RrColorHash(c
->inst
), &c
->key
);
117 if (c
->pixel
) XFreeColors(RrDisplay(c
->inst
), RrColormap(c
->inst
),
119 if (c
->gc
) XFreeGC(RrDisplay(c
->inst
), c
->gc
);
120 g_slice_free(RrColor
, c
);
125 void RrReduceDepth(const RrInstance
*inst
, RrPixel32
*data
, XImage
*im
)
129 RrPixel32
*p32
= (RrPixel32
*) im
->data
;
130 RrPixel16
*p16
= (RrPixel16
*) im
->data
;
131 RrPixel8
*p8
= (RrPixel8
*) im
->data
;
132 switch (im
->bits_per_pixel
) {
134 if ((RrRedOffset(inst
) != RrDefaultRedOffset
) ||
135 (RrBlueOffset(inst
) != RrDefaultBlueOffset
) ||
136 (RrGreenOffset(inst
) != RrDefaultGreenOffset
)) {
137 for (y
= 0; y
< im
->height
; y
++) {
138 for (x
= 0; x
< im
->width
; x
++) {
139 r
= (data
[x
] >> RrDefaultRedOffset
) & 0xFF;
140 g
= (data
[x
] >> RrDefaultGreenOffset
) & 0xFF;
141 b
= (data
[x
] >> RrDefaultBlueOffset
) & 0xFF;
142 p32
[x
] = (r
<< RrRedOffset(inst
))
143 + (g
<< RrGreenOffset(inst
))
144 + (b
<< RrBlueOffset(inst
));
149 } else im
->data
= (gchar
*) data
;
153 /* reverse the ordering, shifting left 16bit should be the first byte
155 const guint roff
= (16 - RrRedOffset(inst
)) / 8;
156 const guint goff
= (16 - RrGreenOffset(inst
)) / 8;
157 const guint boff
= (16 - RrBlueOffset(inst
)) / 8;
159 for (y
= 0; y
< im
->height
; y
++) {
160 for (x
= 0, outx
= 0; x
< im
->width
; x
++, outx
+= 3) {
161 r
= (data
[x
] >> RrDefaultRedOffset
) & 0xFF;
162 g
= (data
[x
] >> RrDefaultGreenOffset
) & 0xFF;
163 b
= (data
[x
] >> RrDefaultBlueOffset
) & 0xFF;
169 p8
+= im
->bytes_per_line
;
174 for (y
= 0; y
< im
->height
; y
++) {
175 for (x
= 0; x
< im
->width
; x
++) {
176 r
= (data
[x
] >> RrDefaultRedOffset
) & 0xFF;
177 r
= r
>> RrRedShift(inst
);
178 g
= (data
[x
] >> RrDefaultGreenOffset
) & 0xFF;
179 g
= g
>> RrGreenShift(inst
);
180 b
= (data
[x
] >> RrDefaultBlueOffset
) & 0xFF;
181 b
= b
>> RrBlueShift(inst
);
182 p16
[x
] = (r
<< RrRedOffset(inst
))
183 + (g
<< RrGreenOffset(inst
))
184 + (b
<< RrBlueOffset(inst
));
187 p16
+= im
->bytes_per_line
/2;
191 if (RrVisual(inst
)->class == TrueColor
) {
192 for (y
= 0; y
< im
->height
; y
++) {
193 for (x
= 0; x
< im
->width
; x
++) {
194 r
= (data
[x
] >> RrDefaultRedOffset
) & 0xFF;
195 r
= r
>> RrRedShift(inst
);
196 g
= (data
[x
] >> RrDefaultGreenOffset
) & 0xFF;
197 g
= g
>> RrGreenShift(inst
);
198 b
= (data
[x
] >> RrDefaultBlueOffset
) & 0xFF;
199 b
= b
>> RrBlueShift(inst
);
200 p8
[x
] = (r
<< RrRedOffset(inst
))
201 + (g
<< RrGreenOffset(inst
))
202 + (b
<< RrBlueOffset(inst
));
205 p8
+= im
->bytes_per_line
;
208 for (y
= 0; y
< im
->height
; y
++) {
209 for (x
= 0; x
< im
->width
; x
++) {
210 p8
[x
] = RrPickColor(inst
,
211 data
[x
] >> RrDefaultRedOffset
,
212 data
[x
] >> RrDefaultGreenOffset
,
213 data
[x
] >> RrDefaultBlueOffset
)->pixel
;
216 p8
+= im
->bytes_per_line
;
221 g_error("This image bit depth (%i) is currently unhandled", im
->bits_per_pixel
);
226 XColor
*RrPickColor(const RrInstance
*inst
, gint r
, gint g
, gint b
)
228 r
= (r
& 0xff) >> (8-RrPseudoBPC(inst
));
229 g
= (g
& 0xff) >> (8-RrPseudoBPC(inst
));
230 b
= (b
& 0xff) >> (8-RrPseudoBPC(inst
));
231 return &RrPseudoColors(inst
)[(r
<< (2*RrPseudoBPC(inst
))) +
232 (g
<< (1*RrPseudoBPC(inst
))) +
236 static void swap_byte_order(XImage
*im
)
241 for (y
= 0; y
< im
->height
; ++y
) {
242 for (x
= 0; x
< im
->height
; ++x
) {
243 gchar
*c
= &im
->data
[di
+ x
* im
->bits_per_pixel
/ 8];
246 switch (im
->bits_per_pixel
) {
259 g_error("Your bit depth (%i) is currently unhandled",
263 di
+= im
->bytes_per_line
;
266 if (im
->byte_order
== LSBFirst
)
267 im
->byte_order
= MSBFirst
;
269 im
->byte_order
= LSBFirst
;
272 void RrIncreaseDepth(const RrInstance
*inst
, RrPixel32
*data
, XImage
*im
)
276 RrPixel32
*p32
= (RrPixel32
*) im
->data
;
277 RrPixel16
*p16
= (RrPixel16
*) im
->data
;
278 guchar
*p8
= (guchar
*)im
->data
;
280 if (im
->byte_order
!= LSBFirst
)
283 switch (im
->bits_per_pixel
) {
285 for (y
= 0; y
< im
->height
; y
++) {
286 for (x
= 0; x
< im
->width
; x
++) {
287 r
= (p32
[x
] >> RrRedOffset(inst
)) & 0xff;
288 g
= (p32
[x
] >> RrGreenOffset(inst
)) & 0xff;
289 b
= (p32
[x
] >> RrBlueOffset(inst
)) & 0xff;
290 data
[x
] = (r
<< RrDefaultRedOffset
)
291 + (g
<< RrDefaultGreenOffset
)
292 + (b
<< RrDefaultBlueOffset
)
293 + (0xff << RrDefaultAlphaOffset
);
296 p32
+= im
->bytes_per_line
/4;
300 for (y
= 0; y
< im
->height
; y
++) {
301 for (x
= 0; x
< im
->width
; x
++) {
302 r
= (p16
[x
] & RrRedMask(inst
)) >>
305 g
= (p16
[x
] & RrGreenMask(inst
)) >>
306 RrGreenOffset(inst
) <<
308 b
= (p16
[x
] & RrBlueMask(inst
)) >>
309 RrBlueOffset(inst
) <<
311 data
[x
] = (r
<< RrDefaultRedOffset
)
312 + (g
<< RrDefaultGreenOffset
)
313 + (b
<< RrDefaultBlueOffset
)
314 + (0xff << RrDefaultAlphaOffset
);
317 p16
+= im
->bytes_per_line
/2;
321 g_error("This image bit depth (%i) is currently unhandled", 8);
324 for (y
= 0; y
< im
->height
; y
++) {
325 for (x
= 0; x
< im
->width
; x
++) {
326 if (!(((p8
[x
/ 8]) >> (x
% 8)) & 0x1))
327 data
[x
] = 0xff << RrDefaultAlphaOffset
; /* black */
329 data
[x
] = 0xffffffff; /* white */
332 p8
+= im
->bytes_per_line
;
336 g_error("This image bit depth (%i) is currently unhandled",
341 gint
RrColorRed(const RrColor
*c
)
346 gint
RrColorGreen(const RrColor
*c
)
351 gint
RrColorBlue(const RrColor
*c
)
356 gulong
RrColorPixel(const RrColor
*c
)
361 GC
RrColorGC(RrColor
*c
)
364 RrColorAllocateGC(c
);