]>
Dogcows Code - chaz/openbox/blob - otk/rendercolor.hh
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2 #ifndef __rendercolor_hh
3 #define __rendercolor_hh
19 RGB(int red
, int green
, int blue
) : r(red
), g(green
), b(blue
) {}
20 // color is in ARGB format
21 RGB(unsigned long color
)
22 : r((color
>> 16) & 0xff),
23 g((color
>> 8) & 0xff),
32 CacheItem(GC g
, unsigned long p
) : gc(g
), pixel(p
), count(0) {}
34 static std::map
<unsigned long, CacheItem
*> *_cache
;
47 static void initialize();
48 static void destroy();
50 RenderColor(int screen
, unsigned char red
,
51 unsigned char green
, unsigned char blue
);
52 RenderColor(int screen
, RGB rgb
);
53 virtual ~RenderColor();
55 inline int screen() const { return _screen
; }
56 inline unsigned char red() const { return _red
; }
57 inline unsigned char green() const { return _green
; }
58 inline unsigned char blue() const { return _blue
; }
59 inline unsigned long pixel() const { return _pixel
; }
60 inline GC
gc() const { return _gc
; }
65 #endif // __rendercolor_hh
This page took 0.039572 seconds and 5 git commands to generate.