63 lines
2.4 KiB
C++
63 lines
2.4 KiB
C++
/* This file is part of python_mapnik (c++/python mapping toolkit)
|
|
* Copyright (C) 2005 Artem Pavlenko
|
|
*
|
|
* Mapnik is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or any later version.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
//$Id$
|
|
|
|
#include <mapnik.hpp>
|
|
#include <boost/python.hpp>
|
|
#include <boost/python/suite/indexing/vector_indexing_suite.hpp>
|
|
|
|
using mapnik::rule_type;
|
|
using mapnik::filter;
|
|
using mapnik::filter_ptr;
|
|
using mapnik::Feature;
|
|
using mapnik::symbolizers;
|
|
|
|
void export_rule()
|
|
{
|
|
using namespace boost::python;
|
|
|
|
class_<symbolizers>("symbolizers",init<>("symbolizers TODO"))
|
|
.def(vector_indexing_suite<symbolizers>())
|
|
;
|
|
|
|
class_<rule_type>("rule",init<>("default rule constructor"))
|
|
//name,title
|
|
.def(init<std::string,std::string>())
|
|
//name,title,min_scale_denominator,max_scale_denominator
|
|
.def(init<std::string,std::string,double,double>())
|
|
.def("name",&rule_type::get_name,return_value_policy<copy_const_reference>())
|
|
.def("name",&rule_type::set_name)
|
|
.def("title",&rule_type::get_title,return_value_policy<copy_const_reference>())
|
|
.def("title",&rule_type::set_title)
|
|
.def("abstract",&rule_type::get_abstract,return_value_policy<copy_const_reference>())
|
|
.def("abstract",&rule_type::set_abstract)
|
|
.def("filter",&rule_type::get_filter,return_value_policy<copy_const_reference>())
|
|
.def("filter",&rule_type::set_filter)
|
|
.add_property("min_scale",&rule_type::get_min_scale,&rule_type::set_min_scale)
|
|
.add_property("max_scale",&rule_type::get_max_scale,&rule_type::set_max_scale)
|
|
.def("set_else",&rule_type::set_else)
|
|
.def("has_else",&rule_type::has_else_filter)
|
|
.def("active",&rule_type::active)
|
|
.def("append",&rule_type::append)
|
|
.def("remove",&rule_type::remove_at)
|
|
.def("__iter__",boost::python::range(&rule_type::begin,&rule_type::end))
|
|
.def("symbols",&rule_type::get_symbolizers,return_value_policy<copy_const_reference>())
|
|
;
|
|
}
|
|
|