]> git.donarmstrong.com Git - lilypond.git/blob - lily/dots.cc
release: 1.3.16
[lilypond.git] / lily / dots.cc
1 /*
2   dots.cc -- implement Dots
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "dots.hh"
10 #include "molecule.hh"
11 #include "paper-def.hh"
12 #include "lookup.hh"
13 #include "staff-symbol-referencer.hh"
14 #include "directional-element-interface.hh"
15
16 Dots::Dots ()
17 {
18   dots_i_ =0;
19 }
20
21 void
22 Dots::do_post_processing ()
23 {
24   if (!dots_i_)
25     {
26       set_elt_property ("transparent", SCM_BOOL_T);
27       set_empty (X_AXIS);
28       set_empty (Y_AXIS);
29     }
30   else
31     {
32       if (!directional_element (this).get ())
33         directional_element (this).set (UP);
34
35       Staff_symbol_referencer_interface si (this);
36       int p = int (si.position_f ());
37       if (!(p % 2))
38         si.set_position (p  + directional_element (this).get ());
39     }
40 }
41 Molecule* 
42 Dots::do_brew_molecule_p () const
43 {
44   Molecule *out = new Molecule;
45   Molecule fill = lookup_l ()->fill (Box (Interval (0,0),
46                                           Interval (0,0)));
47   out->add_molecule (fill);
48
49   Molecule d = lookup_l ()->afm_find (String ("dots-dot"));
50
51   Real dw = d.dim_[X_AXIS].length ();
52   d.translate_axis (-dw, X_AXIS);
53   for (int i=dots_i_; i--; )
54     {
55       d.translate_axis (2*dw,X_AXIS);
56       out->add_molecule (d);
57     }
58
59   return out;
60 }
61
62
63