]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/rhythmic-head.cc
Doc:NR Appendix - Clef Styles - added G2 and modernTab Clefs
[lilypond.git] / lily / rhythmic-head.cc
index 00f6cb1df48954b2bb19196e7b00bd748619a239..af410a2cf4e92049f29b4b17a3ec0c5630f01d34 100644 (file)
@@ -1,84 +1,70 @@
 /*
-  rhythmic-head.cc -- implement Rhythmic_head
+  This file is part of LilyPond, the GNU music typesetter.
 
-  source file of the GNU LilyPond music typesetter
+  Copyright (C) 1997--2014 Han-Wen Nienhuys <hanwen@xs4all.nl>
 
-  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  LilyPond is free software: you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation, either version 3 of the License, or
+  (at your option) any later version.
+
+  LilyPond is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "rhythmic-head.hh"
-#include "debug.hh"
-#include "molecule.hh"
-#include "paper-def.hh"
-#include "lookup.hh"
+
+#include "item.hh"
 #include "rest.hh"
-#include "dots.hh"
-#include "axis-group-element.hh"
-#include "paper-score.hh"
+#include "staff-symbol-referencer.hh"
 #include "stem.hh"
+#include "warn.hh"
 
-
-
-int
-Rhythmic_head::dots_i () const
+Item *
+Rhythmic_head::get_dots (Grob *me)
 {
-  return dots_l_ ? dots_l_->dots_i_ : 0;
-}
-  
-void
-Rhythmic_head::do_post_processing ()
-{
-  if (dots_l_)
-    {
-      dots_l_->position_i_ = position_i ();
-    }
+  SCM s = me->get_object ("dot");
+  return unsmob_item (s);
 }
 
-void
-Rhythmic_head::do_pre_processing ()
+Item *
+Rhythmic_head::get_stem (Grob *me)
 {
-  translate_axis (position_i_ * staff_line_leading_f () /2.0, Y_AXIS);
-  position_i_ = 0;
+  SCM s = me->get_object ("stem");
+  return unsmob_item (s);
 }
 
 int
-Rhythmic_head::position_i () const
+Rhythmic_head::dot_count (Grob *me)
 {
-  return position_i_ +  Staff_symbol_referencer::position_i ();
+  return get_dots (me)
+         ? robust_scm2int (get_dots (me)->get_property ("dot-count"), 0) : 0;
 }
 
-
 void
-Rhythmic_head::add_dots (Dots *dot_l)
+Rhythmic_head::set_dots (Grob *me, Item *dot)
 {
-  dots_l_ = dot_l;  
-  dot_l->add_dependency (this);  
+  me->set_object ("dot", dot->self_scm ());
 }
 
-Rhythmic_head::Rhythmic_head ()
-{
-  dots_l_ =0;
-  balltype_i_ =0;
-  stem_l_ =0;
-  position_i_ =0;
-}
-
-void
-Rhythmic_head::do_substitute_element_pointer (Score_element*o,Score_element*n)
+int
+Rhythmic_head::duration_log (Grob *me)
 {
-  Staff_symbol_referencer::do_substitute_element_pointer (o,n);
-  if (o == dots_l_)
-    dots_l_ = dynamic_cast<Dots *> (n) ;
-  else if (o == stem_l_)
-    stem_l_ = dynamic_cast<Stem*>(n);
+  SCM s = me->get_property ("duration-log");
+  return scm_is_number (s) ? scm_to_int (s) : 0;
 }
 
+ADD_INTERFACE (Rhythmic_head,
+               "Note head or rest.",
 
-void
-Rhythmic_head::do_print () const
-{
-#ifndef NPRINT
-  DOUT << "balltype = "<< balltype_i_ << "dots = " << dots_i ();
-#endif
-}
-
+               /* properties */
+               "dot "
+               "duration-log "
+               "glissando-skip "
+               "stem "
+              );