2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 2000--2010 Jan Nieuwenhuizen <janneke@gnu.org>
6 Han-Wen Nienhuys <hanwen@xs4all.nl>
8 LilyPond is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 LilyPond is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
22 #include "engraver.hh"
23 #include "multi-measure-rest.hh"
24 #include "note-head.hh"
25 #include "side-position-interface.hh"
27 #include "stream-event.hh"
28 #include "text-interface.hh"
31 #include "translator.icc"
33 class Part_combine_engraver
: public Engraver
35 TRANSLATOR_DECLARATIONS (Part_combine_engraver
);
38 DECLARE_ACKNOWLEDGER (note_head
);
39 DECLARE_ACKNOWLEDGER (stem
);
41 DECLARE_TRANSLATOR_LISTENER (part_combine
);
42 void process_music ();
43 void stop_translation_timestep ();
49 IMPLEMENT_TRANSLATOR_LISTENER (Part_combine_engraver
, part_combine
);
51 Part_combine_engraver::listen_part_combine (Stream_event
*ev
)
53 ASSIGN_EVENT_ONCE (event_
, ev
);
56 Part_combine_engraver::Part_combine_engraver ()
63 Part_combine_engraver::process_music ()
66 && to_boolean (get_property ("printPartCombineTexts")))
68 SCM what
= event_
->get_property ("class");
70 if (what
== ly_symbol2scm ("solo-one-event"))
71 text
= get_property ("soloText");
72 else if (what
== ly_symbol2scm ("solo-two-event"))
73 text
= get_property ("soloIIText");
74 else if (what
== ly_symbol2scm ("unisono-event"))
75 text
= get_property ("aDueText");
77 if (Text_interface::is_markup (text
))
79 text_
= make_item ("CombineTextScript", event_
->self_scm ());
80 text_
->set_property ("text", text
);
86 Part_combine_engraver::acknowledge_note_head (Grob_info i
)
91 Side_position_interface::add_support (t
, i
.grob ());
92 if (Side_position_interface::get_axis (t
) == X_AXIS
93 && !t
->get_parent (Y_AXIS
))
94 t
->set_parent (i
.grob (), Y_AXIS
);
99 Part_combine_engraver::acknowledge_stem (Grob_info i
)
102 Side_position_interface::add_support (text_
, i
.grob ());
106 Part_combine_engraver::stop_translation_timestep ()
112 ADD_ACKNOWLEDGER (Part_combine_engraver
, note_head
);
113 ADD_ACKNOWLEDGER (Part_combine_engraver
, stem
);
114 ADD_TRANSLATOR (Part_combine_engraver
,
116 "Part combine engraver for orchestral scores: Print markings"
117 " @q{a2}, @q{Solo}, @q{Solo II}, and @q{unisono}.",
120 "CombineTextScript ",
123 "printPartCombineTexts "