X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fapply-output.ly;h=6e50ca5c448b067850495fbee03e76c04f8835b2;hb=5b1f3adfe5e3561eaa0f9440e0697054084b7107;hp=aa615eaa7184debe067c9da8e4577f9f39149dfa;hpb=34eb783cd6b1af2fd7cf2c573ec9dc7e9d16e7f7;p=lilypond.git diff --git a/input/regression/apply-output.ly b/input/regression/apply-output.ly index aa615eaa71..6e50ca5c44 100644 --- a/input/regression/apply-output.ly +++ b/input/regression/apply-output.ly @@ -1,51 +1,38 @@ +\version "2.16.0" -\version "2.6.0" \header { - -texidoc = "The @code{\applyoutput} expression is the most flexible way to + texidoc = "The @code{\\applyOutput} expression is the most flexible way to tune properties for individual grobs. Here, the layout of a note head is changed depending on its vertical position. " - } -#(define (mc-squared gr org cur) +#(define (mc-squared gr org cur) (let* - ( - (ifs (ly:grob-property gr 'interfaces)) - (sp (ly:grob-property gr 'staff-position)) - ) - (if (and (memq 'note-head-interface ifs) - (memq sp '(-2 -3 -5))) + ( + (ifs (ly:grob-interfaces gr)) + (sp (ly:grob-property gr 'staff-position)) + ) + (if (memq 'note-head-interface ifs) (begin - (ly:grob-set-property! gr 'print-function Text_interface::print) - (ly:grob-set-property! gr 'font-family 'roman) - (ly:grob-set-property! - gr 'text - (make-raise-markup -0.5 - (case sp - ((-5) (make-simple-markup "m")) - ((-3) (make-simple-markup "c ")) - ((-2) (make-smaller-markup (make-bold-markup "2"))) - (else (make-simple-markup "bla")) - )))) - ))) - -\score { - - \context Voice \relative c' { - \stemUp - \set autoBeaming = ##f - { 8 - \context Voice \applyoutput #mc-squared - - - } - - } -\layout { raggedright = ##t -% outputscale = 5 - } + (ly:grob-set-property! gr 'stencil + (grob-interpret-markup gr + (make-raise-markup -0.5 + (case sp + ((-5) (make-simple-markup "m")) + ((-3) (make-simple-markup "c ")) + ((-2) (make-smaller-markup (make-bold-markup "2"))) + (else (make-simple-markup "bla")) + )))) + )))) + +\new Voice \relative c' { + \set autoBeaming = ##f + + 8 + + \applyOutput #'Voice #mc-squared + 8 }