]> Dogcows Code - chaz/openbox/blobdiff - otk/rendercontrol.cc
add skeleton for RenderControl::drawImage
[chaz/openbox] / otk / rendercontrol.cc
index 189bbd6e00514a3d2fd242adcf9c7595ff54b8eb..ef02230ea3b8a4d976c4d2bf7e0af3f64b1bfcbc 100644 (file)
@@ -1,16 +1,16 @@
 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
 
-#ifdef    HAVE_CONFIG_H
-#  include "../config.h"
-#endif // HAVE_CONFIG_H
+#include "config.h"
 
 #include "rendercontrol.hh"
 #include "truerendercontrol.hh"
+#include "pseudorendercontrol.hh"
 #include "rendertexture.hh"
+#include "rendercolor.hh"
+#include "renderstyle.hh"
 #include "display.hh"
 #include "screeninfo.hh"
 #include "surface.hh"
-#include "color.hh"
 #include "font.hh"
 #include "ustring.hh"
 
@@ -19,7 +19,7 @@ extern "C" {
 #  include <stdlib.h>
 #endif // HAVE_STDLIB_H
 
-#include "gettext.h"
+#include "../src/gettext.h"
 #define _(str) gettext(str)
 }
 
@@ -34,10 +34,10 @@ RenderControl *RenderControl::getRenderControl(int screen)
     return new TrueRenderControl(screen);
   case PseudoColor:
   case StaticColor:
-//    return new PseudoRenderControl(screen);
+    return new PseudoRenderControl(screen);
   case GrayScale:
   case StaticGray:
-//    return new GrayRenderControl(screen);
+    return new PseudoRenderControl(screen);
   default:
     printf(_("RenderControl: Unsupported visual %d specified. Aborting.\n"),
           vclass);
@@ -49,19 +49,23 @@ RenderControl::RenderControl(int screen)
   : _screen(screen)
 {
   printf("Initializing RenderControl\n");
-
-  
 }
 
 RenderControl::~RenderControl()
 {
   printf("Destroying RenderControl\n");
+}
 
-
+void RenderControl::drawRoot(const RenderColor &color) const
+{
+  Window root = display->screenInfo(_screen)->rootWindow();
+  XSetWindowBackground(**display, root, color.pixel());
+  XClearWindow(**display, root);
 }
 
 void RenderControl::drawString(Surface& sf, const Font &font, int x, int y,
-                              const Color &color, const ustring &string) const
+                              const RenderColor &color,
+                               const ustring &string) const
 {
   assert(sf._screen == _screen);
   XftDraw *d = sf._xftdraw;
@@ -98,7 +102,6 @@ void RenderControl::drawString(Surface& sf, const Font &font, int x, int y,
   else
     XftDrawString8(d, &c, font._xftfont, x, font._xftfont->ascent + y,
                    (FcChar8*)string.c_str(), string.bytes());
-
   return;
 }
 
@@ -112,7 +115,7 @@ void RenderControl::drawSolidBackground(Surface& sf,
   
   sf.setPixmap(texture.color());
 
-  int width = sf.width(), height = sf.height();
+  int width = sf.size().width(), height = sf.size().height();
   int left = 0, top = 0, right = width - 1, bottom = height - 1;
 
   if (texture.interlaced())
@@ -187,4 +190,33 @@ void RenderControl::drawSolidBackground(Surface& sf,
   }
 }
 
+void RenderControl::drawMask(Surface &sf, const RenderColor &color,
+                             const PixmapMask &mask) const
+{
+  assert(_screen == sf._screen);
+  assert(_screen == color.screen());
+
+  if (mask.mask == None) return; // no mask given
+
+  int width = sf.size().width(), height = sf.size().height();
+  
+  // set the clip region
+  int x = (width - mask.w) / 2, y = (height - mask.h) / 2;
+  XSetClipMask(**display, color.gc(), mask.mask);
+  XSetClipOrigin(**display, color.gc(), x, y);
+
+  // fill in the clipped region
+  XFillRectangle(**display, sf.pixmap(), color.gc(), x, y,
+                 x + mask.w, y + mask.h);
+
+  // unset the clip region
+  XSetClipMask(**display, color.gc(), None);
+  XSetClipOrigin(**display, color.gc(), 0, 0);
+}
+
+void RenderControl::drawImage(Surface &sf, int w, int h,
+                              unsigned long *data) const
+{
+}
+
 }
This page took 0.025334 seconds and 4 git commands to generate.