]> icculus.org git repositories - mikachu/openbox.git/blob - otk/pseudorendercontrol.hh
use an icon smaller than the surface if possible
[mikachu/openbox.git] / otk / pseudorendercontrol.hh
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2 #ifndef __pseudorendercontrol_hh
3 #define __pseudorendercontrol_hh
4
5 #include "rendercontrol.hh"
6
7 namespace otk {
8
9 class PseudoRenderControl : public RenderControl {
10 private:
11   int _bpc;        // number of bits per color
12   int _ncolors;    // number of allocated colors, size of the XColor array
13   XColor *_colors; // the valid allocated colors
14   
15   virtual void reduceDepth(Surface &sf, XImage *im) const;
16   
17 public:
18   PseudoRenderControl(int screen);
19   virtual ~PseudoRenderControl();
20
21   virtual void allocateColor(XColor *color) const;
22 };
23
24 }
25
26 #endif // __pseudorendercontrol_hh