]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/grob.cc
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / lily / grob.cc
index c3905c487613c6e24c43ecfdb2cc0b207e43182b..15eb1f9212b80da980ffbdcd8707e09de6a789e1 100644 (file)
@@ -114,12 +114,20 @@ Grob::get_print_stencil () const
       else
        {
          SCM expr = m->expr ();
-         if (point_and_click_global)
-           expr = scm_list_3 (ly_symbol2scm ("grob-cause"),
-                              self_scm (), expr);
+         expr = scm_list_3 (ly_symbol2scm ("grob-cause"),
+                            self_scm (), expr);
 
          retval = Stencil (m->extent_box (), expr);
        }
+      SCM rot = get_property ("rotation");
+      if (scm_is_pair (rot))
+       {
+         Real angle = scm_to_double (scm_car (rot));
+         Real x = scm_to_double (scm_cadr (rot));
+         Real y = scm_to_double (scm_caddr (rot));
+
+         retval.rotate (angle, Offset (x, y));
+       }
 
       /* color support... see interpret_stencil_expression () for more... */
       SCM color = get_property ("color");
@@ -430,7 +438,7 @@ Grob::fixup_refpoint ()
   MESSAGES
 ****************************************************************/
 void
-Grob::warning (std::string s) const
+Grob::warning (string s) const
 {
   SCM cause = self_scm ();
   while (Grob *g = unsmob_grob (cause))
@@ -443,7 +451,7 @@ Grob::warning (std::string s) const
 }
 
 
-std::string
+string
 Grob::name () const
 {
   SCM meta = get_property ("meta");
@@ -453,7 +461,7 @@ Grob::name () const
 }
 
 void
-Grob::programming_error (std::string s) const
+Grob::programming_error (string s) const
 {
   SCM cause = self_scm ();
   while (Grob *g = unsmob_grob (cause))
@@ -522,6 +530,7 @@ ADD_INTERFACE (Grob, "grob-interface",
               "meta "
               "minimum-X-extent "
               "minimum-Y-extent "
+              "rotation "
               "springs-and-rods "
               "staff-symbol "
               "stencil "
@@ -608,7 +617,7 @@ common_refpoint_of_list (SCM elist, Grob *common, Axis a)
 }
 
 Grob *
-common_refpoint_of_array (Link_array<Grob> const &arr, Grob *common, Axis a)
+common_refpoint_of_array (vector<Grob*> const &arr, Grob *common, Axis a)
 {
   for (vsize i = arr.size (); i--;)
     if (Grob *s = arr[i])