2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 1997--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
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/>.
20 #include "engraver.hh"
23 #include "directional-element-interface.hh"
24 #include "international.hh"
25 #include "note-column.hh"
27 #include "slur-proto-engraver.hh"
29 #include "stream-event.hh"
32 #include "translator.icc"
34 class Phrasing_slur_engraver : public Slur_proto_engraver
37 DECLARE_TRANSLATOR_LISTENER (phrasing_slur);
38 DECLARE_ACKNOWLEDGER (slur);
41 TRANSLATOR_DECLARATIONS (Phrasing_slur_engraver);
44 Phrasing_slur_engraver::Phrasing_slur_engraver () :
45 Slur_proto_engraver (0, "PhrasingSlur", "phrasing slur", "phrasing-slur-event")
49 IMPLEMENT_TRANSLATOR_LISTENER (Phrasing_slur_engraver, phrasing_slur);
51 Phrasing_slur_engraver::listen_phrasing_slur (Stream_event *ev)
53 internal_listen_slur (ev);
57 Phrasing_slur_engraver::acknowledge_slur (Grob_info info)
59 acknowledge_extra_object (info);
62 ADD_ACKNOWLEDGER (Phrasing_slur_engraver, inline_accidental);
63 ADD_ACKNOWLEDGER (Phrasing_slur_engraver, fingering)
64 ADD_ACKNOWLEDGER (Phrasing_slur_engraver, note_column);
65 ADD_ACKNOWLEDGER (Phrasing_slur_engraver, slur);
66 ADD_ACKNOWLEDGER (Phrasing_slur_engraver, script);
67 ADD_ACKNOWLEDGER (Phrasing_slur_engraver, dots);
68 ADD_ACKNOWLEDGER (Phrasing_slur_engraver, text_script);
69 ADD_END_ACKNOWLEDGER (Phrasing_slur_engraver, tie);
70 ADD_ACKNOWLEDGER (Phrasing_slur_engraver, tuplet_number);
72 ADD_TRANSLATOR (Phrasing_slur_engraver,
74 "Print phrasing slurs. Similar to @ref{Slur_engraver}.",