2012-01-30 03:32:25 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
2012-02-08 00:40:02 +01:00
|
|
|
* Copyright (C) 2012 Artem Pavlenko, Jean-Francois Doyon
|
2012-01-30 03:32:25 +01:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
#include <boost/python.hpp>
|
2012-02-11 11:21:33 +01:00
|
|
|
#include <boost/python/stl_iterator.hpp>
|
2012-12-16 21:50:36 +01:00
|
|
|
#include <boost/noncopyable.hpp>
|
2012-01-30 03:32:25 +01:00
|
|
|
|
2012-09-16 01:22:34 +02:00
|
|
|
#include <mapnik/text/text_properties.hpp>
|
|
|
|
#include <mapnik/text/placements/simple.hpp>
|
|
|
|
#include <mapnik/text/placements/list.hpp>
|
|
|
|
#include <mapnik/text/formatting/text.hpp>
|
|
|
|
#include <mapnik/text/formatting/list.hpp>
|
|
|
|
#include <mapnik/text/formatting/format.hpp>
|
|
|
|
#include <mapnik/text/formatting/expression_format.hpp>
|
2012-06-29 00:48:04 +02:00
|
|
|
#include <mapnik/text/layout.hpp>
|
2012-01-30 03:32:25 +01:00
|
|
|
#include <mapnik/expression_string.hpp>
|
2012-02-05 23:42:44 +01:00
|
|
|
#include <mapnik/text_symbolizer.hpp>
|
2012-02-12 04:06:34 +01:00
|
|
|
|
|
|
|
#include "mapnik_enumeration.hpp"
|
2012-02-08 00:40:02 +01:00
|
|
|
#include "mapnik_threads.hpp"
|
2012-02-08 22:43:57 +01:00
|
|
|
#include "python_optional.hpp"
|
2012-01-30 03:32:25 +01:00
|
|
|
|
|
|
|
using namespace mapnik;
|
2012-02-05 15:11:08 +01:00
|
|
|
|
|
|
|
/* Notes:
|
2012-03-13 15:59:22 +01:00
|
|
|
Overriding functions in inherited classes:
|
|
|
|
boost.python documentation doesn't really tell you how to do it.
|
|
|
|
But this helps:
|
|
|
|
http://www.gamedev.net/topic/446225-inheritance-in-boostpython/
|
2012-02-05 15:11:08 +01:00
|
|
|
|
2012-03-13 15:59:22 +01:00
|
|
|
register_ptr_to_python is required for wrapped classes, but not for unwrapped.
|
2012-02-05 15:11:08 +01:00
|
|
|
|
2012-03-13 15:59:22 +01:00
|
|
|
Functions don't have to be members of the class, but can also be
|
|
|
|
normal functions taking a ref to the class as first parameter.
|
2012-02-05 15:11:08 +01:00
|
|
|
*/
|
2012-01-30 03:32:25 +01:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
using namespace boost::python;
|
|
|
|
|
2012-02-25 01:14:02 +01:00
|
|
|
boost::python::tuple get_displacement(text_symbolizer_properties const& t)
|
2012-01-30 03:32:25 +01:00
|
|
|
{
|
2012-07-28 16:34:44 +02:00
|
|
|
return boost::python::make_tuple(t.displacement.x, t.displacement.y);
|
2012-01-30 03:32:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void set_displacement(text_symbolizer_properties &t, boost::python::tuple arg)
|
|
|
|
{
|
2012-01-31 21:46:36 +01:00
|
|
|
if (len(arg) != 2)
|
|
|
|
{
|
|
|
|
PyErr_SetObject(PyExc_ValueError,
|
|
|
|
("expected 2-item tuple in call to set_displacement; got %s"
|
|
|
|
% arg).ptr()
|
|
|
|
);
|
|
|
|
throw_error_already_set();
|
|
|
|
}
|
2012-02-02 02:30:26 +01:00
|
|
|
|
2012-01-30 03:32:25 +01:00
|
|
|
double x = extract<double>(arg[0]);
|
2012-01-31 21:46:36 +01:00
|
|
|
double y = extract<double>(arg[1]);
|
2012-07-28 16:34:44 +02:00
|
|
|
t.displacement.set(x, y);
|
2012-01-30 03:32:25 +01:00
|
|
|
}
|
|
|
|
|
2012-02-04 00:19:20 +01:00
|
|
|
|
2012-02-12 23:00:38 +01:00
|
|
|
struct NodeWrap: formatting::node, wrapper<formatting::node>
|
2012-02-03 02:01:01 +01:00
|
|
|
{
|
2012-02-12 23:00:38 +01:00
|
|
|
NodeWrap() : formatting::node(), wrapper<formatting::node>()
|
2012-02-04 00:19:20 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-07-02 00:10:55 +02:00
|
|
|
void apply(char_properties_ptr p, Feature const& feature, text_layout &output) const
|
2012-02-03 02:01:01 +01:00
|
|
|
{
|
2012-02-09 00:22:12 +01:00
|
|
|
python_block_auto_unblock b;
|
|
|
|
this->get_override("apply")(ptr(&p), ptr(&feature), ptr(&output));
|
2012-02-03 02:01:01 +01:00
|
|
|
}
|
2012-02-05 04:09:09 +01:00
|
|
|
|
|
|
|
virtual void add_expressions(expression_set &output) const
|
|
|
|
{
|
|
|
|
override o = this->get_override("add_expressions");
|
|
|
|
if (o)
|
|
|
|
{
|
2012-02-09 00:22:12 +01:00
|
|
|
python_block_auto_unblock b;
|
2012-02-05 04:09:09 +01:00
|
|
|
o(ptr(&output));
|
|
|
|
} else
|
|
|
|
{
|
2012-02-12 23:00:38 +01:00
|
|
|
formatting::node::add_expressions(output);
|
2012-02-05 04:09:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void default_add_expressions(expression_set &output) const
|
|
|
|
{
|
2012-02-12 23:00:38 +01:00
|
|
|
formatting::node::add_expressions(output);
|
2012-02-05 04:09:09 +01:00
|
|
|
}
|
2012-02-03 02:01:01 +01:00
|
|
|
};
|
|
|
|
|
2012-02-04 00:19:20 +01:00
|
|
|
|
2012-02-12 23:00:38 +01:00
|
|
|
struct TextNodeWrap: formatting::text_node, wrapper<formatting::text_node>
|
2012-02-04 00:19:20 +01:00
|
|
|
{
|
2012-02-12 23:00:38 +01:00
|
|
|
TextNodeWrap(expression_ptr expr) : formatting::text_node(expr), wrapper<formatting::text_node>()
|
2012-02-12 01:49:54 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-02-12 23:00:38 +01:00
|
|
|
TextNodeWrap(std::string expr_text) : formatting::text_node(expr_text), wrapper<formatting::text_node>()
|
2012-02-04 00:19:20 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-07-02 00:10:55 +02:00
|
|
|
virtual void apply(char_properties_ptr p, Feature const& feature, text_layout &output) const
|
2012-02-04 00:19:20 +01:00
|
|
|
{
|
2012-02-08 00:40:02 +01:00
|
|
|
if(override o = this->get_override("apply"))
|
2012-02-04 00:19:20 +01:00
|
|
|
{
|
2012-02-09 00:22:12 +01:00
|
|
|
python_block_auto_unblock b;
|
2012-02-08 00:40:02 +01:00
|
|
|
o(ptr(&p), ptr(&feature), ptr(&output));
|
2012-02-04 00:19:20 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-02-12 23:00:38 +01:00
|
|
|
formatting::text_node::apply(p, feature, output);
|
2012-02-04 00:19:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-02 00:10:55 +02:00
|
|
|
void default_apply(char_properties_ptr p, Feature const& feature, text_layout &output) const
|
2012-02-04 00:19:20 +01:00
|
|
|
{
|
2012-02-12 23:00:38 +01:00
|
|
|
formatting::text_node::apply(p, feature, output);
|
2012-02-04 00:19:20 +01:00
|
|
|
}
|
2012-02-06 01:10:09 +01:00
|
|
|
};
|
|
|
|
|
2012-02-12 23:00:38 +01:00
|
|
|
struct FormatNodeWrap: formatting::format_node, wrapper<formatting::format_node>
|
2012-02-06 01:10:09 +01:00
|
|
|
{
|
2012-07-02 00:10:55 +02:00
|
|
|
virtual void apply(char_properties_ptr p, Feature const& feature, text_layout &output) const
|
2012-02-06 01:10:09 +01:00
|
|
|
{
|
2012-02-08 00:40:02 +01:00
|
|
|
if(override o = this->get_override("apply"))
|
2012-02-06 01:10:09 +01:00
|
|
|
{
|
2012-02-09 00:22:12 +01:00
|
|
|
python_block_auto_unblock b;
|
2012-02-08 00:40:02 +01:00
|
|
|
o(ptr(&p), ptr(&feature), ptr(&output));
|
2012-02-06 01:10:09 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-02-12 23:00:38 +01:00
|
|
|
formatting::format_node::apply(p, feature, output);
|
2012-02-06 01:10:09 +01:00
|
|
|
}
|
|
|
|
}
|
2012-02-04 00:19:20 +01:00
|
|
|
|
2012-07-02 00:10:55 +02:00
|
|
|
void default_apply(char_properties_ptr p, Feature const& feature, text_layout &output) const
|
2012-02-06 01:10:09 +01:00
|
|
|
{
|
2012-02-12 23:00:38 +01:00
|
|
|
formatting::format_node::apply(p, feature, output);
|
2012-02-06 01:10:09 +01:00
|
|
|
}
|
2012-02-04 00:19:20 +01:00
|
|
|
};
|
|
|
|
|
2012-02-19 02:03:25 +01:00
|
|
|
struct ExprFormatWrap: formatting::expression_format, wrapper<formatting::expression_format>
|
|
|
|
{
|
2012-07-02 00:10:55 +02:00
|
|
|
virtual void apply(char_properties_ptr p, Feature const& feature, text_layout &output) const
|
2012-02-19 02:03:25 +01:00
|
|
|
{
|
|
|
|
if(override o = this->get_override("apply"))
|
|
|
|
{
|
|
|
|
python_block_auto_unblock b;
|
|
|
|
o(ptr(&p), ptr(&feature), ptr(&output));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
formatting::expression_format::apply(p, feature, output);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-02 00:10:55 +02:00
|
|
|
void default_apply(char_properties_ptr p, Feature const& feature, text_layout &output) const
|
2012-02-19 02:03:25 +01:00
|
|
|
{
|
|
|
|
formatting::expression_format::apply(p, feature, output);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-02-12 23:00:38 +01:00
|
|
|
struct ListNodeWrap: formatting::list_node, wrapper<formatting::list_node>
|
2012-02-11 11:21:33 +01:00
|
|
|
{
|
|
|
|
//Default constructor
|
2012-02-12 23:00:38 +01:00
|
|
|
ListNodeWrap() : formatting::list_node(), wrapper<formatting::list_node>()
|
2012-02-11 11:21:33 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//Special constructor: Takes a python sequence as its argument
|
2012-02-12 23:00:38 +01:00
|
|
|
ListNodeWrap(object l) : formatting::list_node(), wrapper<formatting::list_node>()
|
2012-02-11 11:21:33 +01:00
|
|
|
{
|
2012-02-12 23:00:38 +01:00
|
|
|
stl_input_iterator<formatting::node_ptr> begin(l), end;
|
2012-02-11 11:21:33 +01:00
|
|
|
children_.insert(children_.end(), begin, end);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TODO: Add constructor taking variable number of arguments.
|
|
|
|
http://wiki.python.org/moin/boost.python/HowTo#A.22Raw.22_function */
|
|
|
|
|
|
|
|
|
2012-07-02 00:10:55 +02:00
|
|
|
virtual void apply(char_properties_ptr p, Feature const& feature, text_layout &output) const
|
2012-02-11 11:21:33 +01:00
|
|
|
{
|
|
|
|
if(override o = this->get_override("apply"))
|
|
|
|
{
|
|
|
|
python_block_auto_unblock b;
|
|
|
|
o(ptr(&p), ptr(&feature), ptr(&output));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-02-12 23:00:38 +01:00
|
|
|
formatting::list_node::apply(p, feature, output);
|
2012-02-11 11:21:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-02 00:10:55 +02:00
|
|
|
void default_apply(char_properties_ptr p, Feature const& feature, text_layout &output) const
|
2012-02-11 11:21:33 +01:00
|
|
|
{
|
2012-02-12 23:00:38 +01:00
|
|
|
formatting::list_node::apply(p, feature, output);
|
2012-02-11 11:21:33 +01:00
|
|
|
}
|
2012-02-19 02:03:25 +01:00
|
|
|
|
|
|
|
inline void IndexError(){
|
|
|
|
PyErr_SetString(PyExc_IndexError, "Index out of range");
|
|
|
|
throw_error_already_set();
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned get_length()
|
|
|
|
{
|
|
|
|
return children_.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
formatting::node_ptr get_item(int i)
|
|
|
|
{
|
2012-06-26 20:23:26 +02:00
|
|
|
if (i < 0) i+= children_.size();
|
|
|
|
if (i < static_cast<int>(children_.size())) return children_[i];
|
2012-02-19 02:03:25 +01:00
|
|
|
IndexError();
|
|
|
|
return formatting::node_ptr(); //Avoid compiler warning
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_item(int i, formatting::node_ptr ptr)
|
|
|
|
{
|
2012-06-26 20:23:26 +02:00
|
|
|
if (i < 0) i+= children_.size();
|
|
|
|
if (i < static_cast<int>(children_.size())) children_[i] = ptr;
|
2012-02-19 02:03:25 +01:00
|
|
|
IndexError();
|
|
|
|
}
|
|
|
|
|
|
|
|
void append(formatting::node_ptr ptr)
|
|
|
|
{
|
|
|
|
children_.push_back(ptr);
|
|
|
|
}
|
2012-02-11 11:21:33 +01:00
|
|
|
};
|
|
|
|
|
2012-02-03 13:54:49 +01:00
|
|
|
struct TextPlacementsWrap: text_placements, wrapper<text_placements>
|
|
|
|
{
|
2012-03-04 16:38:40 +01:00
|
|
|
text_placement_info_ptr get_placement_info(double scale_factor_) const
|
2012-02-03 13:54:49 +01:00
|
|
|
{
|
2012-02-09 00:22:12 +01:00
|
|
|
python_block_auto_unblock b;
|
|
|
|
return this->get_override("get_placement_info")();
|
2012-02-03 13:54:49 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct TextPlacementInfoWrap: text_placement_info, wrapper<text_placement_info>
|
|
|
|
{
|
|
|
|
TextPlacementInfoWrap(text_placements const* parent,
|
2012-03-13 15:59:22 +01:00
|
|
|
double scale_factor_)
|
2012-03-04 16:38:40 +01:00
|
|
|
: text_placement_info(parent, scale_factor_)
|
2012-02-03 13:54:49 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
bool next()
|
|
|
|
{
|
2012-02-09 00:22:12 +01:00
|
|
|
python_block_auto_unblock b;
|
|
|
|
return this->get_override("next")();
|
2012-02-03 13:54:49 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-02-05 04:09:09 +01:00
|
|
|
void insert_expression(expression_set *set, expression_ptr p)
|
|
|
|
{
|
|
|
|
set->insert(p);
|
|
|
|
}
|
|
|
|
|
2012-07-02 00:10:55 +02:00
|
|
|
char_properties_ptr get_format(text_symbolizer const& sym)
|
2012-02-06 00:33:47 +01:00
|
|
|
{
|
2012-02-16 00:27:03 +01:00
|
|
|
return sym.get_placement_options()->defaults.format;
|
2012-02-06 00:33:47 +01:00
|
|
|
}
|
|
|
|
|
2012-07-02 00:10:55 +02:00
|
|
|
void set_format(text_symbolizer const& sym, char_properties_ptr format)
|
2012-02-06 00:33:47 +01:00
|
|
|
{
|
2012-02-16 00:27:03 +01:00
|
|
|
sym.get_placement_options()->defaults.format = format;
|
2012-02-06 00:33:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
text_symbolizer_properties & get_properties(text_symbolizer const& sym)
|
|
|
|
{
|
2012-02-16 00:27:03 +01:00
|
|
|
return sym.get_placement_options()->defaults;
|
2012-02-06 00:33:47 +01:00
|
|
|
}
|
|
|
|
|
2012-02-16 00:27:03 +01:00
|
|
|
void set_properties(text_symbolizer const& sym, text_symbolizer_properties & defaults)
|
2012-02-06 00:33:47 +01:00
|
|
|
{
|
2012-02-16 00:27:03 +01:00
|
|
|
sym.get_placement_options()->defaults = defaults;
|
2012-02-06 00:33:47 +01:00
|
|
|
}
|
|
|
|
|
2012-01-30 03:32:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void export_text_placement()
|
|
|
|
{
|
|
|
|
using namespace boost::python;
|
|
|
|
|
|
|
|
enumeration_<label_placement_e>("label_placement")
|
|
|
|
.value("LINE_PLACEMENT",LINE_PLACEMENT)
|
|
|
|
.value("POINT_PLACEMENT",POINT_PLACEMENT)
|
|
|
|
.value("VERTEX_PLACEMENT",VERTEX_PLACEMENT)
|
|
|
|
.value("INTERIOR_PLACEMENT",INTERIOR_PLACEMENT)
|
|
|
|
;
|
|
|
|
enumeration_<vertical_alignment_e>("vertical_alignment")
|
|
|
|
.value("TOP",V_TOP)
|
|
|
|
.value("MIDDLE",V_MIDDLE)
|
|
|
|
.value("BOTTOM",V_BOTTOM)
|
|
|
|
.value("AUTO",V_AUTO)
|
|
|
|
;
|
|
|
|
|
|
|
|
enumeration_<horizontal_alignment_e>("horizontal_alignment")
|
|
|
|
.value("LEFT",H_LEFT)
|
|
|
|
.value("MIDDLE",H_MIDDLE)
|
|
|
|
.value("RIGHT",H_RIGHT)
|
|
|
|
.value("AUTO",H_AUTO)
|
|
|
|
;
|
|
|
|
|
|
|
|
enumeration_<justify_alignment_e>("justify_alignment")
|
|
|
|
.value("LEFT",J_LEFT)
|
|
|
|
.value("MIDDLE",J_MIDDLE)
|
|
|
|
.value("RIGHT",J_RIGHT)
|
2012-03-19 17:12:53 +01:00
|
|
|
.value("AUTO", J_AUTO)
|
2012-01-30 03:32:25 +01:00
|
|
|
;
|
|
|
|
|
|
|
|
enumeration_<text_transform_e>("text_transform")
|
|
|
|
.value("NONE",NONE)
|
|
|
|
.value("UPPERCASE",UPPERCASE)
|
|
|
|
.value("LOWERCASE",LOWERCASE)
|
|
|
|
.value("CAPITALIZE",CAPITALIZE)
|
|
|
|
;
|
|
|
|
|
2012-02-05 23:42:44 +01:00
|
|
|
class_<text_symbolizer>("TextSymbolizer",
|
2012-03-13 15:59:22 +01:00
|
|
|
init<>())
|
2012-02-05 23:42:44 +01:00
|
|
|
.def(init<expression_ptr, std::string const&, unsigned, color const&>())
|
|
|
|
.add_property("placements",
|
|
|
|
&text_symbolizer::get_placement_options,
|
|
|
|
&text_symbolizer::set_placement_options)
|
2012-02-06 00:33:47 +01:00
|
|
|
//TODO: Check return policy, is there a better way to do this?
|
|
|
|
.add_property("format",
|
2012-07-02 00:10:55 +02:00
|
|
|
make_function(&get_format),
|
2012-02-06 00:33:47 +01:00
|
|
|
&set_format,
|
|
|
|
"Shortcut for placements.defaults.default_format")
|
|
|
|
.add_property("properties",
|
|
|
|
make_function(&get_properties, return_value_policy<reference_existing_object>()),
|
|
|
|
&set_properties,
|
|
|
|
"Shortcut for placements.defaults")
|
2012-08-22 03:05:43 +02:00
|
|
|
.add_property("comp_op",
|
|
|
|
&text_symbolizer::comp_op,
|
|
|
|
&text_symbolizer::set_comp_op,
|
|
|
|
"Set/get the comp-op")
|
|
|
|
.add_property("clip",
|
|
|
|
&text_symbolizer::clip,
|
|
|
|
&text_symbolizer::set_clip,
|
|
|
|
"Set/get the text geometry's clipping status")
|
2012-02-05 23:42:44 +01:00
|
|
|
;
|
|
|
|
|
2012-01-30 03:32:25 +01:00
|
|
|
|
2012-02-21 09:52:14 +01:00
|
|
|
class_with_converter<text_symbolizer_properties>
|
2012-03-13 15:59:22 +01:00
|
|
|
("TextSymbolizerProperties")
|
2012-02-21 09:52:14 +01:00
|
|
|
.def_readwrite_convert("label_placement", &text_symbolizer_properties::label_placement)
|
|
|
|
.def_readwrite_convert("horizontal_alignment", &text_symbolizer_properties::halign)
|
|
|
|
.def_readwrite_convert("justify_alignment", &text_symbolizer_properties::jalign)
|
|
|
|
.def_readwrite_convert("vertical_alignment", &text_symbolizer_properties::valign)
|
2012-02-02 02:30:26 +01:00
|
|
|
.def_readwrite("orientation", &text_symbolizer_properties::orientation)
|
|
|
|
.add_property("displacement",
|
|
|
|
&get_displacement,
|
|
|
|
&set_displacement)
|
|
|
|
.def_readwrite("label_spacing", &text_symbolizer_properties::label_spacing)
|
|
|
|
.def_readwrite("label_position_tolerance", &text_symbolizer_properties::label_position_tolerance)
|
|
|
|
.def_readwrite("avoid_edges", &text_symbolizer_properties::avoid_edges)
|
|
|
|
.def_readwrite("minimum_distance", &text_symbolizer_properties::minimum_distance)
|
|
|
|
.def_readwrite("minimum_padding", &text_symbolizer_properties::minimum_padding)
|
|
|
|
.def_readwrite("minimum_path_length", &text_symbolizer_properties::minimum_path_length)
|
|
|
|
.def_readwrite("maximum_angle_char_delta", &text_symbolizer_properties::max_char_angle_delta)
|
|
|
|
.def_readwrite("force_odd_labels", &text_symbolizer_properties::force_odd_labels)
|
|
|
|
.def_readwrite("allow_overlap", &text_symbolizer_properties::allow_overlap)
|
2012-06-25 16:09:40 +02:00
|
|
|
.def_readwrite("largest_bbox_only", &text_symbolizer_properties::largest_bbox_only)
|
2012-02-02 02:30:26 +01:00
|
|
|
.def_readwrite("text_ratio", &text_symbolizer_properties::text_ratio)
|
|
|
|
.def_readwrite("wrap_width", &text_symbolizer_properties::wrap_width)
|
2012-09-14 18:53:52 +02:00
|
|
|
.def_readwrite("wrap_before", &text_symbolizer_properties::wrap_before)
|
2012-02-16 00:27:03 +01:00
|
|
|
.def_readwrite("format", &text_symbolizer_properties::format)
|
2012-02-03 02:01:01 +01:00
|
|
|
.add_property ("format_tree",
|
|
|
|
&text_symbolizer_properties::format_tree,
|
|
|
|
&text_symbolizer_properties::set_format_tree);
|
2012-03-13 15:59:22 +01:00
|
|
|
/* from_xml, to_xml operate on mapnik's internal XML tree and don't make sense in python.
|
|
|
|
add_expressions isn't useful in python either. The result is only needed by
|
|
|
|
attribute_collector (which isn't exposed in python) and
|
|
|
|
it just calls add_expressions of the associated formatting tree.
|
|
|
|
set_old_style expression is just a compatibility wrapper and doesn't need to be exposed in python. */
|
|
|
|
;
|
2012-02-03 13:54:49 +01:00
|
|
|
|
2012-08-21 23:37:35 +02:00
|
|
|
|
2012-09-13 23:11:27 +02:00
|
|
|
class_with_converter<char_properties,
|
|
|
|
boost::shared_ptr<char_properties> >
|
2012-03-13 15:59:22 +01:00
|
|
|
("CharProperties")
|
2012-08-21 23:37:35 +02:00
|
|
|
.def_readwrite_convert("text_transform", &char_properties::text_transform)
|
2012-09-14 23:17:45 +02:00
|
|
|
.def_readwrite_convert("fontset", &char_properties::fontset)
|
2012-02-05 15:11:08 +01:00
|
|
|
.def(init<char_properties const&>()) //Copy constructor
|
2012-02-02 02:30:26 +01:00
|
|
|
.def_readwrite("face_name", &char_properties::face_name)
|
|
|
|
.def_readwrite("text_size", &char_properties::text_size)
|
|
|
|
.def_readwrite("character_spacing", &char_properties::character_spacing)
|
|
|
|
.def_readwrite("line_spacing", &char_properties::line_spacing)
|
|
|
|
.def_readwrite("text_opacity", &char_properties::text_opacity)
|
|
|
|
.def_readwrite("wrap_char", &char_properties::wrap_char)
|
2012-08-21 23:48:10 +02:00
|
|
|
.def_readwrite("wrap_character", &char_properties::wrap_char)
|
2012-02-02 02:30:26 +01:00
|
|
|
.def_readwrite("fill", &char_properties::fill)
|
|
|
|
.def_readwrite("halo_fill", &char_properties::halo_fill)
|
|
|
|
.def_readwrite("halo_radius", &char_properties::halo_radius)
|
2012-02-03 13:54:49 +01:00
|
|
|
/* from_xml, to_xml operate on mapnik's internal XML tree and don't make sense in python.*/
|
|
|
|
;
|
|
|
|
|
2012-02-04 00:19:20 +01:00
|
|
|
class_<TextPlacementsWrap,
|
2012-03-13 15:59:22 +01:00
|
|
|
boost::shared_ptr<TextPlacementsWrap>,
|
|
|
|
boost::noncopyable>
|
|
|
|
("TextPlacements")
|
2012-02-16 00:27:03 +01:00
|
|
|
.def_readwrite("defaults", &text_placements::defaults)
|
2012-02-03 13:54:49 +01:00
|
|
|
.def("get_placement_info", pure_virtual(&text_placements::get_placement_info))
|
2012-02-05 15:45:30 +01:00
|
|
|
/* TODO: add_expressions() */
|
2012-02-03 13:54:49 +01:00
|
|
|
;
|
2012-02-03 23:24:32 +01:00
|
|
|
register_ptr_to_python<boost::shared_ptr<text_placements> >();
|
2012-02-03 13:54:49 +01:00
|
|
|
|
2012-02-04 00:19:20 +01:00
|
|
|
class_<TextPlacementInfoWrap,
|
2012-03-13 15:59:22 +01:00
|
|
|
boost::shared_ptr<TextPlacementInfoWrap>,
|
|
|
|
boost::noncopyable>
|
|
|
|
("TextPlacementInfo",
|
|
|
|
init<text_placements const*, double>())
|
2012-02-03 13:54:49 +01:00
|
|
|
.def("next", pure_virtual(&text_placement_info::next))
|
|
|
|
.def_readwrite("properties", &text_placement_info::properties)
|
|
|
|
.def_readwrite("scale_factor", &text_placement_info::scale_factor)
|
2012-02-02 02:30:26 +01:00
|
|
|
;
|
2012-02-05 04:09:09 +01:00
|
|
|
register_ptr_to_python<boost::shared_ptr<text_placement_info> >();
|
2012-02-03 02:01:01 +01:00
|
|
|
|
2012-02-05 15:45:30 +01:00
|
|
|
|
2012-02-05 04:09:09 +01:00
|
|
|
class_<expression_set,
|
2012-03-13 15:59:22 +01:00
|
|
|
boost::shared_ptr<expression_set>,
|
|
|
|
boost::noncopyable>
|
|
|
|
("ExpressionSet")
|
2012-02-05 15:45:30 +01:00
|
|
|
.def("insert", &insert_expression);
|
2012-03-13 15:59:22 +01:00
|
|
|
;
|
2012-02-05 04:09:09 +01:00
|
|
|
|
2012-02-03 23:24:32 +01:00
|
|
|
|
2012-02-03 02:01:01 +01:00
|
|
|
//TODO: Python namespace
|
2012-02-04 00:19:20 +01:00
|
|
|
class_<NodeWrap,
|
2012-03-13 15:59:22 +01:00
|
|
|
boost::shared_ptr<NodeWrap>,
|
|
|
|
boost::noncopyable>
|
|
|
|
("FormattingNode")
|
2012-02-12 23:00:38 +01:00
|
|
|
.def("apply", pure_virtual(&formatting::node::apply))
|
2012-02-05 04:09:09 +01:00
|
|
|
.def("add_expressions",
|
2012-02-12 23:00:38 +01:00
|
|
|
&formatting::node::add_expressions,
|
2012-02-05 04:09:09 +01:00
|
|
|
&NodeWrap::default_add_expressions)
|
2012-02-03 02:01:01 +01:00
|
|
|
;
|
2012-02-12 23:00:38 +01:00
|
|
|
register_ptr_to_python<boost::shared_ptr<formatting::node> >();
|
2012-02-04 00:19:20 +01:00
|
|
|
|
2012-02-05 15:45:30 +01:00
|
|
|
|
2012-02-04 00:19:20 +01:00
|
|
|
class_<TextNodeWrap,
|
2012-03-13 15:59:22 +01:00
|
|
|
boost::shared_ptr<TextNodeWrap>,
|
|
|
|
bases<formatting::node>,
|
|
|
|
boost::noncopyable>
|
|
|
|
("FormattingText", init<expression_ptr>())
|
2012-02-12 01:49:54 +01:00
|
|
|
.def(init<std::string>())
|
2012-02-12 23:00:38 +01:00
|
|
|
.def("apply", &formatting::text_node::apply, &TextNodeWrap::default_apply)
|
2012-02-05 15:45:30 +01:00
|
|
|
.add_property("text",
|
2012-02-12 23:00:38 +01:00
|
|
|
&formatting::text_node::get_text,
|
|
|
|
&formatting::text_node::set_text)
|
2012-02-04 00:19:20 +01:00
|
|
|
;
|
2012-02-12 23:00:38 +01:00
|
|
|
register_ptr_to_python<boost::shared_ptr<formatting::text_node> >();
|
2012-02-04 00:19:20 +01:00
|
|
|
|
2012-02-06 01:10:09 +01:00
|
|
|
|
2012-02-21 09:52:14 +01:00
|
|
|
class_with_converter<FormatNodeWrap,
|
2012-03-13 15:59:22 +01:00
|
|
|
boost::shared_ptr<FormatNodeWrap>,
|
|
|
|
bases<formatting::node>,
|
|
|
|
boost::noncopyable>
|
|
|
|
("FormattingFormat")
|
2012-02-21 09:52:14 +01:00
|
|
|
.def_readwrite_convert("text_size", &formatting::format_node::text_size)
|
|
|
|
.def_readwrite_convert("face_name", &formatting::format_node::face_name)
|
|
|
|
.def_readwrite_convert("character_spacing", &formatting::format_node::character_spacing)
|
|
|
|
.def_readwrite_convert("line_spacing", &formatting::format_node::line_spacing)
|
|
|
|
.def_readwrite_convert("text_opacity", &formatting::format_node::text_opacity)
|
|
|
|
.def_readwrite_convert("wrap_char", &formatting::format_node::wrap_char)
|
2012-08-21 23:48:10 +02:00
|
|
|
.def_readwrite_convert("wrap_character", &formatting::format_node::wrap_char)
|
2012-02-21 09:52:14 +01:00
|
|
|
.def_readwrite_convert("text_transform", &formatting::format_node::text_transform)
|
|
|
|
.def_readwrite_convert("fill", &formatting::format_node::fill)
|
|
|
|
.def_readwrite_convert("halo_fill", &formatting::format_node::halo_fill)
|
|
|
|
.def_readwrite_convert("halo_radius", &formatting::format_node::halo_radius)
|
2012-02-12 23:00:38 +01:00
|
|
|
.def("apply", &formatting::format_node::apply, &FormatNodeWrap::default_apply)
|
2012-02-06 01:10:09 +01:00
|
|
|
.add_property("child",
|
2012-02-12 23:00:38 +01:00
|
|
|
&formatting::format_node::get_child,
|
|
|
|
&formatting::format_node::set_child)
|
2012-02-06 01:10:09 +01:00
|
|
|
;
|
2012-02-12 23:00:38 +01:00
|
|
|
register_ptr_to_python<boost::shared_ptr<formatting::format_node> >();
|
2012-02-11 11:21:33 +01:00
|
|
|
|
|
|
|
class_<ListNodeWrap,
|
2012-03-13 15:59:22 +01:00
|
|
|
boost::shared_ptr<ListNodeWrap>,
|
|
|
|
bases<formatting::node>,
|
|
|
|
boost::noncopyable>
|
|
|
|
("FormattingList", init<>())
|
2012-02-11 11:21:33 +01:00
|
|
|
.def(init<list>())
|
2012-02-12 23:00:38 +01:00
|
|
|
.def("append", &formatting::list_node::push_back)
|
|
|
|
.def("apply", &formatting::list_node::apply, &ListNodeWrap::default_apply)
|
2012-02-19 02:03:25 +01:00
|
|
|
.def("__len__", &ListNodeWrap::get_length)
|
|
|
|
.def("__getitem__", &ListNodeWrap::get_item)
|
|
|
|
.def("__setitem__", &ListNodeWrap::set_item)
|
|
|
|
.def("append", &ListNodeWrap::append)
|
2012-03-13 15:59:22 +01:00
|
|
|
;
|
2012-02-11 11:21:33 +01:00
|
|
|
|
2012-02-12 23:00:38 +01:00
|
|
|
register_ptr_to_python<boost::shared_ptr<formatting::list_node> >();
|
2012-02-19 02:03:25 +01:00
|
|
|
|
|
|
|
class_<ExprFormatWrap,
|
2012-03-13 15:59:22 +01:00
|
|
|
boost::shared_ptr<ExprFormatWrap>,
|
|
|
|
bases<formatting::node>,
|
|
|
|
boost::noncopyable>
|
|
|
|
("FormattingExpressionFormat")
|
2012-02-19 02:03:25 +01:00
|
|
|
.def_readwrite("text_size", &formatting::expression_format::text_size)
|
|
|
|
.def_readwrite("face_name", &formatting::expression_format::face_name)
|
|
|
|
.def_readwrite("character_spacing", &formatting::expression_format::character_spacing)
|
|
|
|
.def_readwrite("line_spacing", &formatting::expression_format::line_spacing)
|
|
|
|
.def_readwrite("text_opacity", &formatting::expression_format::text_opacity)
|
|
|
|
.def_readwrite("wrap_char", &formatting::expression_format::wrap_char)
|
2012-08-21 23:48:10 +02:00
|
|
|
.def_readwrite("wrap_character", &formatting::expression_format::wrap_char)
|
2012-02-19 02:03:25 +01:00
|
|
|
.def_readwrite("fill", &formatting::expression_format::fill)
|
|
|
|
.def_readwrite("halo_fill", &formatting::expression_format::halo_fill)
|
|
|
|
.def_readwrite("halo_radius", &formatting::expression_format::halo_radius)
|
|
|
|
.def("apply", &formatting::expression_format::apply, &ExprFormatWrap::default_apply)
|
|
|
|
.add_property("child",
|
|
|
|
&formatting::expression_format::get_child,
|
|
|
|
&formatting::expression_format::set_child)
|
|
|
|
;
|
|
|
|
register_ptr_to_python<boost::shared_ptr<formatting::expression_format> >();
|
|
|
|
|
|
|
|
//TODO: registry
|
2012-01-30 03:32:25 +01:00
|
|
|
}
|