2 axis-group-engraver.cc -- implement Axis_group_engraver
4 source file of the GNU LilyPond music typesetter
6 (c) 1999--2009 Han-Wen Nienhuys <hanwen@xs4all.nl>
9 #include "axis-group-engraver.hh"
11 #include "axis-group-interface.hh"
12 #include "pointer-group-interface.hh"
14 #include "international.hh"
18 #include "translator.icc"
20 Axis_group_engraver::Axis_group_engraver ()
27 Axis_group_engraver::process_music ()
31 staffline_
= get_spanner ();
32 Grob
*it
= unsmob_grob (get_property ("currentCommandColumn"));
33 staffline_
->set_bound (LEFT
, it
);
38 Axis_group_engraver::get_spanner ()
40 return make_spanner ("VerticalAxisGroup", SCM_EOL
);
44 Axis_group_engraver::finalize ()
48 Grob
*it
= unsmob_grob (get_property ("currentCommandColumn"));
49 staffline_
->set_bound (RIGHT
, it
);
51 Pointer_group_interface::set_ordered (staffline_
, ly_symbol2scm ("elements"), false);
56 Axis_group_engraver::acknowledge_grob (Grob_info i
)
58 elts_
.push_back (i
.grob ());
62 maybe should check if our parent is set, because we now get a
63 cyclic parent relationship if we have two Axis_group_engravers in
66 Axis_group_engraver::process_acknowledged ()
71 for (vsize i
= 0; i
< elts_
.size (); i
++)
73 if (!unsmob_grob (elts_
[i
]->get_object ("axis-group-parent-Y")))
75 if (staffline_
->get_parent (Y_AXIS
)
76 && staffline_
->get_parent (Y_AXIS
) == elts_
[i
])
78 staffline_
->warning (_ ("Axis_group_engraver: vertical group already has a parent"));
79 staffline_
->warning (_ ("are there two Axis_group_engravers?"));
80 staffline_
->warning (_ ("removing this vertical group"));
81 staffline_
->suicide ();
85 add_element (elts_
[i
]);
92 Axis_group_engraver::add_element (Grob
*e
)
94 Axis_group_interface::add_element (staffline_
, e
);
97 ADD_ACKNOWLEDGER (Axis_group_engraver
, grob
);
99 ADD_TRANSLATOR (Axis_group_engraver
,
101 "Group all objects created in this context in a"
102 " @code{VerticalAxisGroup} spanner.",
105 "VerticalAxisGroup ",
108 "currentCommandColumn ",