2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 2000--2010 Jan Nieuwenhuizen <janneke@gnu.org>
6 LilyPond is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 LilyPond is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
21 C&P from text-spanner.cc
23 - todo: ending should be detected automatically? a new note
24 automatically is the end of the trill?
27 #include "engraver.hh"
29 #include "international.hh"
30 #include "note-column.hh"
31 #include "pointer-group-interface.hh"
32 #include "side-position-interface.hh"
33 #include "stream-event.hh"
36 #include "translator.icc"
38 class Trill_spanner_engraver
: public Engraver
41 TRANSLATOR_DECLARATIONS (Trill_spanner_engraver
);
43 virtual void finalize ();
44 DECLARE_TRANSLATOR_LISTENER (trill_span
);
45 DECLARE_ACKNOWLEDGER (note_column
);
47 void stop_translation_timestep ();
48 void process_music ();
53 Stream_event
*current_event_
;
54 Drul_array
<Stream_event
*> event_drul_
;
58 Trill_spanner_engraver::Trill_spanner_engraver ()
63 event_drul_
.set (0, 0);
66 IMPLEMENT_TRANSLATOR_LISTENER (Trill_spanner_engraver
, trill_span
);
68 Trill_spanner_engraver::listen_trill_span (Stream_event
*ev
)
70 Direction d
= to_dir (ev
->get_property ("span-direction"));
71 ASSIGN_EVENT_ONCE (event_drul_
[d
], ev
);
75 Trill_spanner_engraver::acknowledge_note_column (Grob_info info
)
79 Pointer_group_interface::add_grob (span_
,
80 ly_symbol2scm ("note-columns"),
82 if (!span_
->get_bound (LEFT
))
83 add_bound_item (span_
, info
.grob ());
87 Pointer_group_interface::add_grob (finished_
, ly_symbol2scm ("note-columns"),
89 if (!finished_
->get_bound (RIGHT
))
90 add_bound_item (finished_
, info
.grob ());
95 Trill_spanner_engraver::process_music ()
98 && (event_drul_
[STOP
] || event_drul_
[START
]))
100 Stream_event
*ender
= event_drul_
[STOP
];
102 ender
= event_drul_
[START
];
104 announce_end_grob (finished_
, ender
->self_scm ());
109 if (event_drul_
[START
])
111 current_event_
= event_drul_
[START
];
112 span_
= make_spanner ("TrillSpanner", event_drul_
[START
]->self_scm ());
113 Side_position_interface::set_axis (span_
, Y_AXIS
);
118 Trill_spanner_engraver::typeset_all ()
122 if (!finished_
->get_bound (RIGHT
))
124 Grob
*e
= unsmob_grob (get_property ("currentMusicalColumn"));
125 finished_
->set_bound (RIGHT
, e
);
132 Trill_spanner_engraver::stop_translation_timestep ()
134 if (span_
&& !span_
->get_bound (LEFT
))
136 Grob
*e
= unsmob_grob (get_property ("currentMusicalColumn"));
137 span_
->set_bound (LEFT
, e
);
141 event_drul_
.set (0, 0);
145 Trill_spanner_engraver::finalize ()
150 Grob
*e
= unsmob_grob (get_property ("currentCommandColumn"));
151 span_
->set_bound (RIGHT
, e
);
155 ADD_ACKNOWLEDGER (Trill_spanner_engraver
, note_column
);
157 ADD_TRANSLATOR (Trill_spanner_engraver
,
159 "Create trill spanner from an event.",
165 "currentCommandColumn "
166 "currentMusicalColumn ",