2006-03-31 12:32:02 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
2006-02-25 12:03:30 +01:00
|
|
|
*
|
2006-03-31 12:32:02 +02:00
|
|
|
* Copyright (C) 2006 Artem Pavlenko, Jean-Francois Doyon
|
2006-02-25 12:03:30 +01:00
|
|
|
*
|
2006-03-31 12:32:02 +02: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,
|
2006-02-25 12:03:30 +01:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2006-03-31 12:32:02 +02:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2006-02-25 12:03:30 +01:00
|
|
|
*
|
2006-03-31 12:32:02 +02:00
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
2006-02-25 12:03:30 +01:00
|
|
|
//$Id$
|
|
|
|
|
|
|
|
#include <boost/python.hpp>
|
2006-10-04 13:22:18 +02:00
|
|
|
|
|
|
|
#include <mapnik/text_symbolizer.hpp>
|
2007-11-05 10:28:26 +01:00
|
|
|
#include "mapnik_enumeration.hpp"
|
2006-02-25 12:03:30 +01:00
|
|
|
|
2009-05-26 03:50:58 +02:00
|
|
|
using namespace mapnik;
|
|
|
|
using mapnik::color;
|
|
|
|
using mapnik::text_symbolizer;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
using namespace boost::python;
|
|
|
|
|
|
|
|
list get_displacement_list(const text_symbolizer& t)
|
|
|
|
{
|
|
|
|
position pos = t.get_displacement();
|
|
|
|
double dx = boost::get<0>(pos);
|
|
|
|
double dy = boost::get<1>(pos);
|
|
|
|
boost::python::list disp;
|
|
|
|
disp.append(dx);
|
|
|
|
disp.append(dy);
|
|
|
|
return disp;
|
|
|
|
}
|
|
|
|
|
|
|
|
list get_anchor_list(const text_symbolizer& t)
|
|
|
|
{
|
|
|
|
position anch = t.get_anchor();
|
|
|
|
double x = boost::get<0>(anch);
|
|
|
|
double y = boost::get<1>(anch);
|
|
|
|
boost::python::list anchor;
|
|
|
|
anchor.append(x);
|
|
|
|
anchor.append(y);
|
|
|
|
return anchor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct text_symbolizer_pickle_suite : boost::python::pickle_suite
|
|
|
|
{
|
|
|
|
static boost::python::tuple
|
|
|
|
getinitargs(const text_symbolizer& t)
|
|
|
|
{
|
|
|
|
|
2009-12-16 21:02:06 +01:00
|
|
|
return boost::python::make_tuple("TODO",//t.get_name(),
|
|
|
|
t.get_face_name(),t.get_text_size(),t.get_fill());
|
|
|
|
|
2009-05-26 03:50:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static boost::python::tuple
|
|
|
|
getstate(const text_symbolizer& t)
|
|
|
|
{
|
|
|
|
boost::python::list disp = get_displacement_list(t);
|
|
|
|
boost::python::list anchor = get_anchor_list(t);
|
2009-08-18 00:54:50 +02:00
|
|
|
|
|
|
|
// so we do not exceed max args accepted by make_tuple,
|
|
|
|
// lets put the increasing list of parameters in a list
|
|
|
|
boost::python::list extras;
|
2009-08-28 01:39:18 +02:00
|
|
|
extras.append(t.get_wrap_char_string());
|
2009-08-18 00:54:50 +02:00
|
|
|
extras.append(t.get_line_spacing());
|
|
|
|
extras.append(t.get_character_spacing());
|
|
|
|
extras.append(t.get_text_convert());
|
2010-01-11 19:59:14 +01:00
|
|
|
extras.append(t.get_wrap_before());
|
|
|
|
extras.append(t.get_horizontal_alignment());
|
|
|
|
extras.append(t.get_justify_alignment());
|
|
|
|
extras.append(t.get_opacity());
|
2009-05-26 03:50:58 +02:00
|
|
|
|
2009-08-28 01:39:18 +02:00
|
|
|
return boost::python::make_tuple(disp,t.get_label_placement(),
|
2009-05-26 03:50:58 +02:00
|
|
|
t.get_vertical_alignment(),t.get_halo_radius(),t.get_halo_fill(),t.get_text_ratio(),
|
|
|
|
t.get_wrap_width(),t.get_label_spacing(),t.get_minimum_distance(),t.get_allow_overlap(),
|
2009-08-18 00:54:50 +02:00
|
|
|
anchor,t.get_force_odd_labels(),t.get_max_char_angle_delta(),extras
|
|
|
|
);
|
2009-05-26 03:50:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
setstate (text_symbolizer& t, boost::python::tuple state)
|
|
|
|
{
|
|
|
|
using namespace boost::python;
|
|
|
|
|
2009-08-28 01:39:18 +02:00
|
|
|
if (len(state) != 14)
|
2009-05-26 03:50:58 +02:00
|
|
|
{
|
|
|
|
PyErr_SetObject(PyExc_ValueError,
|
2009-08-18 00:54:50 +02:00
|
|
|
("expected 15-item tuple in call to __setstate__; got %s"
|
2009-05-26 03:50:58 +02:00
|
|
|
% state).ptr()
|
|
|
|
);
|
|
|
|
throw_error_already_set();
|
|
|
|
}
|
|
|
|
|
|
|
|
list disp = extract<list>(state[0]);
|
|
|
|
double dx = extract<double>(disp[0]);
|
|
|
|
double dy = extract<double>(disp[1]);
|
|
|
|
t.set_displacement(dx,dy);
|
|
|
|
|
2009-08-28 01:39:18 +02:00
|
|
|
t.set_label_placement(extract<label_placement_e>(state[1]));
|
2009-05-26 03:50:58 +02:00
|
|
|
|
2009-08-28 01:39:18 +02:00
|
|
|
t.set_vertical_alignment(extract<vertical_alignment_e>(state[2]));
|
2009-05-26 03:50:58 +02:00
|
|
|
|
2009-08-28 01:39:18 +02:00
|
|
|
t.set_halo_radius(extract<unsigned>(state[3]));
|
2009-05-26 03:50:58 +02:00
|
|
|
|
2009-08-28 01:39:18 +02:00
|
|
|
t.set_halo_fill(extract<color>(state[4]));
|
2009-05-26 03:50:58 +02:00
|
|
|
|
2009-08-28 01:39:18 +02:00
|
|
|
t.set_text_ratio(extract<unsigned>(state[5]));
|
2009-05-26 03:50:58 +02:00
|
|
|
|
2009-08-28 01:39:18 +02:00
|
|
|
t.set_wrap_width(extract<unsigned>(state[6]));
|
2009-05-26 03:50:58 +02:00
|
|
|
|
2009-08-28 01:39:18 +02:00
|
|
|
t.set_label_spacing(extract<unsigned>(state[7]));
|
2009-05-26 03:50:58 +02:00
|
|
|
|
2009-08-28 01:39:18 +02:00
|
|
|
t.set_minimum_distance(extract<double>(state[8]));
|
2009-05-26 03:50:58 +02:00
|
|
|
|
2009-08-28 01:39:18 +02:00
|
|
|
t.set_allow_overlap(extract<bool>(state[9]));
|
2009-05-26 03:50:58 +02:00
|
|
|
|
2009-08-28 01:39:18 +02:00
|
|
|
list anch = extract<list>(state[10]);
|
2009-05-26 03:50:58 +02:00
|
|
|
double x = extract<double>(anch[0]);
|
|
|
|
double y = extract<double>(anch[1]);
|
|
|
|
t.set_anchor(x,y);
|
|
|
|
|
2009-08-28 01:39:18 +02:00
|
|
|
t.set_force_odd_labels(extract<bool>(state[11]));
|
2009-05-26 03:50:58 +02:00
|
|
|
|
2009-08-28 01:39:18 +02:00
|
|
|
t.set_max_char_angle_delta(extract<double>(state[12]));
|
2009-08-18 00:54:50 +02:00
|
|
|
|
2009-08-28 01:39:18 +02:00
|
|
|
list extras = extract<list>(state[13]);
|
2009-08-18 00:54:50 +02:00
|
|
|
t.set_wrap_char_from_string(extract<std::string>(extras[0]));
|
|
|
|
t.set_line_spacing(extract<unsigned>(extras[1]));
|
|
|
|
t.set_character_spacing(extract<unsigned>(extras[2]));
|
|
|
|
t.set_text_convert(extract<text_convert_e>(extras[3]));
|
2010-01-11 19:59:14 +01:00
|
|
|
t.set_wrap_before(extract<bool>(extras[4]));
|
|
|
|
t.set_horizontal_alignment(extract<horizontal_alignment_e>(extras[5]));
|
|
|
|
t.set_justify_alignment(extract<justify_alignment_e>(extras[6]));
|
|
|
|
t.set_opacity(extract<double>(extras[7]));
|
2009-05-26 03:50:58 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2006-02-25 12:03:30 +01:00
|
|
|
void export_text_symbolizer()
|
|
|
|
{
|
2009-08-18 00:54:50 +02:00
|
|
|
using namespace boost::python;
|
|
|
|
|
|
|
|
enumeration_<label_placement_e>("label_placement")
|
|
|
|
.value("LINE_PLACEMENT",LINE_PLACEMENT)
|
|
|
|
.value("POINT_PLACEMENT",POINT_PLACEMENT)
|
2010-01-11 19:59:14 +01:00
|
|
|
.value("VERTEX_PLACEMENT",VERTEX_PLACEMENT)
|
2009-08-18 00:54:50 +02:00
|
|
|
;
|
|
|
|
enumeration_<vertical_alignment_e>("vertical_alignment")
|
|
|
|
.value("TOP",TOP)
|
|
|
|
.value("MIDDLE",MIDDLE)
|
|
|
|
.value("BOTTOM",BOTTOM)
|
|
|
|
;
|
2010-01-11 19:59:14 +01:00
|
|
|
|
|
|
|
enumeration_<horizontal_alignment_e>("horizontal_alignment")
|
|
|
|
.value("LEFT",H_LEFT)
|
|
|
|
.value("MIDDLE",H_MIDDLE)
|
|
|
|
.value("RIGHT",H_RIGHT)
|
|
|
|
;
|
|
|
|
|
|
|
|
enumeration_<justify_alignment_e>("justify_alignment")
|
|
|
|
.value("LEFT",J_LEFT)
|
|
|
|
.value("MIDDLE",J_MIDDLE)
|
|
|
|
.value("RIGHT",J_RIGHT)
|
|
|
|
;
|
|
|
|
|
2009-08-18 00:54:50 +02:00
|
|
|
enumeration_<text_convert_e>("text_convert")
|
|
|
|
.value("NONE",NONE)
|
|
|
|
.value("TOUPPER",TOUPPER)
|
|
|
|
.value("TOLOWER",TOLOWER)
|
|
|
|
;
|
|
|
|
|
2009-12-16 21:02:06 +01:00
|
|
|
class_<text_symbolizer>("TextSymbolizer",init<expression_ptr,std::string const&, unsigned,color const&>())
|
|
|
|
//.def_pickle(text_symbolizer_pickle_suite())
|
2009-08-18 00:54:50 +02:00
|
|
|
.def("anchor",&text_symbolizer::set_anchor)
|
|
|
|
.def("displacement",&text_symbolizer::set_displacement)
|
|
|
|
.def("get_anchor",get_anchor_list)
|
|
|
|
.def("get_displacement",get_displacement_list)
|
|
|
|
.add_property("allow_overlap",
|
|
|
|
&text_symbolizer::get_allow_overlap,
|
|
|
|
&text_symbolizer::set_allow_overlap,
|
|
|
|
"Set/get the allow_overlap property of the label")
|
|
|
|
.add_property("avoid_edges",
|
|
|
|
&text_symbolizer::get_avoid_edges,
|
|
|
|
&text_symbolizer::set_avoid_edges,
|
|
|
|
"Set/get the avoid_edge property of the label")
|
|
|
|
.add_property("character_spacing",
|
|
|
|
&text_symbolizer::get_character_spacing,
|
|
|
|
&text_symbolizer::set_character_spacing,
|
|
|
|
"Set/get the character_spacing property of the label")
|
|
|
|
.add_property("face_name",
|
|
|
|
make_function(&text_symbolizer::get_face_name,return_value_policy<copy_const_reference>()),
|
|
|
|
&text_symbolizer::set_face_name,
|
|
|
|
"Set/get the face_name property of the label")
|
|
|
|
.add_property("fill",
|
|
|
|
make_function(&text_symbolizer::get_fill,return_value_policy<copy_const_reference>()),
|
|
|
|
&text_symbolizer::set_fill)
|
|
|
|
.add_property("fontset",
|
|
|
|
make_function(&text_symbolizer::get_fontset,return_value_policy<copy_const_reference>()),
|
|
|
|
&text_symbolizer::set_fontset)
|
|
|
|
.add_property("force_odd_labels",
|
|
|
|
&text_symbolizer::get_force_odd_labels,
|
|
|
|
&text_symbolizer::set_force_odd_labels)
|
|
|
|
.add_property("halo_fill",
|
|
|
|
make_function(&text_symbolizer::get_halo_fill,return_value_policy<copy_const_reference>()),
|
|
|
|
&text_symbolizer::set_halo_fill)
|
|
|
|
.add_property("halo_radius",
|
|
|
|
&text_symbolizer::get_halo_radius,
|
|
|
|
&text_symbolizer::set_halo_radius)
|
2010-01-11 19:59:14 +01:00
|
|
|
.add_property("horizontal_alignment",
|
|
|
|
&text_symbolizer::get_horizontal_alignment,
|
|
|
|
&text_symbolizer::set_horizontal_alignment,
|
|
|
|
"Set/get the horizontal alignment of the label")
|
|
|
|
.add_property("justify_alignment",
|
|
|
|
&text_symbolizer::get_justify_alignment,
|
|
|
|
&text_symbolizer::set_justify_alignment,
|
|
|
|
"Set/get the text justification")
|
2009-08-18 00:54:50 +02:00
|
|
|
.add_property("label_placement",
|
|
|
|
&text_symbolizer::get_label_placement,
|
|
|
|
&text_symbolizer::set_label_placement,
|
|
|
|
"Set/get the placement of the label")
|
|
|
|
.add_property("label_position_tolerance",
|
|
|
|
&text_symbolizer::get_label_position_tolerance,
|
|
|
|
&text_symbolizer::set_label_position_tolerance)
|
|
|
|
.add_property("label_spacing",
|
|
|
|
&text_symbolizer::get_label_spacing,
|
|
|
|
&text_symbolizer::set_label_spacing)
|
|
|
|
.add_property("line_spacing",
|
|
|
|
&text_symbolizer::get_line_spacing,
|
|
|
|
&text_symbolizer::set_line_spacing)
|
|
|
|
.add_property("max_char_angle_delta",
|
|
|
|
&text_symbolizer::get_max_char_angle_delta,
|
|
|
|
&text_symbolizer::set_max_char_angle_delta)
|
|
|
|
.add_property("minimum_distance",
|
|
|
|
&text_symbolizer::get_minimum_distance,
|
|
|
|
&text_symbolizer::set_minimum_distance)
|
2009-12-16 21:02:06 +01:00
|
|
|
//.add_property("name",
|
|
|
|
// make_function(&text_symbolizer::get_name,return_value_policy<copy_const_reference>()),
|
|
|
|
// &text_symbolizer::set_name)
|
2010-01-11 19:59:14 +01:00
|
|
|
.add_property("opacity",
|
|
|
|
&text_symbolizer::get_opacity,
|
|
|
|
&text_symbolizer::set_opacity,
|
|
|
|
"Set/get the text opacity")
|
2009-08-18 00:54:50 +02:00
|
|
|
.add_property("text_convert",
|
|
|
|
&text_symbolizer::get_text_convert,
|
|
|
|
&text_symbolizer::set_text_convert,
|
|
|
|
"Set/get the text conversion method")
|
|
|
|
.add_property("text_ratio",
|
|
|
|
&text_symbolizer::get_text_ratio,
|
|
|
|
&text_symbolizer::set_text_ratio)
|
|
|
|
.add_property("text_size",
|
|
|
|
&text_symbolizer::get_text_size,
|
|
|
|
&text_symbolizer::set_text_size)
|
|
|
|
.add_property("vertical_alignment",
|
|
|
|
&text_symbolizer::get_vertical_alignment,
|
|
|
|
&text_symbolizer::set_vertical_alignment,
|
|
|
|
"Set/get the vertical alignment of the label")
|
|
|
|
.add_property("wrap_width",
|
|
|
|
&text_symbolizer::get_wrap_width,
|
|
|
|
&text_symbolizer::set_wrap_width)
|
|
|
|
.add_property("wrap_character",
|
2009-09-25 22:29:03 +02:00
|
|
|
&text_symbolizer::get_wrap_char_string,
|
2009-08-18 00:54:50 +02:00
|
|
|
&text_symbolizer::set_wrap_char_from_string)
|
2010-01-11 19:59:14 +01:00
|
|
|
.add_property("wrap_before",
|
|
|
|
&text_symbolizer::get_wrap_before,
|
|
|
|
&text_symbolizer::set_wrap_before)
|
2009-08-18 00:54:50 +02:00
|
|
|
;
|
2006-02-25 12:03:30 +01:00
|
|
|
}
|