]> Dogcows Code - chaz/openbox/blobdiff - otk/surface.cc
support pseudocolor and greyscale displays by, using solid colors instead of gradients
[chaz/openbox] / otk / surface.cc
index c02526f30644485edca8105e01f4146fd0840397..9dfb88898043faaac22541e4060c4bbb03e63649 100644 (file)
@@ -7,6 +7,7 @@
 #include "surface.hh"
 #include "display.hh"
 #include "screeninfo.hh"
+#include "rendercolor.hh"
 
 extern "C" {
 #include <X11/Xutil.h>
@@ -14,24 +15,12 @@ extern "C" {
 
 namespace otk {
 
-Surface::Surface(int screen)
-  : _screen(screen),
-    _size(1, 1),
-    _im(0),
-    _pm(None),
-    _xftdraw(0)
-{
-  createObjects();
-}
-
 Surface::Surface(int screen, const Point &size)
   : _screen(screen),
     _size(size),
-    _im(0),
-    _pm(None),
+    _pixmap(None),
     _xftdraw(0)
 {
-  createObjects();
 }
 
 Surface::~Surface()
@@ -39,45 +28,53 @@ Surface::~Surface()
   destroyObjects();
 }
 
-void Surface::createObjects()
+void Surface::setPixmap(const RenderColor &color)
 {
-  assert(!_im); assert(_pm == None); assert(!_xftdraw);
-
-  const ScreenInfo *info = display->screenInfo(_screen);
-  
-  _im = XCreateImage(**display, info->visual(), info->depth(),
-                    ZPixmap, 0, NULL, _size.x(), _size.y(), 32, 0);
-
-  _pm = XCreatePixmap(**display, info->rootWindow(), _size.x(), _size.y(),
-                     info->depth());
+  if (_pixmap == None)
+    createObjects();
 
-  _xftdraw = XftDrawCreate(**display, _pm, info->visual(), info->colormap());
+  XFillRectangle(**display, _pixmap, color.gc(), 0, 0,
+                 _size.x(), _size.y());
 }
 
-void Surface::destroyObjects()
+void Surface::setPixmap(XImage *image)
 {
-  assert(_im); assert(_pm != None); assert(_xftdraw);
+  assert(image->width == _size.x());
+  assert(image->height == _size.y());
+  
+  if (_pixmap == None)
+    createObjects();
 
-  // do the delete ourselves cuz we alloc it with new not malloc
-  delete [] _im->data;
-  _im->data = NULL;
-  XDestroyImage(_im);
-  _im = 0;
+  XPutImage(**display, _pixmap, DefaultGC(**display, _screen),
+            image, 0, 0, 0, 0, _size.x(), _size.y());
+}
 
-  XFreePixmap(**display, _pm);
-  _pm = None;
+void Surface::createObjects()
+{
+  assert(_pixmap == None); assert(!_xftdraw);
 
-  XftDrawDestroy(_xftdraw);
-  _xftdraw = 0;
+  const ScreenInfo *info = display->screenInfo(_screen);
+  
+  _pixmap = XCreatePixmap(**display, info->rootWindow(),
+                          _size.x(), _size.y(), info->depth());
+  assert(_pixmap != None);
+    
+  _xftdraw = XftDrawCreate(**display, _pixmap,
+                           info->visual(), info->colormap());
+  assert(_xftdraw);
 }
 
-void Surface::setSize(int w, int h)
+void Surface::destroyObjects()
 {
-  if (w == _size.x() && h == _size.y()) return; // no change
-  
-  _size.setPoint(w, h);
-  destroyObjects();
-  createObjects();
+  if (_xftdraw) {
+    XftDrawDestroy(_xftdraw);
+    _xftdraw = 0;
+  }
+
+  if (_pixmap != None) {
+    XFreePixmap(**display, _pixmap);
+    _pixmap = None;
+  }
 }
 
 }
This page took 0.02603 seconds and 4 git commands to generate.