2 vertical-align-engraver.cc -- implement Vertical_align_engraver
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
10 #include "paper-column.hh"
11 #include "align-interface.hh"
12 #include "span-bar.hh"
13 #include "axis-group-interface.hh"
14 #include "engraver.hh"
16 #include "pointer-group-interface.hh"
17 #include "grob-array.hh"
19 #include "translator.icc"
21 class Vertical_align_engraver : public Engraver
24 bool qualifies (Grob_info) const;
25 SCM id_to_group_hashtab_;
28 TRANSLATOR_DECLARATIONS (Vertical_align_engraver);
29 DECLARE_ACKNOWLEDGER(axis_group);
32 virtual void derived_mark () const;
33 PRECOMPUTED_VIRTUAL void process_music ();
34 virtual void finalize ();
35 virtual void initialize ();
38 ADD_ACKNOWLEDGER(Vertical_align_engraver, axis_group);
39 ADD_TRANSLATOR (Vertical_align_engraver,
40 "Catch groups (staffs, lyrics lines, etc.) and stack "
42 /* creats*/ "VerticalAlignment",
49 Vertical_align_engraver::Vertical_align_engraver ()
52 id_to_group_hashtab_ = SCM_EOL;
56 Vertical_align_engraver::derived_mark () const
58 scm_gc_mark (id_to_group_hashtab_);
62 Vertical_align_engraver::initialize ()
64 id_to_group_hashtab_ = scm_c_make_hash_table (11);
69 Vertical_align_engraver::process_music ()
73 valign_ = make_spanner ("VerticalAlignment", SCM_EOL);
74 valign_->set_bound (LEFT, unsmob_grob (get_property ("currentCommandColumn")));
79 Vertical_align_engraver::finalize ()
83 valign_->set_bound (RIGHT, unsmob_grob (get_property ("currentCommandColumn")));
89 Vertical_align_engraver::qualifies (Grob_info i) const
91 int sz = i.origin_contexts ((Translator *)this).size ();
93 return sz > 0 && Axis_group_interface::has_interface (i.grob ())
94 && !i.grob ()->get_parent (Y_AXIS) && Axis_group_interface::has_axis (i.grob (), Y_AXIS);
98 Vertical_align_engraver::acknowledge_axis_group (Grob_info i)
102 String id = i.context ()->id_string ();
104 scm_hash_set_x (id_to_group_hashtab_, scm_makfrom0str (id.to_str0 ()),
105 i.grob ()->self_scm ());
108 SCM before_id = i.context ()->get_property ("alignAboveContext");
109 SCM after_id = i.context ()->get_property ("alignBelowContext");
111 SCM before = scm_hash_ref (id_to_group_hashtab_, before_id, SCM_BOOL_F);
112 SCM after = scm_hash_ref (id_to_group_hashtab_, after_id, SCM_BOOL_F);
114 Grob * before_grob = unsmob_grob (before);
115 Grob * after_grob = unsmob_grob (after);
117 Align_interface::add_element (valign_, i.grob (),
118 get_property ("verticalAlignmentChildCallback"));
120 if (before_grob || after_grob)
122 Grob_array * ga = unsmob_grob_array (valign_->get_object ("elements"));
123 Link_array<Grob> &arr = ga->array_reference ();
125 Grob *added = arr.pop();
126 for (int i = 0 ; i < arr.size (); i++)
128 if (arr[i] == before_grob)
130 arr.insert (added, i);
133 else if (arr[i] == after_grob)
135 arr.insert (added, i + 1);