2 mark-engraver.cc -- implement Metronome_mark_engraver
4 source file of the GNU LilyPond music typesetter
6 (c) 1998--2007 Jan Nieuwenhuizen <janneke@gnu.org>
12 #include "engraver.hh"
15 #include "duration.hh"
16 #include "grob-array.hh"
18 #include "stream-event.hh"
19 #include "text-interface.hh"
21 #include "translator.icc"
24 put stuff over or next to bars. Examples: bar numbers, marginal notes,
27 class Metronome_mark_engraver : public Engraver
30 TRANSLATOR_DECLARATIONS (Metronome_mark_engraver);
40 virtual void derived_mark () const;
41 void stop_translation_timestep ();
42 void process_music ();
45 Metronome_mark_engraver::Metronome_mark_engraver ()
48 last_duration_ = SCM_EOL;
49 last_count_ = SCM_EOL;
54 Metronome_mark_engraver::derived_mark () const
56 scm_gc_mark (last_count_);
57 scm_gc_mark (last_duration_);
58 scm_gc_mark (last_text_);
62 Metronome_mark_engraver::stop_translation_timestep ()
66 Grob *mc = unsmob_grob (get_property ("currentMusicalColumn"));
67 text_->set_parent (mc, X_AXIS);
68 text_->set_object ("side-support-elements",
69 grob_list_to_grob_array (get_property ("stavesFound")));
75 Metronome_mark_engraver::process_music ()
77 SCM count = get_property ("tempoUnitCount");
78 SCM duration = get_property ("tempoUnitDuration");
79 SCM text = get_property ("tempoText");
81 if ( ( (unsmob_duration (duration) && scm_is_number (count))
82 || Text_interface::is_markup (text) )
83 && !(ly_is_equal (count, last_count_)
84 && ly_is_equal (duration, last_duration_)
85 && ly_is_equal (text, last_text_)))
87 text_ = make_item ("MetronomeMark", SCM_EOL);
89 SCM proc = get_property ("metronomeMarkFormatter");
90 SCM result = scm_call_4 (proc,
94 context ()->self_scm ());
96 text_->set_property ("text", result);
99 last_duration_ = duration;
104 ADD_TRANSLATOR (Metronome_mark_engraver,
106 "Engrave metronome marking. This delegates the formatting"
107 " work to the function in the @code{metronomeMarkFormatter}"
108 " property. The mark is put over all staves. The staves are"
109 " taken from the @code{stavesFound} property, which is"
110 " maintained by @ref{Staff_collecting_engraver}.",
117 "metronomeMarkFormatter "