openbox/wrap/otk_renderstyle.i
Dana Jansens 4534151926 split up the otk stuff into separate files.
wrap otk::Property properly with typemaps so that it is usable.
wrap otk::Timer properly so that you can use it with a python callback
2003-02-17 21:25:52 +00:00

27 lines
538 B
OpenEdge ABL

// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
%module otk_renderstyle
%{
#include "config.h"
#include "renderstyle.hh"
%}
%include "std_string.i"
%include "otk_rendercolor.i"
%include "otk_rendertexture.i"
%include "otk_font.i"
namespace otk {
%ignore StyleNotify;
%ignore RenderStyle::initialize();
%ignore RenderStyle::destroy();
%ignore RenderStyle::registerNotify(int, StyleNotify*);
%ignore RenderStyle::unregisterNotify(int, StyleNotify *);
%ignore RenderStyle::~RenderStyle();
}
%include "renderstyle.hh"