lilypond-0.1.30
[lilypond.git] / lily / staff-side.cc
blob4099f2eecec1d5d928d2f20da55b1ecc1488721e
1 /*
2 staff-side.cc -- implement Staff_side
4 source file of the GNU LilyPond music typesetter
6 (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
9 #include "interval.hh"
10 #include "paper-def.hh"
11 #include "dimen.hh"
12 #include "staff-side.hh"
13 #include "staff-sym.hh"
14 #include "debug.hh"
17 Staff_side::Staff_side()
19 y_=0;
20 sym_int_ = Interval (0,0);
21 dir_ = CENTER;
22 inside_staff_b_ = false;
26 Interval
27 Staff_side::support_height() const
29 Interval y_int;
30 for (int i=0; i < support_l_arr_.size(); i++)
32 Axis_group_element *common =
33 common_group (support_l_arr_[i], Y_AXIS);
35 Real y = support_l_arr_[i]->relative_coordinate (common, Y_AXIS)
36 -relative_coordinate (common,Y_AXIS);
38 y_int.unite (y + support_l_arr_[i]->height());
42 if (y_int.empty_b())
44 y_int = Interval (0,0);
46 return y_int;
49 void
50 Staff_side::add_support (Score_elem*i)
52 support_l_arr_.push (i);
53 add_dependency (i);
56 Real
57 Staff_side::get_position_f() const
59 if (!dir_)
61 warning (_("Staff_side::get_position_i(): "
62 "somebody forgot to set my vertical direction, returning -20"));
63 return -20;
67 Real y=0;
68 Real inter_f = paper()-> internote_f ();
70 Interval v= support_height();
71 y = v[dir_] + 2*dir_*inter_f; // ugh
73 return y;
76 Interval
77 Staff_side::symbol_height() const
79 return Interval (0,0);
82 void
83 Staff_side::do_post_processing()
85 sym_int_ = symbol_height();
86 y_ = get_position_f();
87 if (dir_)
88 y_ += - sym_int_[-dir_];
91 void
92 Staff_side::do_substitute_dependency (Score_elem*o, Score_elem*n)
94 support_l_arr_.unordered_substitute (o,n);
98 IMPLEMENT_IS_TYPE_B1(Staff_side, Score_elem);