lilypond-1.3.69
[lilypond.git] / lily / bar-script-engraver.cc
blob521b23f7aa0223c3c9afd251f65576be89efc6c8
1 /*
2 bar-script-engraver.cc -- implement Bar_script_engraver
4 source file of the GNU LilyPond music typesetter
6 (c) 1999--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8 */
10 #include "bar-script-engraver.hh"
11 #include "bar.hh"
12 #include "clef-item.hh"
13 #include "side-position-interface.hh"
14 #include "text-item.hh"
15 #include "lily-guile.hh"
16 #include "paper-column.hh"
17 #include "paper-def.hh"
18 #include "dimension-cache.hh"
19 #include "staff-symbol-referencer.hh"
20 #include "side-position-interface.hh"
21 #include "staff-symbol.hh"
23 Bar_script_engraver::Bar_script_engraver ()
25 axis_ = Y_AXIS;
26 text_p_ =0;
29 void
30 Bar_script_engraver::do_creation_processing ()
32 String t = type_ + "VisibilityFunction";
33 SCM proc = get_property (t);
35 if (gh_procedure_p (proc))
36 visibility_lambda_ = proc;
41 Some interesting item came across. Lets attach the text and the
42 positioner to the item.
46 void
47 Bar_script_engraver::attach_script_to_item (Item *i)
49 Axis other_axis = Axis((axis_ + 1)%2);
50 if (text_p_ && !text_p_->parent_l(other_axis))
52 text_p_->set_parent (i,other_axis);
53 text_p_->set_parent (i,axis_);
55 if (!text_p_->parent_l(other_axis))
56 text_p_->set_parent (i,other_axis);
58 Side_position_interface (text_p_).add_support (i);
61 How do we make sure that text_p_ has a dependency from
62 someone else? We can't use I for that, so we use some other element.
64 // text_p_->set_elt_property ("dangling", SCM_BOOL_T)
65 get_staff_info ().command_pcol_l ()->add_dependency (text_p_);
70 URG.
72 Item*
73 Bar_script_engraver::cast_to_interesting_item (Score_element *e)
75 Item * i =0;
78 should do type lookup: if (e ->is_type (hang_on_type))
80 i = dynamic_cast<Bar*> (e);
82 return i;
85 void
86 Bar_script_engraver::acknowledge_element (Score_element_info inf)
88 if (inf.origin_trans_l_arr (this).size () == 1)
90 Item *i=cast_to_interesting_item (inf.elem_l_);
91 if (!i)
92 return;
94 /* Only put numbers on bars that are at our own level (don't put
95 numbers over the staffs of a GrandStaff, only over the GrandStaff
96 itself */
97 if (inf.origin_trans_l_arr (this).size () != 1)
98 return;
100 attach_script_to_item (i);
104 void
105 Bar_script_engraver::do_pre_move_processing ()
107 if (text_p_)
109 Staff_symbol * st = staff_symbol_referencer (text_p_).staff_symbol_l();
111 if (st)
112 side_position (text_p_).add_support (st);
114 typeset_element (text_p_);
115 text_p_ =0;
120 void
121 Bar_script_engraver::create_items (Request *rq)
123 if (text_p_)
124 return;
126 text_p_ = new Text_item;
127 text_p_->set_elt_property ("breakable", SCM_BOOL_T); // ugh
128 Side_position_interface staffside(text_p_);
129 staffside.set_axis (axis_);
131 SCM prop = get_property (type_ + "Direction");
132 if (!isdir_b (prop))
134 prop = gh_int2scm (UP);
136 text_p_->set_elt_property ("direction", prop);
138 SCM padding = get_property (type_ + "ScriptPadding");
139 if (gh_number_p(padding))
141 text_p_->set_elt_property ("padding", padding);
143 else
145 text_p_
146 ->set_elt_property ("padding",
147 gh_double2scm(paper_l ()->get_var ("interline")));
150 if (gh_procedure_p (visibility_lambda_))
151 text_p_->set_elt_property ("visibility-lambda",
152 visibility_lambda_);
154 announce_element (Score_element_info (text_p_, rq));