all repos — openbox @ e6bfddf849009bef7bbb75be5147b4a533fa1ad2

openbox fork - make it a bit more like ryudo

add pseudorendercontrol
Dana Jansens danakj@orodu.net
commit

e6bfddf849009bef7bbb75be5147b4a533fa1ad2

parent

e0eaee86ded5ae63eaaf82da22df5c8845eb3724

M otk/.cvsignoreotk/.cvsignore

@@ -29,6 +29,7 @@ texture.lo

timer.lo timerqueuemanager.lo truerendercontrol.lo +pseudorendercontrol.lo util.lo widget.lo ustring.lo
M otk/Makefile.amotk/Makefile.am

@@ -12,7 +12,7 @@ #noinst_LIBRARIES=libotk.a

lib_LTLIBRARIES=libotk.la libotk_la_SOURCES=rendercontrol.cc truerendercontrol.cc surface.cc \ - renderstyle.cc rendercolor.cc \ + renderstyle.cc rendercolor.cc pseudorendercontrol.cc \ display.cc font.cc \ property.cc rect.cc screeninfo.cc \ timer.cc \
A otk/pseudorendercontrol.cc

@@ -0,0 +1,58 @@

+// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*- + +#ifdef HAVE_CONFIG_H +# include "../config.h" +#endif // HAVE_CONFIG_H + +#include "pseudorendercontrol.hh" +#include "display.hh" +#include "screeninfo.hh" +#include "surface.hh" +#include "rendertexture.hh" + +extern "C" { +#ifdef HAVE_STDLIB_H +# include <stdlib.h> +#endif // HAVE_STDLIB_H + +#include "../src/gettext.h" +#define _(str) gettext(str) +} + +namespace otk { + +PseudoRenderControl::PseudoRenderControl(int screen) + : RenderControl(screen) +{ + const ScreenInfo *info = display->screenInfo(_screen); + + printf("Initializing PseudoColor RenderControl\n"); + +} + +PseudoRenderControl::~PseudoRenderControl() +{ + printf("Destroying PseudoColor RenderControl\n"); + + +} + +void PseudoRenderControl::drawGradientBackground( + Surface &sf, const RenderTexture &texture) const +{ +} + +void PseudoRenderControl::drawBackground(Surface& sf, + const RenderTexture &texture) const +{ + assert(_screen == sf._screen); + assert(_screen == texture.color().screen()); + + if (texture.gradient() == RenderTexture::Solid) { + drawSolidBackground(sf, texture); + } else { + drawGradientBackground(sf, texture); + } +} + +}
A otk/pseudorendercontrol.hh

@@ -0,0 +1,38 @@

+// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*- +#ifndef __pseudorendercontrol_hh +#define __pseudorendercontrol_hh + +#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 { + +class PseudoRenderControl : public RenderControl { +private: + + virtual void drawGradientBackground(Surface &sf, + const RenderTexture &texture) const; + +public: + PseudoRenderControl(int screen); + virtual ~PseudoRenderControl(); + + virtual void drawBackground(Surface& sf, const RenderTexture &texture) const; +}; + +} + +#endif // __pseudorendercontrol_hh
M otk/rendercontrol.ccotk/rendercontrol.cc

@@ -6,6 +6,7 @@ #endif // HAVE_CONFIG_H

#include "rendercontrol.hh" #include "truerendercontrol.hh" +#include "pseudorendercontrol.hh" #include "rendertexture.hh" #include "rendercolor.hh" #include "display.hh"

@@ -34,7 +35,7 @@ case TrueColor:

return new TrueRenderControl(screen); case PseudoColor: case StaticColor: -// return new PseudoRenderControl(screen); + return new PseudoRenderControl(screen); case GrayScale: case StaticGray: // return new GrayRenderControl(screen);
M otk/surface.hhotk/surface.hh

@@ -4,6 +4,7 @@ #define __surface_hh

#include "point.hh" #include "truerendercontrol.hh" +#include "pseudorendercontrol.hh" extern "C" { #include <X11/Xlib.h>

@@ -45,6 +46,7 @@ // The RenderControl classes use the internal objects in this class to render

// to it. Noone else needs them tho, so they are private. friend class RenderControl; friend class TrueRenderControl; + friend class PseudoRenderControl; }; }
M otk/truerendercontrol.hhotk/truerendercontrol.hh

@@ -53,14 +53,6 @@ int _red_offset;

int _green_offset; int _blue_offset; -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; void verticalGradient(Surface &sf, const RenderTexture &texture,

@@ -69,6 +61,14 @@ void diagonalGradient(Surface &sf, const RenderTexture &texture,

pixel32 *data) const; void crossDiagonalGradient(Surface &sf, const RenderTexture &texture, pixel32 *data) const; + virtual void drawGradientBackground(Surface &sf, + const RenderTexture &texture) const; + +public: + TrueRenderControl(int screen); + virtual ~TrueRenderControl(); + + virtual void drawBackground(Surface& sf, const RenderTexture &texture) const; }; }