]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/break-align-engraver.cc
2003 -> 2004
[lilypond.git] / lily / break-align-engraver.cc
index 6cafa97a585b646cc85582cdd64913345f7497ff..a3ef11c0982b85f9f39d905f133c05a73704f713 100644 (file)
@@ -3,12 +3,12 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1999--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1999--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 #include "engraver.hh"
 #include "protected-scm.hh"
-#include "break-align-item.hh"
+#include "break-align-interface.hh"
 #include "item.hh"
 #include "align-interface.hh"
 #include "axis-group-interface.hh"
 
 class Break_align_engraver : public Engraver
 {
-  Item *align_l_;
+  Item *align_;
   Protected_scm column_alist_;
+  Item *edge_;
+
+  void add_to_group (SCM,Item*);
 protected:
   virtual void finalize ();
   virtual void acknowledge_grob (Grob_info i);
@@ -32,7 +35,7 @@ void
 Break_align_engraver::add_column (SCM smob)
 {
   Grob * e = unsmob_grob (smob);
-  Break_align_interface::add_element (align_l_,e);
+  Break_align_interface::add_element (align_,e);
   typeset_grob (e);
 }
 
@@ -65,10 +68,15 @@ Break_align_engraver::stop_translation_timestep ()
   
   column_alist_ = SCM_EOL;
 
-  if (align_l_)
+  if (align_)
+    {
+      typeset_grob (align_);
+      align_ = 0;
+    }
+  if (edge_)
     {
-      typeset_grob (align_l_);
-      align_l_ = 0;
+      typeset_grob (edge_);
+      edge_ = 0;
     }
 }
 
@@ -76,83 +84,74 @@ Break_align_engraver::stop_translation_timestep ()
 Break_align_engraver::Break_align_engraver ()
 {
   column_alist_ = SCM_EOL;
-  align_l_ =0;
+  edge_ = 0;
+  align_ = 0;
 }
 
 void
 Break_align_engraver::acknowledge_grob (Grob_info inf)
 {
-  if (Item * item_l = dynamic_cast <Item *> (inf.grob_l_))
+  if (Item * item = dynamic_cast <Item *> (inf.grob_))
     {
-      if (item_l->empty_b (X_AXIS) || item_l->get_parent (X_AXIS))
+      /*
+       Removed check for item->empty (X_AXIS). --hwn 20/1/04
+       */
+      if (item->get_parent (X_AXIS))
        return;
 
-      SCM bp=item_l->get_grob_property ("breakable");
+      SCM bp=item->get_grob_property ("breakable");
       bool breakable = (to_boolean (bp));
       if (!breakable)
        return ;
 
-      SCM align_name = item_l->get_grob_property ("break-align-symbol");
+      SCM align_name = item->get_grob_property ("break-align-symbol");
       if (!gh_symbol_p (align_name))
        return ;
 
-      if (!align_l_)
+      if (!align_)
        {
-         align_l_ = new Item (get_property ("BreakAlignment"));
-         Break_align_interface::set_interface (align_l_);
-         announce_grob (align_l_,0);
+         align_ = make_item ("BreakAlignment");
 
-         SCM edge_sym = ly_symbol2scm ("Left_edge_item");
-         Item * edge = new Item (get_property ("LeftEdge"));
+         announce_grob (align_, SCM_EOL);
 
-        
-
-         /*
-           If the element is empty, it will be ignored in the break
-           alignment stuff.
-
-           TODO: switch off ignoring empty stuff?
-         */
-         edge->set_extent_callback (Grob::point_dimension_callback_proc, X_AXIS);
-         
-         /*
-           We must have left-edge in the middle.  Instrument-names
-           are left to left-edge, so they don't enter the staff.
-         */
-         align_l_->set_grob_property ("self-alignment-X", edge->self_scm ());
-         
-         announce_grob (edge, 0);
-         column_alist_ = scm_assoc_set_x (column_alist_, edge_sym, edge->self_scm ());
+         edge_ = make_item ("LeftEdge");
+         add_to_group (edge_->get_grob_property ("break-align-symbol"), edge_);
+         announce_grob(edge_, SCM_EOL);
        }
+      
+      add_to_group (align_name, item);
+    }
+}
 
-      SCM s = scm_assoc (align_name, column_alist_);
-
-      Item * group = 0;
-
-      if (s != SCM_BOOL_F)
-       {
-         Grob *e =  unsmob_grob (ly_cdr (s));
-         group = dynamic_cast<Item*> (e);
-       }
-      else
-       {
-         group = new Item (get_property ("BreakAlignGroup"));
+void
+Break_align_engraver::add_to_group(SCM align_name, Item*item)
+{
+  SCM s = scm_assoc (align_name, column_alist_);
+  Item * group = 0;
 
-         Axis_group_interface::set_interface (group);
-         Axis_group_interface::set_axes (group, X_AXIS,X_AXIS);
+  if (s != SCM_BOOL_F)
+    {
+      Grob *e =  unsmob_grob (ly_cdr (s));
+      group = dynamic_cast<Item*> (e);
+    }
+  else
+    {
+      group = make_item ("BreakAlignGroup");
 
-         group->set_grob_property ("break-align-symbol", align_name);
-         group->set_parent (align_l_, Y_AXIS);
-         announce_grob (group, 0);
-         column_alist_ = scm_assoc_set_x (column_alist_, align_name, group->self_scm ());
+      group->set_grob_property ("break-align-symbol", align_name);
+      group->set_parent (align_, Y_AXIS);
+      announce_grob(group, item->self_scm());
+         
+      column_alist_ = scm_assoc_set_x (column_alist_, align_name, group->self_scm ());
 
-       }
-      Axis_group_interface::add_element (group, item_l);
     }
+  Axis_group_interface::add_element (group, item);
 }
+
 ENTER_DESCRIPTION(Break_align_engraver,
 /* descr */       "Align grobs with corresponding break-align-symbols into groups, and order the groups according to breakAlignOrder",
 /* creats*/       "BreakAlignment BreakAlignGroup LeftEdge",
-/* acks  */       "grob-interface", // break-aligned-interface ?
-/* reads */       "breakAlignOrder",
+/* accepts */     "",
+/* acks  */       "break-aligned-interface"
+,/* reads */       "breakAlignOrder",
 /* write */       "");