]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/font-size-engraver.cc
* flower
[lilypond.git] / lily / font-size-engraver.cc
index 9e68c27676a924ca575d4b6d44734720fb818674..6d02eab213bdc304a8014c1e55c381f60aace933 100644 (file)
@@ -1,25 +1,23 @@
-/*   
-  font-size-engraver.cc --  implement Font_size_engraver
-  
+/*
+  font-size-engraver.cc -- implement Font_size_engraver
+
   source file of the GNU LilyPond music typesetter
-  
-  (c) 2001--2004  Han-Wen Nienhuys <hanwen@cs.uu.nl>
-  
- */
+
+  (c) 2001--2005  Han-Wen Nienhuys <hanwen@cs.uu.nl>
+*/
 
 #include "grob.hh"
 #include "engraver.hh"
 
 class Font_size_engraver : public Engraver
 {
-  
+
   TRANSLATOR_DECLARATIONS (Font_size_engraver);
 protected:
   virtual void acknowledge_grob (Grob_info gi);
 private:
 };
 
-
 Font_size_engraver::Font_size_engraver ()
 {
 
@@ -32,24 +30,23 @@ Font_size_engraver::acknowledge_grob (Grob_info gi)
 
   /*
     We only want to process a grob once.
-   */
-  if (gi.origin_trans_->get_parent_context () != get_parent_context ())
-    return ;
-  
-  if (ly_c_number_p (sz) && ly_scm2double (sz))
+  */
+  if (gi.origin_trans_->context () != context ())
+    return;
+
+  if (scm_is_number (sz) && scm_to_double (sz))
     {
-      Real font_size = ly_scm2double (sz);
-      
-      font_size +=  robust_scm2double (gi.grob_->get_property ("font-size"), 0);
+      Real font_size = scm_to_double (sz);
+
+      font_size += robust_scm2double (gi.grob_->get_property ("font-size"), 0);
       gi.grob_->set_property ("font-size", scm_make_real (font_size));
     }
 }
 
-
-ENTER_DESCRIPTION (Font_size_engraver,
-/* descr */       "Puts fontSize into font-relative-size grob property.",
-/* creats*/       "",
-/* accepts */     "",
-/* acks  */      "font-interface",
-/* reads */       "fontSize",
-/* write */       "");
+ADD_TRANSLATOR (Font_size_engraver,
+               /* descr */ "Puts fontSize into font-relative-size grob property.",
+               /* creats*/ "",
+               /* accepts */ "",
+               /* acks  */ "font-interface",
+               /* reads */ "fontSize",
+               /* write */ "");