all repos — openbox @ 23940f9e034af023af610c56e915a6044ea436ec

openbox fork - make it a bit more like ryudo

add a new texture and style class
Dana Jansens danakj@orodu.net
commit

23940f9e034af023af610c56e915a6044ea436ec

parent

02066c5d0b09ae49aa1f9b7193fb16f1ac7f6a37

4 files changed, 37 insertions(+), 0 deletions(-)

jump to
M otk/Makefile.amotk/Makefile.am

@@ -9,6 +9,7 @@ #noinst_LIBRARIES=libotk.a

noinst_LTLIBRARIES=libotk.la libotk_la_SOURCES=rendercontrol.cc truerendercontrol.cc surface.cc \ + rendertexture.cc renderstyle.cc \ color.cc display.cc font.cc gccache.cc image.cc \ property.cc imagecontrol.cc rect.cc screeninfo.cc \ texture.cc timer.cc style.cc \
A otk/renderstyle.cc

@@ -0,0 +1,11 @@

+// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*- + +#ifdef HAVE_CONFIG_H +# include "../config.h" +#endif // HAVE_CONFIG_H + +#include "renderstyle.hh" + +namespace otk { + +}
A otk/renderstyle.hh

@@ -0,0 +1,14 @@

+// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*- +#ifndef __renderstyle_hh +#define __renderstyle_hh + +namespace otk { + +#include "rendertexture.hh" + +class RenderStyle { +}; + +} + +#endif // __rendertexture_hh
A otk/rendertexture.cc

@@ -0,0 +1,11 @@

+// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*- + +#ifdef HAVE_CONFIG_H +# include "../config.h" +#endif // HAVE_CONFIG_H + +#include "rendertexture.hh" + +namespace otk { + +}