]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/footnote-engraver.cc
Release: update news.
[lilypond.git] / lily / footnote-engraver.cc
index 116c7443140f0c6517ef985cb4778b531f631568..4a2070a6cd5f94da9f379a174e5902f11a4cd532 100644 (file)
@@ -1,7 +1,7 @@
 /*
   This file is part of LilyPond, the GNU music typesetter.
 
-  Copyright (C) 2006--2011 Han-Wen Nienhuys <hanwen@lilypond.org>
+  Copyright (C) 2011--2012 Mike Solomon <mike@apollinemike.com>
 
   LilyPond is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
@@ -21,7 +21,9 @@
 
 #include "stream-event.hh"
 #include "item.hh"
+#include "pointer-group-interface.hh"
 #include "spanner.hh"
+#include "system.hh"
 
 #include "translator.icc"
 
@@ -31,9 +33,12 @@ class Footnote_engraver : public Engraver
 
   DECLARE_TRANSLATOR_LISTENER (footnote);
   DECLARE_ACKNOWLEDGER (grob);
+  DECLARE_END_ACKNOWLEDGER (grob);
   vector<Stream_event *> events_;
+  vector<Drul_array<Spanner *> > annotated_spanners_;
 
   void stop_translation_timestep ();
+  void finalize ();
 
   void footnotify (Grob *, Stream_event *);
 };
@@ -51,6 +56,12 @@ Footnote_engraver::stop_translation_timestep ()
   events_.clear ();
 }
 
+void
+Footnote_engraver::finalize ()
+{
+  annotated_spanners_.resize (0);
+}
+
 Footnote_engraver::Footnote_engraver ()
 {
 }
@@ -59,27 +70,19 @@ void
 Footnote_engraver::footnotify (Grob *g, Stream_event *event)
 {
   Spanner *s = dynamic_cast<Spanner *>(g);
-  
+
   if (s)
     {
       Spanner *b = make_spanner ("FootnoteSpanner", event->self_scm ());
-      b->set_property ("footnote-text", event->get_property ("footnote-text"));
-      b->set_property ("text", event->get_property ("text"));
       b->set_parent (s, Y_AXIS);
       b->set_parent (s, X_AXIS);
-      bool bar = scm_is_string (get_property ("whichBar"));
-      Grob *bound = unsmob_grob (bar
-                                 ? get_property ("currentCommandColumn")
-                                 : get_property ("currentMusicalColumn"));
+      Grob *bound = unsmob_grob (get_property ("currentMusicalColumn"));
       b->set_bound (LEFT, bound);
-      b->set_bound (RIGHT, bound);
-      b->set_property ("parent-spanner", s->self_scm ());
+      annotated_spanners_.push_back (Drul_array<Spanner *> (s, b));
     }
   else
     {
-      Grob *b = make_item ("Footnote", event->self_scm ());
-      b->set_property ("footnote-text", event->get_property ("footnote-text"));
-      b->set_property ("text", event->get_property ("text"));
+      Grob *b = make_item ("FootnoteItem", event->self_scm ());
       b->set_parent (g, Y_AXIS);
       b->set_parent (g, X_AXIS);
     }
@@ -95,32 +98,47 @@ Footnote_engraver::acknowledge_grob (Grob_info info)
     {
       Stream_event *e = unsmob_stream_event (scm_car (s));
       if (e->in_event_class ("footnote-event"))
-       {
-         footnotify (info.grob (), e);
-       }
+        footnotify (info.grob (), e);
     }
 
   for (vsize i = 0; i < events_.size (); i++)
     {
       if (info.grob ()->name () == ly_symbol2string (events_[i]->get_property ("symbol")))
-       footnotify (info.grob (), events_[i]);
+        footnotify (info.grob (), events_[i]);
     }
 }
 
+void
+Footnote_engraver::acknowledge_end_grob (Grob_info info)
+{
+  Spanner *s = dynamic_cast<Spanner *>(info.grob ());
 
+  if (s)
+    for (vsize i = 0; i < annotated_spanners_.size (); i++)
+      {
+        if (annotated_spanners_[i][LEFT] == s)
+          {
+            Grob *bound = unsmob_grob (get_property ("currentMusicalColumn"));
+            annotated_spanners_[i][RIGHT]->set_bound (RIGHT, bound);
+            break;
+          }
+      }
+}
 
 ADD_ACKNOWLEDGER (Footnote_engraver, grob);
+ADD_END_ACKNOWLEDGER (Footnote_engraver, grob);
 
 ADD_TRANSLATOR (Footnote_engraver,
-              /* doc */
-              "Create footnote texts.",
+                /* doc */
+                "Create footnote texts.",
 
-              /* create */
-              "Footnote ",
+                /* create */
+                "FootnoteItem "
+                "FootnoteSpanner ",
 
-              /*read*/
-              "",
+                /*read*/
+                "currentMusicalColumn ",
 
-              /*write*/
-              ""
-              );
+                /*write*/
+                ""
+               );