X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=otk%2Fsurface.cc;h=cc2255030d660f3aca605fedd0f17c9d1eb0cd5c;hb=4b9556c03174d2c58492531f06eaf3718668162b;hp=cea793f2305b8072b93a42042cac0b6feddffe65;hpb=2005c344bdb4b59611972bc37e194d2e14cdf911;p=chaz%2Fopenbox diff --git a/otk/surface.cc b/otk/surface.cc index cea793f2..cc225503 100644 --- a/otk/surface.cc +++ b/otk/surface.cc @@ -1,34 +1,97 @@ // -*- 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 "surface.hh" #include "display.hh" +#include "screeninfo.hh" +#include "rendercolor.hh" + +extern "C" { +#include +#include +} namespace otk { -Surface::Surface() - : _size(1, 1), - _pm(None) +Surface::Surface(int screen, const Size &size) + : _screen(screen), + _size(size), + _pixel_data(new pixel32[size.width()*size.height()]), + _pixmap(None), + _xftdraw(0) { } -Surface::Surface(const Point &size) - : _size(size), - _pm(None) +Surface::~Surface() { + destroyObjects(); + freePixelData(); } -Surface::~Surface() +void Surface::freePixelData() { - if (_pm != None) XFreePixmap(**display, _pm); + if (_pixel_data) { + delete [] _pixel_data; + _pixel_data = 0; + } } -void Surface::setSize(int w, int h) +void Surface::setPixmap(const RenderColor &color) { - _size.setPoint(w, h); + assert(_pixel_data); + if (_pixmap == None) + createObjects(); + + XFillRectangle(**display, _pixmap, color.gc(), 0, 0, + _size.width(), _size.height()); + + pixel32 val = (color.red() << default_red_shift) | + (color.green() << default_green_shift) | + (color.blue() << default_blue_shift); + for (unsigned int i = 0, s = _size.width() * _size.height(); i < s; ++i) + _pixel_data[i] = val; +} + +void Surface::setPixmap(XImage *image) +{ + assert(_pixel_data); + assert(image->width == _size.width()); + assert(image->height == _size.height()); + + if (_pixmap == None) + createObjects(); + + XPutImage(**display, _pixmap, DefaultGC(**display, _screen), + image, 0, 0, 0, 0, _size.width(), _size.height()); +} + +void Surface::createObjects() +{ + assert(_pixmap == None); assert(!_xftdraw); + + const ScreenInfo *info = display->screenInfo(_screen); + + _pixmap = XCreatePixmap(**display, info->rootWindow(), + _size.width(), _size.height(), info->depth()); + assert(_pixmap != None); + + _xftdraw = XftDrawCreate(**display, _pixmap, + info->visual(), info->colormap()); + assert(_xftdraw); +} + +void Surface::destroyObjects() +{ + if (_xftdraw) { + XftDrawDestroy(_xftdraw); + _xftdraw = 0; + } + + if (_pixmap != None) { + XFreePixmap(**display, _pixmap); + _pixmap = None; + } } }