X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=sidebyside;f=input%2Fregression%2Fballoon.ly;h=dadbe95d69cb9ed15e1ce581533694c3a75c3d9c;hb=03aeb8ec429f88b99aa00e7ad44b593e94737760;hp=61d99de84627da30bbeecac925a531dd774ffa89;hpb=197f00037dc4c9e7bd17368f50d11dd8cde7a994;p=lilypond.git diff --git a/input/regression/balloon.ly b/input/regression/balloon.ly index 61d99de846..dadbe95d69 100644 --- a/input/regression/balloon.ly +++ b/input/regression/balloon.ly @@ -1,32 +1,18 @@ \header { - texidoc = "With balloon texts, objects in the output can be marked, + + texidoc = "With balloon texts, objects in the output can be marked, with lines and explanatory text added." - } -\version "2.1.22" - -\score { - \notes { - - \relative c' { - - %% by hand: - \once\override Stem #'print-function = #Balloon_interface::print - \once\override Stem #'balloon-original-callback = #Stem::print - \once\override Stem #'balloon-text = #"I'm a stem" - \once\override Stem #'balloon-text-offset = #'(3 . 4) - \once\override Stem #'balloon-text-props - = #'((font-family . roman)) - + +} +\version "2.11.51" - %% use predefd function. - \context Voice \applyoutput #(add-balloon-text - 'NoteHead "heads, or tails?" - '(0 . -3)) +\layout{ ragged-right = ##t } - - c8 - } +\new Voice \with {\consists "Balloon_engraver" } +{ + \relative c' { + \balloonGrobText #'Stem #'(3 . 4) \markup { "I'm a Stem" } + 8 } - \paper{ raggedright = ##t } }