1 /* === S Y N F I G ========================================================= */
2 /*! \file renderer_grid.cpp
3 ** \brief Template File
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
10 ** This package is free software; you can redistribute it and/or
11 ** modify it under the terms of the GNU General Public License as
12 ** published by the Free Software Foundation; either version 2 of
13 ** the License, or (at your option) any later version.
15 ** This package is distributed in the hope that it will be useful,
16 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 ** General Public License for more details.
21 /* ========================================================================= */
23 /* === H E A D E R S ======================================================= */
32 #include "renderer_grid.h"
38 /* === U S I N G =========================================================== */
42 using namespace synfig;
43 using namespace studio;
45 /* === M A C R O S ========================================================= */
47 /* === G L O B A L S ======================================================= */
49 /* === P R O C E D U R E S ================================================= */
51 /* === M E T H O D S ======================================================= */
53 Renderer_Grid::~Renderer_Grid()
58 Renderer_Grid::get_enabled_vfunc()const
60 return get_work_area()->grid_status();
64 Renderer_Grid::get_grid_size()const
66 return get_work_area()->get_grid_size();
70 Renderer_Grid::render_vfunc(
71 const Glib::RefPtr<Gdk::Drawable>& drawable,
72 const Gdk::Rectangle& /*expose_area*/
75 assert(get_work_area());
79 // const synfig::RendDesc &rend_desc(get_work_area()->get_canvas()->rend_desc());
81 const synfig::Vector focus_point(get_work_area()->get_focus_point());
83 // std::vector< std::pair<Glib::RefPtr<Gdk::Pixbuf>,int> >& tile_book(get_tile_book());
85 int drawable_w,drawable_h;
86 drawable->get_size(drawable_w,drawable_h);
88 // Calculate the window coordinates of the top-left
89 // corner of the canvas.
90 // const synfig::Vector::value_type
91 // x(focus_point[0]/get_pw()+drawable_w/2-get_w()/2),
92 // y(focus_point[1]/get_ph()+drawable_h/2-get_h()/2);
94 /*const synfig::Vector::value_type window_startx(window_tl[0]);
95 const synfig::Vector::value_type window_endx(window_br[0]);
96 const synfig::Vector::value_type window_starty(window_tl[1]);
97 const synfig::Vector::value_type window_endy(window_br[1]);
100 // tile_w(get_work_area()->get_tile_w()),
101 // tile_h(get_work_area()->get_tile_h());
107 Glib::RefPtr<Gdk::GC> gc(Gdk::GC::create(drawable));
109 const synfig::Vector grid_size(get_grid_size());
111 const synfig::Vector::value_type window_startx(get_work_area()->get_window_tl()[0]);
112 const synfig::Vector::value_type window_endx(get_work_area()->get_window_br()[0]);
113 const synfig::Vector::value_type window_starty(get_work_area()->get_window_tl()[1]);
114 const synfig::Vector::value_type window_endy(get_work_area()->get_window_br()[1]);
115 const float pw(get_pw()),ph(get_ph());
118 if(grid_size[0]>pw*3.5 && grid_size[1]>ph*3.5)
120 synfig::Vector::value_type x,y;
122 x=floor(window_startx/grid_size[0])*grid_size[0];
123 y=floor(window_starty/grid_size[1])*grid_size[1];
125 gc->set_function(Gdk::COPY);
126 gc->set_rgb_fg_color(Gdk::Color("#9f9f9f"));
127 gc->set_line_attributes(1,Gdk::LINE_ON_OFF_DASH,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
130 for(;x<window_endx;x+=grid_size[0])
132 drawable->draw_line(gc,
133 round_to_int((x-window_startx)/pw),
135 round_to_int((x-window_startx)/pw),
140 for(;x>window_endx;x-=grid_size[0])
142 drawable->draw_line(gc,
143 round_to_int((x-window_startx)/pw),
145 round_to_int((x-window_startx)/pw),
151 for(;y<window_endy;y+=grid_size[1])
153 drawable->draw_line(gc,
155 round_to_int((y-window_starty)/ph),
157 round_to_int((y-window_starty)/ph)
161 for(;y>window_endy;y-=grid_size[1])
163 drawable->draw_line(gc,
165 round_to_int((y-window_starty)/ph),
167 round_to_int((y-window_starty)/ph)