]> git.donarmstrong.com Git - lilypond.git/blob - lily/phrasing-slur-engraver.cc
Issue 4903/3: Restructure slur engravers
[lilypond.git] / lily / phrasing-slur-engraver.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 1997--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
5
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.
10
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.
15
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/>.
18 */
19
20 #include "slur-proto-engraver.hh"
21
22 #include "translator.icc"
23
24 class Phrasing_slur_engraver : public Slur_proto_engraver
25 {
26   virtual SCM event_symbol () const;
27   virtual bool double_property () const;
28   virtual SCM grob_symbol () const;
29   virtual const char* object_name () const;
30
31 protected:
32   void listen_phrasing_slur (Stream_event *);
33   void acknowledge_slur (Grob_info);
34
35 public:
36   TRANSLATOR_DECLARATIONS (Phrasing_slur_engraver);
37   TRANSLATOR_INHERIT (Slur_proto_engraver);
38 };
39
40 SCM
41 Phrasing_slur_engraver::event_symbol () const
42 {
43   return ly_symbol2scm ("phrasing-slur-event");
44 }
45
46 bool
47 Phrasing_slur_engraver::double_property () const
48 {
49   return false;
50 }
51
52 SCM
53 Phrasing_slur_engraver::grob_symbol () const
54 {
55   return ly_symbol2scm ("PhrasingSlur");
56 }
57
58 const char *
59 Phrasing_slur_engraver::object_name () const
60 {
61   return "phrasing slur";
62 }
63
64 Phrasing_slur_engraver::Phrasing_slur_engraver ()
65 {
66 }
67
68 void
69 Phrasing_slur_engraver::listen_phrasing_slur (Stream_event *ev)
70 {
71   Slur_proto_engraver::listen_slur (ev);
72 }
73
74 void
75 Phrasing_slur_engraver::acknowledge_slur (Grob_info info)
76 {
77   acknowledge_extra_object (info);
78 }
79
80
81 void
82 Phrasing_slur_engraver::boot ()
83 {
84   ADD_LISTENER (Phrasing_slur_engraver, phrasing_slur);
85   ADD_LISTENER (Phrasing_slur_engraver, note);
86   ADD_ACKNOWLEDGER (Phrasing_slur_engraver, inline_accidental);
87   ADD_ACKNOWLEDGER (Phrasing_slur_engraver, fingering);
88   ADD_ACKNOWLEDGER (Phrasing_slur_engraver, note_column);
89   ADD_ACKNOWLEDGER (Phrasing_slur_engraver, slur);
90   ADD_ACKNOWLEDGER (Phrasing_slur_engraver, script);
91   ADD_ACKNOWLEDGER (Phrasing_slur_engraver, dots);
92   ADD_ACKNOWLEDGER (Phrasing_slur_engraver, text_script);
93   ADD_END_ACKNOWLEDGER (Phrasing_slur_engraver, tie);
94   ADD_ACKNOWLEDGER (Phrasing_slur_engraver, tuplet_number);
95 }
96
97 ADD_TRANSLATOR (Phrasing_slur_engraver,
98                 /* doc */
99                 "Print phrasing slurs.  Similar to @ref{Slur_engraver}.",
100
101                 /* create */
102                 "PhrasingSlur ",
103
104                 /* read */
105                 "",
106
107                 /* write */
108                 ""
109                );