]> git.donarmstrong.com Git - lilypond.git/blob - lily/footnote-engraver.cc
Reject \footnote ... \default without grob specification
[lilypond.git] / lily / footnote-engraver.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2011--2012 Mike Solomon <mike@apollinemike.com>
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 "engraver.hh"
21
22 #include "music.hh"
23 #include "stream-event.hh"
24 #include "international.hh"
25 #include "item.hh"
26 #include "pointer-group-interface.hh"
27 #include "spanner.hh"
28 #include "system.hh"
29
30 #include "translator.icc"
31
32 class Footnote_engraver : public Engraver
33 {
34   TRANSLATOR_DECLARATIONS (Footnote_engraver);
35
36   DECLARE_TRANSLATOR_LISTENER (footnote);
37   DECLARE_ACKNOWLEDGER (grob);
38   DECLARE_END_ACKNOWLEDGER (grob);
39   vector<Stream_event *> events_;
40   vector<Drul_array<Spanner *> > annotated_spanners_;
41
42   void stop_translation_timestep ();
43   void finalize ();
44   virtual void derived_mark () const;
45
46   void footnotify (Grob *, Stream_event *);
47 };
48
49 IMPLEMENT_TRANSLATOR_LISTENER (Footnote_engraver, footnote);
50 void
51 Footnote_engraver::listen_footnote (Stream_event *ev)
52 {
53   events_.push_back (ev);
54 }
55
56 void
57 Footnote_engraver::stop_translation_timestep ()
58 {
59   events_.clear ();
60 }
61
62 void
63 Footnote_engraver::finalize ()
64 {
65   annotated_spanners_.clear ();
66 }
67
68 void
69 Footnote_engraver::derived_mark () const
70 {
71   for (vsize i = 0; i < events_.size (); ++i)
72     scm_gc_mark (events_[i]->self_scm ());
73 }
74
75 Footnote_engraver::Footnote_engraver ()
76 {
77 }
78
79 void
80 Footnote_engraver::footnotify (Grob *g, Stream_event *event)
81 {
82   Spanner *s = dynamic_cast<Spanner *>(g);
83
84   if (s)
85     {
86       Spanner *b = make_spanner ("FootnoteSpanner", event->self_scm ());
87       b->set_parent (s, Y_AXIS);
88       b->set_parent (s, X_AXIS);
89       Grob *bound = unsmob_grob (get_property ("currentMusicalColumn"));
90       b->set_bound (LEFT, bound);
91       annotated_spanners_.push_back (Drul_array<Spanner *> (s, b));
92     }
93   else
94     {
95       Grob *b = make_item ("FootnoteItem", event->self_scm ());
96       b->set_parent (g, Y_AXIS);
97       b->set_parent (g, X_AXIS);
98     }
99 }
100
101 void
102 Footnote_engraver::acknowledge_grob (Grob_info info)
103 {
104   Music *mus = unsmob_music (info.grob ()->get_property ("footnote-music"));
105
106   if (mus)
107     {
108       if (!mus->is_mus_type ("footnote-event")) {
109         mus->origin ()->programming_error (_ ("Must be footnote-event."));
110         return;
111       }
112       Stream_event *ev = mus->to_event (context ());
113       footnotify (info.grob (), ev);
114       ev->unprotect ();
115       return;
116     }
117
118   for (vsize i = 0; i < events_.size (); i++)
119     {
120       SCM name = events_[i]->get_property ("symbol");
121       if (info.grob ()->name () == ly_symbol2string (name))
122         footnotify (info.grob (), events_[i]);
123     }
124 }
125
126 void
127 Footnote_engraver::acknowledge_end_grob (Grob_info info)
128 {
129   Spanner *s = dynamic_cast<Spanner *>(info.grob ());
130
131   if (s)
132     for (vsize i = 0; i < annotated_spanners_.size (); i++)
133       {
134         if (annotated_spanners_[i][LEFT] == s)
135           {
136             Grob *bound = unsmob_grob (get_property ("currentMusicalColumn"));
137             annotated_spanners_[i][RIGHT]->set_bound (RIGHT, bound);
138             break;
139           }
140       }
141 }
142
143 ADD_ACKNOWLEDGER (Footnote_engraver, grob);
144 ADD_END_ACKNOWLEDGER (Footnote_engraver, grob);
145
146 ADD_TRANSLATOR (Footnote_engraver,
147                 /* doc */
148                 "Create footnote texts.",
149
150                 /* create */
151                 "FootnoteItem "
152                 "FootnoteSpanner ",
153
154                 /*read*/
155                 "currentMusicalColumn ",
156
157                 /*write*/
158                 ""
159                );