2008-03-12 01:37:53 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008 Tom Hughes
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
//$Id$
|
|
|
|
|
2008-07-30 09:37:48 +02:00
|
|
|
#if defined(HAVE_CAIRO) && defined(HAVE_PYCAIRO)
|
2008-03-12 20:14:51 +01:00
|
|
|
|
2008-03-12 01:37:53 +01:00
|
|
|
#include <boost/python/type_id.hpp>
|
|
|
|
#include <boost/python/converter/registry.hpp>
|
|
|
|
|
|
|
|
#include <pycairo.h>
|
|
|
|
|
|
|
|
static Pycairo_CAPI_t *Pycairo_CAPI;
|
|
|
|
|
|
|
|
static void *extract_surface(PyObject* op)
|
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
if (PyObject_TypeCheck(op, const_cast<PyTypeObject*>(Pycairo_CAPI->Surface_Type)))
|
|
|
|
{
|
|
|
|
return op;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2008-03-12 01:37:53 +01:00
|
|
|
}
|
|
|
|
|
2009-02-06 01:46:29 +01:00
|
|
|
static void *extract_context(PyObject* op)
|
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
if (PyObject_TypeCheck(op, const_cast<PyTypeObject*>(Pycairo_CAPI->Context_Type)))
|
|
|
|
{
|
|
|
|
return op;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2009-02-06 01:46:29 +01:00
|
|
|
}
|
|
|
|
|
2008-03-12 01:37:53 +01:00
|
|
|
void register_cairo()
|
|
|
|
{
|
2011-04-04 06:40:18 +02:00
|
|
|
Pycairo_CAPI = (Pycairo_CAPI_t*) PyCObject_Import(const_cast<char *>("cairo"), const_cast<char *>("CAPI"));
|
2010-06-02 13:03:30 +02:00
|
|
|
if (Pycairo_CAPI == NULL) return;
|
2008-03-12 01:37:53 +01:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
boost::python::converter::registry::insert(&extract_surface, boost::python::type_id<PycairoSurface>());
|
|
|
|
boost::python::converter::registry::insert(&extract_context, boost::python::type_id<PycairoContext>());
|
2008-03-12 01:37:53 +01:00
|
|
|
}
|
2008-03-12 20:14:51 +01:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
void register_cairo()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|