X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=otk%2Fpseudorendercontrol.hh;h=b6d60371a1382578124f8ba5de15648e84abbfe2;hb=3147507622de5ab771c99a4bb636f55344f6cbd7;hp=6d3255ee4c28439e92e1293bc60f4fd4bcfadad4;hpb=e6bfddf849009bef7bbb75be5147b4a533fa1ad2;p=chaz%2Fopenbox diff --git a/otk/pseudorendercontrol.hh b/otk/pseudorendercontrol.hh index 6d3255ee..b6d60371 100644 --- a/otk/pseudorendercontrol.hh +++ b/otk/pseudorendercontrol.hh @@ -4,33 +4,23 @@ #include "rendercontrol.hh" -extern "C" { - -#ifdef HAVE_STDINT_H -# include -#else -# ifdef HAVE_SYS_TYPES_H -# include -# endif -#endif - -} - -#include - namespace otk { class PseudoRenderControl : public RenderControl { private: - - virtual void drawGradientBackground(Surface &sf, - const RenderTexture &texture) const; - + int _bpc; // number of bits per color + int _ncolors; // number of allocated colors, size of the XColor array + XColor *_colors; // the valid allocated colors + + virtual void reduceDepth(Surface &sf, XImage *im) const; + + const XColor *pickColor(int r, int g, int b) const; + public: PseudoRenderControl(int screen); virtual ~PseudoRenderControl(); - virtual void drawBackground(Surface& sf, const RenderTexture &texture) const; + virtual void allocateColor(XColor *color) const; }; }