]>
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
18 RGB(int red
, int green
, int blue
) : r(red
), g(green
), b(blue
) {}
19 // color is in ARGB format
20 RGB(unsigned long color
)
21 : r((color
>> 16) & 0xff),
22 g((color
>> 8) & 0xff),
29 CacheItem(GC g
) : gc(g
), count(0) {}
31 static std::map
<unsigned long, CacheItem
*> *_cache
;
43 static void initialize();
44 static void destroy();
46 RenderColor(int screen
, unsigned char red
,
47 unsigned char green
, unsigned char blue
);
48 RenderColor(int screen
, RGB rgb
);
49 virtual ~RenderColor();
51 inline int screen() const { return _screen
; }
52 inline unsigned char red() const { return _red
; }
53 inline unsigned char green() const { return _green
; }
54 inline unsigned char blue() const { return _blue
; }
55 inline GC
gc() const { return _gc
; }
60 #endif // __rendercolor_hh
This page took 0.039608 seconds and 5 git commands to generate.