2005-06-14 17:06:59 +02:00
|
|
|
/* This file is part of Mapnik (c++ mapping toolkit)
|
2006-02-07 15:41:41 +01:00
|
|
|
* Copyright (C) 2006 Artem Pavlenko
|
2005-06-14 17:06:59 +02:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2006-02-07 15:41:41 +01:00
|
|
|
//$Id$
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2006-02-07 15:41:41 +01:00
|
|
|
#ifndef AGG_RENDERER_HPP
|
|
|
|
#define AGG_RENDERER_HPP
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2006-02-07 15:41:41 +01:00
|
|
|
#include "feature_style_processor.hpp"
|
2006-02-08 11:44:46 +01:00
|
|
|
#include <boost/utility.hpp>
|
2006-02-21 20:55:24 +01:00
|
|
|
#include "font_engine_freetype.hpp"
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2006-02-07 15:41:41 +01:00
|
|
|
namespace mapnik
|
|
|
|
{
|
2006-02-10 18:13:02 +01:00
|
|
|
template <typename T>
|
|
|
|
struct agg_renderer : public feature_style_processor<agg_renderer<T> >,
|
2006-02-08 11:44:46 +01:00
|
|
|
private boost::noncopyable
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2006-02-10 18:13:02 +01:00
|
|
|
agg_renderer(Map const& m, T & pixmap);
|
2006-02-21 20:55:24 +01:00
|
|
|
void start_map_processing();
|
|
|
|
void end_map_processing();
|
2006-02-21 21:17:08 +01:00
|
|
|
void start_layer_processing(Layer const& lay);
|
|
|
|
void end_layer_processing(Layer const& lay);
|
2006-02-07 15:41:41 +01:00
|
|
|
void process(point_symbolizer const& sym,Feature const& feature);
|
|
|
|
void process(line_symbolizer const& sym,Feature const& feature);
|
|
|
|
void process(line_pattern_symbolizer const& sym,Feature const& feature);
|
|
|
|
void process(polygon_symbolizer const& sym,Feature const& feature);
|
|
|
|
void process(polygon_pattern_symbolizer const& sym,Feature const& feature);
|
2006-02-07 17:16:54 +01:00
|
|
|
void process(raster_symbolizer const& sym,Feature const& feature);
|
2006-02-10 18:13:02 +01:00
|
|
|
void process(text_symbolizer const& sym,Feature const& feature);
|
2006-01-23 14:24:41 +01:00
|
|
|
private:
|
2006-02-10 18:13:02 +01:00
|
|
|
T & pixmap_;
|
2006-02-07 15:41:41 +01:00
|
|
|
CoordTransform t_;
|
2006-02-21 20:55:24 +01:00
|
|
|
face_manager<freetype_engine> font_manager_;
|
2005-06-14 17:06:59 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2006-02-07 15:41:41 +01:00
|
|
|
#endif //AGG_RENDERER_HPP
|