X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fdrawing-boxes-around-grobs.ly;h=8059c2d011e34a79c549c3931e003c4a5bb8ce60;hb=4d405ef96a8a62771d7d9a283ff5369a772e89d8;hp=5898ce7f3c549fff25cbe7c413527063332fd701;hpb=70ff1f9ec002479b4b34e6e470c0e479d6060a57;p=lilypond.git diff --git a/Documentation/snippets/drawing-boxes-around-grobs.ly b/Documentation/snippets/drawing-boxes-around-grobs.ly index 5898ce7f3c..8059c2d011 100644 --- a/Documentation/snippets/drawing-boxes-around-grobs.ly +++ b/Documentation/snippets/drawing-boxes-around-grobs.ly @@ -1,35 +1,36 @@ -%% Do not edit this file; it is automatically -%% generated from LSR http://lsr.dsi.unimi.it +%% DO NOT EDIT this file manually; it is automatically +%% generated from LSR http://lsr.di.unimi.it +%% Make any changes in LSR itself, or in Documentation/snippets/new/ , +%% and then run scripts/auxiliar/makelsr.py +%% %% This file is in the public domain. -\version "2.13.4" +\version "2.18.0" \header { - lsrtags = "editorial-annotations, tweaks-and-overrides" + lsrtags = "editorial-annotations, scheme-language, tweaks-and-overrides" texidoc = " The @code{print-function} can be overridden to draw a box around an -arbitrary grob. +arbitrary grob. " doctitle = "Drawing boxes around grobs" } % begin verbatim \relative c'' { - \override TextScript #'stencil = + \override TextScript.stencil = #(make-stencil-boxer 0.1 0.3 ly:text-interface::print) c'4^"foo" - \override Stem #'stencil = + \override Stem.stencil = #(make-stencil-boxer 0.05 0.25 ly:stem::print) - \override Score.RehearsalMark #'stencil = + \override Score.RehearsalMark.stencil = #(make-stencil-boxer 0.15 0.3 ly:text-interface::print) b8 - - \revert Stem #'stencil + + \revert Stem.stencil + \revert Flag.stencil c4. c4 \mark "F" c1 } - - -