]> Dogcows Code - chaz/openbox/blobdiff - otk/surface.cc
formatting
[chaz/openbox] / otk / surface.cc
index cea793f2305b8072b93a42042cac0b6feddffe65..70acf70ac5f16289897bcdad0be7c99f94c94928 100644 (file)
@@ -6,29 +6,73 @@
 
 #include "surface.hh"
 #include "display.hh"
+#include "screeninfo.hh"
+#include "rendercolor.hh"
+
+extern "C" {
+#include <X11/Xutil.h>
+}
 
 namespace otk {
 
-Surface::Surface()
-  : _size(1, 1),
-    _pm(None)
+Surface::Surface(int screen, const Point &size)
+  : _screen(screen),
+    _size(size),
+    _pixmap(None),
+    _xftdraw(0)
 {
 }
 
-Surface::Surface(const Point &size)
-  : _size(size),
-    _pm(None)
+Surface::~Surface()
 {
+  destroyObjects();
 }
 
-Surface::~Surface()
+void Surface::setPixmap(const RenderColor &color)
+{
+  if (_pixmap == None)
+    createObjects();
+
+  XFillRectangle(**display, _pixmap, color.gc(), 0, 0,
+                 _size.x(), _size.y());
+}
+
+void Surface::setPixmap(XImage *image)
 {
-  if (_pm != None) XFreePixmap(**display, _pm);
+  assert(image->width == _size.x());
+  assert(image->height == _size.y());
+  
+  if (_pixmap == None)
+    createObjects();
+
+  XPutImage(**display, _pixmap, DefaultGC(**display, _screen),
+            image, 0, 0, 0, 0, _size.x(), _size.y());
 }
 
-void Surface::setSize(int w, int h)
+void Surface::createObjects()
 {
-  _size.setPoint(w, h);
+  assert(_pixmap == None); assert(!_xftdraw);
+
+  const ScreenInfo *info = display->screenInfo(_screen);
+  
+  _pixmap = XCreatePixmap(**display, info->rootWindow(),
+                          _size.x(), _size.y(), info->depth());
+    
+  _xftdraw = XftDrawCreate(**display, _pixmap,
+                           info->visual(), info->colormap());
+}
+
+void Surface::destroyObjects()
+{
+  if (_xftdraw) {
+    XftDrawDestroy(_xftdraw);
+    _xftdraw = 0;
+  }
+
+  if (_pixmap != None) {
+    XFreePixmap(**display, _pixmap);
+    _pixmap = None;
+  }
 }
 
 }
This page took 0.023507 seconds and 4 git commands to generate.