lilypond-1.5.10
[lilypond.git] / lily / note-column.cc
blob6cf77b6d5ec6a210f1e0ac0f1d625802cf8497d3
1 /*
2 note-column.cc -- implement Note_column
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8 #include <math.h> // ceil
10 #include "axis-group-interface.hh"
11 #include "note-column.hh"
12 #include "stem.hh"
13 #include "debug.hh"
14 #include "paper-def.hh"
15 #include "group-interface.hh"
16 #include "staff-symbol-referencer.hh"
17 #include "rest.hh"
18 #include "note-head.hh"
20 bool
21 Note_column::rest_b (Grob*me)
23 return unsmob_grob (me->get_grob_property ("rest"));
26 int
27 Note_column::shift_compare (Grob *const &p1, Grob *const&p2)
29 SCM s1 = p1->get_grob_property ("horizontal-shift");
30 SCM s2 = p2->get_grob_property ("horizontal-shift");
32 int h1 = (gh_number_p (s1))? gh_scm2int (s1) :0;
33 int h2 = (gh_number_p (s2)) ? gh_scm2int (s2):0;
34 return h1 - h2;
37 void
38 Note_column::set_interface (Grob* me)
40 me->set_grob_property ("note-heads", SCM_EOL);
41 me->set_interface (ly_symbol2scm ("note-column-interface"));
43 Axis_group_interface::set_interface (me);
44 Axis_group_interface::set_axes (me, X_AXIS, Y_AXIS);
47 Item *
48 Note_column::stem_l (Grob*me)
50 SCM s = me->get_grob_property ("stem");
51 return dynamic_cast<Item*> (unsmob_grob (s));
54 Slice
55 Note_column::head_positions_interval (Grob *me)
57 Slice iv;
59 iv.set_empty ();
61 SCM h = me->get_grob_property ("note-heads");
62 for (; gh_pair_p (h); h = gh_cdr (h))
64 Grob *se = unsmob_grob (gh_car (h));
66 int j = int (Staff_symbol_referencer::position_f (se));
67 iv.unite (Slice (j,j));
69 return iv;
72 Direction
73 Note_column::dir (Grob* me)
75 Grob *stem = unsmob_grob (me->get_grob_property ("stem"));
76 if (stem && Stem::has_interface (stem))
77 return Stem::get_direction (stem);
78 else if (gh_pair_p (me->get_grob_property ("note-heads")))
79 return (Direction)sign (head_positions_interval (me).center ());
81 programming_error ("Note column without heads and stem!");
82 return CENTER;
86 void
87 Note_column::set_stem (Grob*me,Grob * stem_l)
89 me->set_grob_property ("stem", stem_l->self_scm ());
90 me->add_dependency (stem_l);
91 Axis_group_interface::add_element (me, stem_l);
94 void
95 Note_column::add_head (Grob*me,Grob *h)
97 if (Rest::has_interface (h))
99 me->set_grob_property ("rest", h->self_scm ());
101 else if (Note_head::has_interface (h))
103 Pointer_group_interface::add_element (me, "note-heads",h);
105 Axis_group_interface::add_element (me, h);
109 translate the rest symbols vertically by amount DY_I.
111 void
112 Note_column::translate_rests (Grob*me,int dy_i)
114 Grob * r = unsmob_grob (me->get_grob_property ("rest"));
115 if (r)
117 r->translate_axis (dy_i * Staff_symbol_referencer::staff_space (r)/2.0, Y_AXIS);
122 void
123 Note_column::set_dotcol (Grob*me,Grob *d)
125 Axis_group_interface::add_element (me, d);
131 Grob*
132 Note_column::first_head (Grob*me)
134 Grob * st = stem_l (me);
135 return st? Stem::first_head (st): 0;
138 bool
139 Note_column::has_interface (Grob*me)
141 return me && me->has_interface (ly_symbol2scm ("note-column-interface"));