]> Dogcows Code - chaz/openbox/blobdiff - otk/truerendercontrol.hh
add actions for key/mouse bindings etc
[chaz/openbox] / otk / truerendercontrol.hh
index 7da6f8be3671b708d26be19bcd533ae67d3f3edf..36dbe2441165b8946a79cb3a3e459b7cd0b8535f 100644 (file)
@@ -4,30 +4,10 @@
 
 #include "rendercontrol.hh"
 
-extern "C" {
-
-#ifdef HAVE_STDINT_H
-#  include <stdint.h>
-#else
-#  ifdef HAVE_SYS_TYPES_H
-#    include <sys/types.h>
-#  endif
-#endif
-
-}
-
 #include <vector>
 
 namespace otk {
 
-#ifdef HAVE_STDINT_H
-typedef uint32_t pixel32;
-typedef uint16_t pixel16;
-#else
-typedef u_int32_t pixel32;
-typedef u_int16_t pixel16;
-#endif
-
 class TrueRenderControl : public RenderControl {
 private:
   // the number of bits to shift a color value (from 0-255) to the right, to
@@ -41,16 +21,13 @@ private:
   int _green_offset;
   int _blue_offset;
 
+  virtual void reduceDepth(Surface &sf, XImage *im) const;
+
 public:
   TrueRenderControl(int screen);
   virtual ~TrueRenderControl();
 
-  virtual void drawBackground(Surface& sf, const RenderTexture &texture) const;
-  virtual void drawGradientBackground(Surface &sf,
-                                      const RenderTexture &texture) const;
-
-  inline void highlight(pixel32 *x, pixel32 *y, bool raised) const;
-  void reduceDepth(XImage *im, pixel32 *data) const;
+  virtual void allocateColor(XColor *color) const;
 };
 
 }
This page took 0.021066 seconds and 4 git commands to generate.