]> git.donarmstrong.com Git - lilypond.git/blob - lily/g-staff-side.cc
release: 1.1.19
[lilypond.git] / lily / g-staff-side.cc
1 /*   
2   g-staff-side.cc --  implement G_staff_side_item
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #include "g-staff-side.hh"
11
12 void
13 G_staff_side_item::do_pre_processing ()
14 {
15   if (!dir_)
16     set_default_direction ();
17 }
18
19 void
20 G_staff_side_item::set_default_direction ()
21 {
22   dir_ = DOWN;
23 }
24
25 G_staff_side_item::G_staff_side_item ()
26 {
27   dir_ = CENTER;
28   to_position_l_ = 0;
29   transparent_b_ = true;
30 }
31
32 void
33 G_staff_side_item::set_victim (Score_element *e)
34 {
35   add_dependency (e);
36   to_position_l_ = e;
37   to_position_l_->dim_cache_[Y_AXIS].parent_l_ = &dim_cache_[Y_AXIS];
38 }
39
40 void
41 G_staff_side_item::add_support (Score_element*e)
42 {
43   add_dependency (e);
44   support_l_arr_.push (e);
45 }
46
47
48 void
49 G_staff_side_item::do_substitute_dependency (Score_element*o, Score_element*n)
50 {
51   if (o == to_position_l_)
52     to_position_l_ = n;
53   else
54     support_l_arr_.unordered_substitute (o,n);
55 }
56
57
58 void
59 G_staff_side_item::do_post_processing ()
60 {
61   if (!support_l_arr_.size ())
62     return ;
63   
64   Dimension_cache *common = common_group (typecast_array (support_l_arr_, (Graphical_element*)0),
65                                           Y_AXIS);
66
67   Interval dim;
68   for (int i=0; i < support_l_arr_.size (); i++)
69     {
70       Score_element * e = support_l_arr_ [i];
71       Real coord = e->relative_coordinate (common, Y_AXIS);
72       dim.unite (coord + e->extent (Y_AXIS));
73     }
74   if (!support_l_arr_.size ())
75     dim = Interval (0,0);
76
77   Interval sym_dim = to_position_l_->extent (Y_AXIS);
78   Real off = dim_cache_[Y_AXIS].relative_coordinate (common);
79   
80   dim_cache_[Y_AXIS].set_offset (dim[dir_] - sym_dim[-dir_] - off);
81 }