]> git.donarmstrong.com Git - lilypond.git/blob - lily/phrasing-slur-engraver.cc
Web-ja: update introduction
[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-engraver.hh"
21
22 #include "translator.icc"
23
24 class Phrasing_slur_engraver : public Slur_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   virtual void set_melisma (bool);
31
32 public:
33   TRANSLATOR_DECLARATIONS (Phrasing_slur_engraver);
34   TRANSLATOR_INHERIT (Slur_engraver);
35 };
36
37 SCM
38 Phrasing_slur_engraver::event_symbol () const
39 {
40   return ly_symbol2scm ("phrasing-slur-event");
41 }
42
43 bool
44 Phrasing_slur_engraver::double_property () const
45 {
46   return false;
47 }
48
49 SCM
50 Phrasing_slur_engraver::grob_symbol () const
51 {
52   return ly_symbol2scm ("PhrasingSlur");
53 }
54
55 const char *
56 Phrasing_slur_engraver::object_name () const
57 {
58   return "phrasing slur";
59 }
60
61 Phrasing_slur_engraver::Phrasing_slur_engraver (Context *c)
62   : Slur_engraver (c)
63 {
64 }
65
66 void
67 Phrasing_slur_engraver::set_melisma (bool)
68 {
69 }
70
71 void
72 Phrasing_slur_engraver::boot ()
73 {
74   ADD_LISTENER_FOR (Phrasing_slur_engraver, slur, phrasing_slur);
75   ADD_LISTENER (Phrasing_slur_engraver, note);
76   ADD_ACKNOWLEDGER_FOR (Phrasing_slur_engraver, extra_object, inline_accidental);
77   ADD_ACKNOWLEDGER_FOR (Phrasing_slur_engraver, extra_object, fingering);
78   ADD_ACKNOWLEDGER (Phrasing_slur_engraver, note_column);
79   ADD_ACKNOWLEDGER_FOR (Phrasing_slur_engraver, extra_object, slur);
80   ADD_ACKNOWLEDGER (Phrasing_slur_engraver, script);
81   ADD_ACKNOWLEDGER_FOR (Phrasing_slur_engraver, extra_object, dots);
82   ADD_ACKNOWLEDGER_FOR (Phrasing_slur_engraver, extra_object, text_script);
83   ADD_END_ACKNOWLEDGER_FOR (Phrasing_slur_engraver, extra_object, tie);
84   ADD_ACKNOWLEDGER_FOR (Phrasing_slur_engraver, extra_object, tuplet_number);
85 }
86
87 ADD_TRANSLATOR (Phrasing_slur_engraver,
88                 /* doc */
89                 "Print phrasing slurs.  Similar to @ref{Slur_engraver}.",
90
91                 /* create */
92                 "PhrasingSlur ",
93
94                 /* read */
95                 "",
96
97                 /* write */
98                 ""
99                );