]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/extending/programming-interface.itely
Doc: Document the use of \temporary (2938)
[lilypond.git] / Documentation / extending / programming-interface.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2
3 @ignore
4     Translation of GIT committish: FILL-IN-HEAD-COMMITTISH
5
6     When revising a translation, copy the HEAD committish of the
7     version that you are working on.  For details, see the Contributors'
8     Guide, node Updating translation committishes..
9 @end ignore
10
11 @c \version "2.17.6"
12
13 @node Interfaces for programmers
14 @chapter Interfaces for programmers
15
16 Advanced tweaks may be performed by using Scheme.  If you are
17 not familiar with Scheme, you may wish to read our
18 @ref{Scheme tutorial}.
19
20 @menu
21 * LilyPond code blocks::
22 * Scheme functions::
23 * Music functions::
24 * Event functions::
25 * Markup functions::
26 * Contexts for programmers::
27 * Callback functions::
28 * Inline Scheme code::
29 * Difficult tweaks::
30 @end menu
31
32 @node LilyPond code blocks
33 @section LilyPond code blocks
34
35 @cindex LilyPond code blocks
36 @cindex code blocks, LilyPond
37 @funindex #@{ @dots{} #@}
38 @funindex $
39 @funindex #
40
41 Creating music expressions in Scheme can be tedious, as they are
42 heavily nested and the resulting Scheme code is large. For some
43 simple tasks this can be avoided by using LilyPond code blocks,
44 which enable common LilyPond syntax to be used within Scheme.
45
46 LilyPond code blocks look like
47
48 @example
49   #@{ @var{LilyPond code} #@}
50 @end example
51
52 Here is a trivial example:
53
54 @lilypond[verbatim,quote]
55 ritpp = #(define-event-function (parser location) ()
56   #{ ^"rit." \pp #}
57 )
58
59 { c'4 e'4\ritpp g'2 }
60 @end lilypond
61
62 LilyPond code blocks can be used anywhere where you can write Scheme
63 code.  The Scheme reader actually is changed for accommodating
64 LilyPond code blocks and can deal with embedded Scheme expressions
65 starting with @code{$} and@w{ }@code{#}.
66
67 @cindex parser (function argument)
68 @cindex location
69
70 The reader extracts the LilyPond code block and generates a runtime
71 call to the LilyPond @code{parser} to interpret the LilyPond code.
72 Scheme expressions embedded in the LilyPond code are evaluated in the
73 lexical environment of the LilyPond code block, so all local variables
74 and function parameters available at the point the LilyPond code block
75 is written may be accessed.  Variables defined in other Scheme modules,
76 like the modules containing @code{\header} and @code{\layout} blocks,
77 are not accessible as Scheme variables, i.e. prefixed
78 with@tie{}@code{#}, but they are accessible as LilyPond variables, i.e.
79 prefixed with@tie{}@code{\}.
80
81 If @code{location} (see @ref{Scheme functions}) refers to a valid
82 input location (which it usually does inside of music/@/Scheme
83 functions), all music generated inside the code block has its
84 @samp{origin} set to @code{location}.
85
86 A LilyPond code block may contain anything that you can use on the
87 right side of an assignment.  In addition, an empty LilyPond block
88 corresponds to a void music expression, and a LilyPond block
89 containing multiple music events gets turned into a sequential music
90 expression.
91
92 @node Scheme functions
93 @section Scheme functions
94 @cindex Scheme functions (LilyPond syntax)
95
96 @emph{Scheme functions} are Scheme procedures that can create Scheme
97 expressions from input written in LilyPond syntax.  They can be called
98 in pretty much all places where using @code{#} for specifying a value in
99 Scheme syntax is allowed.  While Scheme has functions of its own, this
100 chapter is concerned with @emph{syntactic} functions, functions that
101 receive arguments specified in LilyPond syntax.
102
103 @menu
104 * Scheme function definitions::
105 * Scheme function usage::
106 * Void scheme functions::
107 @end menu
108
109 @node Scheme function definitions
110 @subsection Scheme function definitions
111 @funindex define-scheme-function
112
113 The general form for defining scheme functions is:
114
115 @example
116 function =
117 #(define-scheme-function
118      (parser location @var{arg1} @var{arg2} @dots{})
119      (@var{type1?} @var{type2?} @dots{})
120    @var{body})
121 @end example
122
123 @noindent
124 where
125
126 @multitable @columnfractions .33 .66
127 @item @code{parser}
128 @tab needs to be literally @code{parser} in order to give LilyPond code
129 blocks (@code{#@{}@dots{}@code{#@}}) access to the parser.
130
131 @item @code{location}
132 @tab needs to be literally @code{location} in order to provide access
133 to the input location object, which is used to provide error messages
134 with file names and line numbers.
135
136 @item @code{@var{argN}}
137 @tab @var{n}th argument
138
139 @item @code{@var{typeN?}}
140 @tab a Scheme @emph{type predicate} for which @code{@var{argN}}
141 must return @code{#t}.  Some of these predicates are specially
142 recognized by the parser, see below.  There is also a special form
143 @code{(@emph{predicate?} @emph{default})} for specifying optional
144 arguments.  If the actual argument is missing when the function is being
145 called, the default value is substituted instead.  Default values are
146 evaluated at definition time (including LilyPond code blocks!), so if
147 you need a default calculated at runtime, instead write a special value
148 you can easily recognize.  If you write the predicate in parentheses but
149 don't follow it with a default value, @code{#f} is used as the default.
150 Default values are not verified with @emph{predicate?} at either
151 definition or run time: it is your responsibility to deal with the
152 values you specify.  Default values that happen to be music expressions
153 are copied while setting @code{origin} to the @code{location} parameter.
154
155 @item @code{@var{body}}
156 @tab A sequence of Scheme forms evaluated in order, the last one being
157 used as the return value of the scheme function.  It may contain
158 LilyPond code blocks enclosed in hashed braces
159 (@tie{}@w{@code{#@{@dots{}#@}}}@tie{}), like described in
160 @ref{LilyPond code blocks}.  Within LilyPond code blocks, use @code{#}
161 to reference function arguments (eg., @samp{#arg1}) or to start an
162 inline Scheme expression containing function arguments (eg.,
163 @w{@samp{#(cons arg1 arg2)}}).  Where normal Scheme expressions using
164 @code{#} don't do the trick, you might need to revert to immediate
165 Scheme expressions using @code{$}, for example as @samp{$music}.
166
167 If your function returns a music expression, it is given a useful value
168 of @code{origin}.
169 @end multitable
170
171 @noindent
172 Some type predicates are specially handled by the parser since it
173 can't recognize the arguments reliably otherwise.  Currently these are
174 @code{ly:pitch?} and @code{ly:duration?}.
175
176 Suitability of arguments for all other predicates is determined by
177 actually calling the predicate after LilyPond has already converted them
178 into a Scheme expression.  As a consequence, the argument can be
179 specified in Scheme syntax if desired (introduced with @code{#} or as
180 the result of calling a scheme function), but LilyPond will also convert
181 a number of LilyPond constructs into Scheme before actually checking the
182 predicate on them.  Currently, those include music, postevents, simple
183 strings (with or without quotes), numbers, full markups and markup
184 lists, score, book, bookpart, context definition and output definition
185 blocks.
186
187 For some kinds of expression (like most music not enclosed in braces)
188 LilyPond needs to look further than the expression itself in order to
189 determine its end.  If such an expression were considered for an
190 optional argument by evaluating its predicate, LilyPond would not be
191 able to ``backup'' when it decides the expression does not fit the
192 parameter.  So some forms of music might need to be enclosed in braces
193 to make them acceptable to LilyPond.  There are also some other
194 ambiguities that LilyPond sorts out by checking with predicate
195 functions: is @samp{-3} a fingering postevent or a negative number?  Is
196 @code{"a" 4} in lyric mode a string followed by a number, or a lyric
197 event of duration @code{4}?  LilyPond decides by asking the predicates.
198 That means that you should avoid permissive predicates like
199 @code{scheme?} if you have a particular use in mind instead of a general
200 purpose function.
201
202 For a list of available predefined type predicates, see
203 @ruser{Predefined type predicates}.
204
205 @seealso
206
207 Notation Reference:
208 @ruser{Predefined type predicates}.
209
210 Installed Files:
211 @file{lily/music-scheme.cc},
212 @file{scm/c++.scm},
213 @file{scm/lily.scm}.
214
215 @node Scheme function usage
216 @subsection Scheme function usage
217
218 Scheme functions can be called pretty much anywhere where a Scheme
219 expression starting with @code{#} can be written.  You call a scheme
220 function by writing its name preceded by @code{\}, followed by its
221 arguments.  Once an optional argument predicate does not match an
222 argument, LilyPond skips this and all following optional arguments,
223 replacing them with their specified default, and @q{backs up} the
224 argument that did not match to the place of the next mandatory argument.
225 Since the backed up argument needs to go somewhere, optional arguments
226 are not actually considered optional unless followed by a mandatory
227 argument.
228
229 There is one exception: if you write @code{\default} in the place of an
230 optional argument, this and all following optional arguments are skipped
231 and replaced by their default.  This works even when no mandatory
232 argument follows since @code{\default} does not need to get backed up.
233 The @code{mark} and @code{key} commands make use of that trick to
234 provide their default behavior when just followed by @code{\default}.
235
236 Apart from places where a Scheme value is required, there are a few
237 places where @code{#} expressions are currently accepted and evaluated
238 for their side effects but otherwise ignored.  Mostly those are the
239 places where an assignment would be acceptable as well.
240
241 Since it is a bad idea to return values that can be misinterpreted in
242 some context, you should use normal scheme functions only for those
243 cases where you always return a useful value, and use void scheme
244 functions (@pxref{Void scheme functions}) otherwise.
245
246 @node Void scheme functions
247 @subsection Void scheme functions
248 @funindex define-void-function
249 @funindex \void
250
251 Sometimes a procedure is executed in order to perform an action rather
252 than return a value.  Some programming languages (like C and Scheme) use
253 functions for either concept and just discard the returned value
254 (usually by allowing any expression to act as statement, ignoring the
255 result).  This is clever but error-prone: most C compilers nowadays
256 offer warnings for various non-``void'' expressions being discarded.
257 For many functions executing an action, the Scheme standards declare the
258 return value to be unspecified.  LilyPond's Scheme interpreter Guile has
259 a unique value @code{*unspecified*} that it usually (such when using
260 @code{set!} directly on a variable) but unfortunately not consistently
261 returns in such cases.
262
263 Defining a LilyPond function with @code{define-void-function} makes
264 sure that this special value (the only value satisfying the predicate
265 @code{void?}) will be returned.
266
267 @example
268 noPointAndClick =
269 #(define-void-function
270      (parser location)
271      ()
272    (ly:set-option 'point-and-click #f))
273 ...
274 \noPointAndClick   % disable point and click
275 @end example
276
277 If you want to evaluate an expression only for its side-effect and
278 don't want any value it may return interpreted, you can do so by
279 prefixing it with @code{\void}:
280
281 @example
282 \void #(hashq-set! some-table some-key some-value)
283 @end example
284
285 That way, you can be sure that LilyPond will not assign meaning to the
286 returned value regardless of where it encounters it.  This will also
287 work for music functions such as @code{\displayMusic}.
288
289 @node Music functions
290 @section Music functions
291
292 @cindex music functions
293
294 @emph{Music functions} are Scheme procedures that can create music
295 expressions automatically, and can be used to greatly simplify the
296 input file.
297
298 @menu
299 * Music function definitions::
300 * Music function usage::
301 * Simple substitution functions::
302 * Intermediate substitution functions::
303 * Mathematics in functions::
304 * Functions without arguments::
305 * Void music functions::
306 @end menu
307
308
309 @node Music function definitions
310 @subsection Music function definitions
311 @cindex defining music functions
312 @funindex define-music-function
313
314 The general form for defining music functions is:
315
316 @example
317 function =
318 #(define-music-function
319      (parser location @var{arg1} @var{arg2} @dots{})
320      (@var{type1?} @var{type2?} @dots{})
321    @var{body})
322 @end example
323
324 @noindent
325 quite in analogy to @ref{Scheme function definitions}.  More often than
326 not, @var{body} will be a @ref{LilyPond code blocks, LilyPond code block}.
327
328 For a list of available type predicates, see
329 @ruser{Predefined type predicates}.
330
331 @seealso
332
333 Notation Reference:
334 @ruser{Predefined type predicates}.
335
336 Installed Files:
337 @file{lily/music-scheme.cc},
338 @file{scm/c++.scm},
339 @file{scm/lily.scm}.
340
341
342 @node Music function usage
343 @subsection Music function usage
344 Music functions may currently be used in several places.  Depending on
345 where they are used, restrictions apply in order to be able to parse
346 them unambiguously.  The result a music function returns must be
347 compatible with the context in which it is called.
348
349 @itemize
350 @item
351 At top level in a music expression.  No restriction apply here.
352
353 @item
354 As a post-event, explicitly started with a direction indicator (one of
355 @code{-}, @code{^}, @w{and @code{_}}).  Note that returning a post-event
356 will be acceptable for music functions called as normal music, leading
357 to a result roughly equivalent to
358 @example
359 s 1*0-\fun
360 @end example
361
362 In this case, you can't use an @emph{open} music expression as the last
363 argument, one that would end with a music expression able to accept
364 additional postevents.
365
366 @item
367 As a chord constituent.  The returned expression must be of
368 @code{rhythmic-event} type, most likely a @code{NoteEvent}.
369 @end itemize
370
371 @noindent
372 The special rules for trailing arguments make it possible to write
373 polymorphic functions like @code{\tweak} that can be applied to
374 different constructs.
375
376 @node Simple substitution functions
377 @subsection Simple substitution functions
378
379 Simple substitution functions are music functions whose output
380 music expression is written in LilyPond format and contains
381 function arguments in the output expression.  They are described
382 in @ruser{Substitution function examples}.
383
384
385 @node Intermediate substitution functions
386 @subsection Intermediate substitution functions
387
388 Intermediate substitution functions involve a mix of Scheme code
389 and LilyPond code in the music expression to be returned.
390
391 Some @code{\override} commands require an argument consisting of
392 a pair of numbers (called a @emph{cons cell} in Scheme).
393
394 The pair can be directly passed into the music function,
395 using a @code{pair?} variable:
396
397 @example
398 manualBeam =
399 #(define-music-function
400      (parser location beg-end)
401      (pair?)
402    #@{
403      \once \override Beam.positions = #beg-end
404    #@})
405
406 \relative c' @{
407   \manualBeam #'(3 . 6) c8 d e f
408 @}
409 @end example
410
411 Alternatively, the numbers making up the pair can be
412 passed as separate arguments, and the Scheme code
413 used to create the pair can be included in the
414 music expression:
415
416 @lilypond[quote,verbatim,ragged-right]
417 manualBeam =
418 #(define-music-function
419      (parser location beg end)
420      (number? number?)
421    #{
422      \once \override Beam.positions = #(cons beg end)
423    #})
424
425 \relative c' {
426   \manualBeam #3 #6 c8 d e f
427 }
428 @end lilypond
429
430 @funindex \temporary
431 @cindex temporary overrides
432 @cindex overrides, temporary
433 @cindex properties, popping previous value
434
435 Properties are maintained conceptually using one stack per property
436 per grob per context.  Music functions may need to override one or
437 several properties for the duration of the function, restoring them
438 to their previous value before exiting.  However, normal overrides
439 pop and discard the top of the current property stack before
440 pushing to it, so the previous value of the property is lost when it
441 is overridden.  When the previous value must be preserved, prefix the
442 @code{\override} command with @code{\temporary}, like this:
443
444 @example
445 \temporary \override @dots{}
446 @end example
447
448 The use of @code{\temporary} causes the (usually set) @code{pop-first}
449 property in the override to be cleared, so the previous value is not
450 popped off the property stack before pushing the new value onto it.
451 When a subsequent @code{\revert} pops off the temporarily overriden
452 value, the previous value will re-emerge.
453
454 In other words, calling @code{\temporary \override} and @code{\revert}
455 in succession on the same property will have a net effect of zero.
456 Similarly, pairing @code{\temporary} and @code{\undo} on the same
457 music containing overrides will have a net effect of zero.
458
459 Here is an example of a music function which makes use of this.
460 The use of @code{\temporary} ensures the values of the
461 @code{cross-staff} and @code{style} properties are restored on exit
462 to whatever values they had when the @code{cross-staff} function was
463 called.  Without @code{\temporary} the default values would have been
464 set on exit.
465
466 @example
467 crossStaff =
468 #(define-music-function (parser location notes) (ly:music?)
469   (_i "Create cross-staff stems")
470   #@{
471   \temporary \override Stem.cross-staff = #cross-staff-connect
472   \temporary \override Flag.style = #'no-flag
473   #notes
474   \revert Stem.cross-staff
475   \revert Flag.style
476 #@})
477 @end example
478
479
480 @node Mathematics in functions
481 @subsection Mathematics in functions
482
483 Music functions can involve Scheme programming in
484 addition to simple substitution,
485
486 @lilypond[quote,verbatim,ragged-right]
487 AltOn =
488 #(define-music-function
489      (parser location mag)
490      (number?)
491    #{
492      \override Stem.length = #(* 7.0 mag)
493      \override NoteHead.font-size =
494        #(inexact->exact (* (/ 6.0 (log 2.0)) (log mag)))
495    #})
496
497 AltOff = {
498   \revert Stem.length
499   \revert NoteHead.font-size
500 }
501
502 \relative c' {
503   c2 \AltOn #0.5 c4 c
504   \AltOn #1.5 c c \AltOff c2
505 }
506 @end lilypond
507
508 @noindent
509 This example may be rewritten to pass in music expressions,
510
511 @lilypond[quote,verbatim,ragged-right]
512 withAlt =
513 #(define-music-function
514      (parser location mag music)
515      (number? ly:music?)
516    #{
517      \override Stem.length = #(* 7.0 mag)
518      \override NoteHead.font-size =
519        #(inexact->exact (* (/ 6.0 (log 2.0)) (log mag)))
520      #music
521      \revert Stem.length
522      \revert NoteHead.font-size
523    #})
524
525 \relative c' {
526   c2 \withAlt #0.5 { c4 c }
527   \withAlt #1.5 { c c } c2
528 }
529 @end lilypond
530
531
532 @node Functions without arguments
533 @subsection Functions without arguments
534
535 In most cases a function without arguments should be written
536 with a variable,
537
538 @example
539 dolce = \markup@{ \italic \bold dolce @}
540 @end example
541
542 However, in rare cases it may be useful to create a music function
543 without arguments,
544
545 @example
546 displayBarNum =
547 #(define-music-function
548      (parser location)
549      ()
550    (if (eq? #t (ly:get-option 'display-bar-numbers))
551        #@{ \once \override Score.BarNumber.break-visibility = ##f #@}
552        #@{#@}))
553 @end example
554
555 To actually display bar numbers where this function is called,
556 invoke @command{lilypond} with
557
558 @example
559 lilypond -d display-bar-numbers FILENAME.ly
560 @end example
561
562
563 @node Void music functions
564 @subsection Void music functions
565
566 A music function must return a music expression.  If you want to
567 execute a function only for its side effect, you should use
568 @code{define-void-function}.  But there may be cases where you
569 sometimes want to produce a music expression, and sometimes not (like
570 in the previous example).  Returning a @code{void} music expression
571 via @code{#@{ #@}} will achieve that.
572
573 @node Event functions
574 @section Event functions
575 @funindex define-event-function
576 @cindex event functions
577
578 To use a music function in the place of an event, you need to write a
579 direction indicator before it.  But sometimes, this does not quite match
580 the syntax of constructs you want to replace.  For example, if you want
581 to write dynamics commands, those are usually attached without direction
582 indicator, like @code{c'\pp}.  Here is a way to write arbitrary
583 dynamics:
584 @lilypond[quote,verbatim,ragged-right]
585 dyn=#(define-event-function (parser location arg) (markup?)
586          (make-dynamic-script arg))
587 \relative c' { c\dyn pfsss }
588 @end lilypond
589 You could do the same using a music function, but then you always would
590 have to write a direction indicator before calling it, like
591 @code{@w{c-\dyn pfsss}}.
592
593
594 @node Markup functions
595 @section Markup functions
596
597 Markups are implemented as special Scheme functions which produce a
598 @code{Stencil} object given a number of arguments.
599
600 @menu
601 * Markup construction in Scheme::
602 * How markups work internally::
603 * New markup command definition::
604 * New markup list command definition::
605 @end menu
606
607
608 @node Markup construction in Scheme
609 @subsection Markup construction in Scheme
610
611 @cindex defining markup commands
612
613 The @code{markup} macro builds markup expressions in Scheme while
614 providing a LilyPond-like syntax.  For example,
615 @example
616 (markup #:column (#:line (#:bold #:italic "hello" #:raise 0.4 "world")
617                   #:larger #:line ("foo" "bar" "baz")))
618 @end example
619
620 @noindent
621 is equivalent to:
622 @example
623 #@{ \markup \column @{ \line @{ \bold \italic "hello" \raise #0.4 "world" @}
624                   \larger \line @{ foo bar baz @} @} #@}
625 @end example
626
627 @noindent
628 This example demonstrates the main translation rules between regular
629 LilyPond markup syntax and Scheme markup syntax.  Using @code{#@{
630 @dots{} #@}} for entering in LilyPond syntax will often be most
631 convenient, but we explain how to use the @code{markup} macro to get a
632 Scheme-only solution.
633
634 @quotation
635 @multitable @columnfractions .3 .3
636 @item @b{LilyPond} @tab @b{Scheme}
637 @item @code{\markup markup1} @tab @code{(markup markup1)}
638 @item @code{\markup @{ markup1 markup2 ... @}} @tab
639         @code{(markup markup1 markup2 ... )}
640 @item @code{\markup-command} @tab @code{#:markup-command}
641 @item @code{\variable} @tab @code{variable}
642 @item @code{\center-column @{ ... @}} @tab @code{#:center-column ( ... )}
643 @item @code{string} @tab @code{"string"}
644 @item @code{#scheme-arg} @tab @code{scheme-arg}
645 @end multitable
646 @end quotation
647
648 The whole Scheme language is accessible inside the
649 @code{markup} macro.  For example, You may use function calls inside
650 @code{markup} in order to manipulate character strings.  This is
651 useful when defining new markup commands (see
652 @ref{New markup command definition}).
653
654
655 @knownissues
656
657 The markup-list argument of commands such as @code{#:line},
658 @code{#:center}, and @code{#:column} cannot be a variable or
659 the result of a function call.
660
661 @lisp
662 (markup #:line (function-that-returns-markups))
663 @end lisp
664
665 @noindent
666 is invalid.  One should use the @code{make-line-markup},
667 @code{make-center-markup}, or @code{make-column-markup} functions
668 instead,
669
670 @lisp
671 (markup (make-line-markup (function-that-returns-markups)))
672 @end lisp
673
674
675 @node How markups work internally
676 @subsection How markups work internally
677
678 In a markup like
679
680 @example
681 \raise #0.5 "text example"
682 @end example
683
684 @noindent
685 @code{\raise} is actually represented by the @code{raise-markup}
686 function.  The markup expression is stored as
687
688 @example
689 (list raise-markup 0.5 (list simple-markup "text example"))
690 @end example
691
692 When the markup is converted to printable objects (Stencils), the
693 @code{raise-markup} function is called as
694
695 @example
696 (apply raise-markup
697        @var{\layout object}
698        @var{list of property alists}
699        0.5
700        @var{the "text example" markup})
701 @end example
702
703 The @code{raise-markup} function first creates the stencil for the
704 @code{text example} string, and then it raises that Stencil by 0.5
705 staff space.  This is a rather simple example; more complex examples
706 are in the rest
707 of this section, and in @file{scm/define-markup-commands.scm}.
708
709
710 @node New markup command definition
711 @subsection New markup command definition
712
713 This section discusses the definition of new markup commands.
714
715 @menu
716 * Markup command definition syntax::
717 * On properties::
718 * A complete example::
719 * Adapting builtin commands::
720 @end menu
721
722 @node Markup command definition syntax
723 @unnumberedsubsubsec Markup command definition syntax
724
725 New markup commands can be defined using the
726 @code{define-markup-command} Scheme macro, at top-level.
727
728 @lisp
729 (define-markup-command (@var{command-name} @var{layout} @var{props} @var{arg1} @var{arg2} ...)
730     (@var{arg1-type?} @var{arg2-type?} ...)
731     [ #:properties ((@var{property1} @var{default-value1})
732                     ...) ]
733   ..command body..)
734 @end lisp
735
736 The arguments are
737
738 @table @code
739 @item @var{command-name}
740 the markup command name
741 @item layout
742 the @q{layout} definition.
743 @item props
744 a list of associative lists, containing all active properties.
745 @item @var{argi}
746 @var{i}th command argument
747 @item @var{argi-type?}
748 a type predicate for the i@var{th} argument
749 @end table
750
751 If the command uses properties from the @code{props} arguments,
752 the @code{#:properties} keyword can be used to specify which
753 properties are used along with their default values.
754
755 Arguments are distinguished according to their type:
756 @itemize
757 @item a markup, corresponding to type predicate @code{markup?};
758 @item a list of markups, corresponding to type predicate
759 @code{markup-list?};
760 @item any other scheme object, corresponding to type predicates such as
761 @code{list?}, @code{number?}, @code{boolean?}, etc.
762 @end itemize
763
764 There is no limitation on the order of arguments (after the
765 standard @code{layout} and @code{props} arguments).  However,
766 markup functions taking a markup as their last argument are
767 somewhat special as you can apply them to a markup list, and the
768 result is a markup list where the markup function (with the
769 specified leading arguments) has been applied to every element of
770 the original markup list.
771
772 Since replicating the leading arguments for applying a markup
773 function to a markup list is cheap mostly for Scheme arguments,
774 you avoid performance pitfalls by just using Scheme arguments for
775 the leading arguments of markup functions that take a markup as
776 their last argument.
777
778 @node On properties
779 @unnumberedsubsubsec On properties
780
781 The @code{layout} and @code{props} arguments of markup commands bring a
782 context for the markup interpretation: font size, line width, etc.
783
784 The @code{layout} argument allows access to properties defined in
785 @code{paper} blocks, using the @code{ly:output-def-lookup} function.
786 For instance, the line width (the same as the one used in scores) is
787 read using:
788
789 @example
790 (ly:output-def-lookup layout 'line-width)
791 @end example
792
793 The @code{props} argument makes some properties accessible to markup
794 commands.  For instance, when a book title markup is interpreted, all
795 the variables defined in the @code{\header} block are automatically
796 added to @code{props}, so that the book title markup can access the book
797 title, composer, etc.  It is also a way to configure the behaviour of a
798 markup command: for example, when a command uses font size during
799 processing, the font size is read from @code{props} rather than having a
800 @code{font-size} argument.  The caller of a markup command may change
801 the value of the font size property in order to change the behaviour.
802 Use the @code{#:properties} keyword of @code{define-markup-command} to
803 specify which properties shall be read from the @code{props} arguments.
804
805 The example in next section illustrates how to access and override
806 properties in a markup command.
807
808 @node A complete example
809 @unnumberedsubsubsec A complete example
810
811 The following example defines a markup command to draw a double box
812 around a piece of text.
813
814 Firstly, we need to build an approximative result using markups.
815 Consulting the @ruser{Text markup commands} shows us the @code{\box}
816 command is useful:
817
818 @lilypond[quote,verbatim,ragged-right]
819 \markup \box \box HELLO
820 @end lilypond
821
822 Now, we consider that more padding between the text and the boxes is
823 preferable.  According to the @code{\box} documentation, this command
824 uses a @code{box-padding} property, which defaults to 0.2.  The
825 documentation also mentions how to override it:
826
827 @lilypond[quote,verbatim,ragged-right]
828 \markup \box \override #'(box-padding . 0.6) \box A
829 @end lilypond
830
831 Then, the padding between the two boxes is considered too small, so we
832 override it too:
833
834 @lilypond[quote,verbatim,ragged-right]
835 \markup \override #'(box-padding . 0.4) \box
836      \override #'(box-padding . 0.6) \box A
837 @end lilypond
838
839 Repeating this lengthy markup would be painful.  This is where a markup
840 command is needed.  Thus, we write a @code{double-box} markup command,
841 taking one argument (the text).  This draws the two boxes, with some
842 padding.
843
844 @lisp
845 #(define-markup-command (double-box layout props text) (markup?)
846   "Draw a double box around text."
847   (interpret-markup layout props
848     #@{\markup \override #'(box-padding . 0.4) \box
849             \override #'(box-padding . 0.6) \box @{ #text @}#@}))
850 @end lisp
851
852 or, equivalently 
853
854 @lisp
855 #(define-markup-command (double-box layout props text) (markup?)
856   "Draw a double box around text."
857   (interpret-markup layout props
858     (markup #:override '(box-padding . 0.4) #:box
859             #:override '(box-padding . 0.6) #:box text)))
860 @end lisp
861
862 @code{text} is the name of the command argument, and @code{markup?} its
863 type: it identifies it as a markup.  The @code{interpret-markup}
864 function is used in most of markup commands: it builds a stencil, using
865 @code{layout}, @code{props}, and a markup.  In the second case, this
866 markup is built using the @code{markup} scheme macro, see @ref{Markup
867 construction in Scheme}.  The transformation from @code{\markup}
868 expression to scheme markup expression is straight-forward.
869
870 The new command can be used as follow:
871
872 @example
873 \markup \double-box A
874 @end example
875
876 It would be nice to make the @code{double-box} command customizable:
877 here, the @code{box-padding} values are hard coded, and cannot be
878 changed by the user.  Also, it would be better to distinguish the
879 padding between the two boxes, from the padding between the inner box
880 and the text.  So we will introduce a new property,
881 @code{inter-box-padding}, for the padding between the two boxes.  The
882 @code{box-padding} will be used for the inner padding.  The new code is
883 now as follows:
884
885 @lisp
886 #(define-markup-command (double-box layout props text) (markup?)
887   #:properties ((inter-box-padding 0.4)
888                 (box-padding 0.6))
889   "Draw a double box around text."
890   (interpret-markup layout props
891     #@{\markup \override #`(box-padding . ,inter-box-padding) \box
892                \override #`(box-padding . ,box-padding) \box
893                @{ #text @} #@}))
894 @end lisp
895
896 Again, the equivalent version using the markup macro would be:
897
898 @lisp
899 #(define-markup-command (double-box layout props text) (markup?)
900   #:properties ((inter-box-padding 0.4)
901                 (box-padding 0.6))
902   "Draw a double box around text."
903   (interpret-markup layout props
904     (markup #:override `(box-padding . ,inter-box-padding) #:box
905             #:override `(box-padding . ,box-padding) #:box text)))
906 @end lisp
907
908 Here, the @code{#:properties} keyword is used so that the
909 @code{inter-box-padding} and @code{box-padding} properties are read from
910 the @code{props} argument, and default values are given to them if the
911 properties are not defined.
912
913 Then, these values are used to override the @code{box-padding}
914 properties used by the two @code{\box} commands.  Note the backquote and
915 the comma in the @code{\override} argument: they allow you to introduce
916 a variable value into a literal expression.
917
918 Now, the command can be used in a markup, and the boxes padding be
919 customized:
920
921 @lilypond[quote,verbatim,ragged-right]
922 #(define-markup-command (double-box layout props text) (markup?)
923   #:properties ((inter-box-padding 0.4)
924                 (box-padding 0.6))
925   "Draw a double box around text."
926   (interpret-markup layout props
927     #{\markup \override #`(box-padding . ,inter-box-padding) \box
928               \override #`(box-padding . ,box-padding) \box
929               { #text } #}))
930
931 \markup \double-box A
932 \markup \override #'(inter-box-padding . 0.8) \double-box A
933 \markup \override #'(box-padding . 1.0) \double-box A
934 @end lilypond
935
936 @node Adapting builtin commands
937 @unnumberedsubsubsec Adapting builtin commands
938
939 A good way to start writing a new markup command, is to take example on
940 a builtin one.  Most of the markup commands provided with LilyPond can be
941 found in file @file{scm/define-markup-commands.scm}.
942
943 For instance, we would like to adapt the @code{\draw-line} command, to
944 draw a double line instead.  The @code{\draw-line} command is defined as
945 follow (documentation stripped):
946
947 @lisp
948 (define-markup-command (draw-line layout props dest)
949   (number-pair?)
950   #:category graphic
951   #:properties ((thickness 1))
952   "..documentation.."
953   (let ((th (* (ly:output-def-lookup layout 'line-thickness)
954                thickness))
955         (x (car dest))
956         (y (cdr dest)))
957     (make-line-stencil th 0 0 x y)))
958 @end lisp
959
960 To define a new command based on an existing one, copy the definition,
961 and change the command name.  The @code{#:category} keyword can be
962 safely removed, as it is only used for generating LilyPond
963 documentation, and is of no use for user-defined markup commands.
964
965 @lisp
966 (define-markup-command (draw-double-line layout props dest)
967   (number-pair?)
968   #:properties ((thickness 1))
969   "..documentation.."
970   (let ((th (* (ly:output-def-lookup layout 'line-thickness)
971                thickness))
972         (x (car dest))
973         (y (cdr dest)))
974     (make-line-stencil th 0 0 x y)))
975 @end lisp
976
977 Then, a property for setting the gap between two lines is added, called
978 @code{line-gap}, defaulting e.g. to 0.6:
979
980 @lisp
981 (define-markup-command (draw-double-line layout props dest)
982   (number-pair?)
983   #:properties ((thickness 1)
984                 (line-gap 0.6))
985   "..documentation.."
986   ...
987 @end lisp
988
989 Finally, the code for drawing two lines is added.  Two calls to
990 @code{make-line-stencil} are used to draw the lines, and the resulting
991 stencils are combined using @code{ly:stencil-add}:
992
993 @lilypond[quote,verbatim,ragged-right]
994 #(define-markup-command (my-draw-line layout props dest)
995   (number-pair?)
996   #:properties ((thickness 1)
997                 (line-gap 0.6))
998   "..documentation.."
999   (let* ((th (* (ly:output-def-lookup layout 'line-thickness)
1000                 thickness))
1001          (dx (car dest))
1002          (dy (cdr dest))
1003          (w (/ line-gap 2.0))
1004          (x (cond ((= dx 0) w)
1005                   ((= dy 0) 0)
1006                   (else (/ w (sqrt (+ 1 (* (/ dx dy) (/ dx dy))))))))
1007          (y (* (if (< (* dx dy) 0) 1 -1)
1008                (cond ((= dy 0) w)
1009                      ((= dx 0) 0)
1010                      (else (/ w (sqrt (+ 1 (* (/ dy dx) (/ dy dx))))))))))
1011      (ly:stencil-add (make-line-stencil th x y (+ dx x) (+ dy y))
1012                      (make-line-stencil th (- x) (- y) (- dx x) (- dy y)))))
1013
1014 \markup \my-draw-line #'(4 . 3)
1015 \markup \override #'(line-gap . 1.2) \my-draw-line #'(4 . 3)
1016 @end lilypond
1017
1018
1019 @node New markup list command definition
1020 @subsection New markup list command definition
1021 Markup list commands are defined with the
1022 @code{define-markup-list-command} Scheme macro, which is similar to the
1023 @code{define-markup-command} macro described in
1024 @ref{New markup command definition}, except that where the latter returns
1025 a single stencil, the former returns a list of stencils.
1026
1027 In the following example, a @code{\paragraph} markup list command is
1028 defined, which returns a list of justified lines, the first one being
1029 indented.  The indent width is taken from the @code{props} argument.
1030
1031 @example
1032 #(define-markup-list-command (paragraph layout props args) (markup-list?)
1033    #:properties ((par-indent 2))
1034    (interpret-markup-list layout props
1035      #@{\markuplist \justified-lines @{ \hspace #par-indent #args @} #@}))
1036 @end example
1037
1038
1039 The version using just Scheme is more complex:
1040 @example
1041 #(define-markup-list-command (paragraph layout props args) (markup-list?)
1042    #:properties ((par-indent 2))
1043    (interpret-markup-list layout props
1044      (make-justified-lines-markup-list (cons (make-hspace-markup par-indent)
1045                                              args))))
1046 @end example
1047
1048 Besides the usual @code{layout} and @code{props} arguments, the
1049 @code{paragraph} markup list command takes a markup list argument, named
1050 @code{args}.  The predicate for markup lists is @code{markup-list?}.
1051
1052 First, the function gets the indent width, a property here named
1053 @code{par-indent}, from the property list @code{props}.  If the
1054 property is not found, the default value is @code{2}.  Then, a
1055 list of justified lines is made using the built-in markup list command
1056 @code{\justified-lines}, which is related to the
1057 @code{make-justified-lines-markup-list} function.  A
1058 horizontal space is added at the beginning using @code{\hspace} (or the
1059 @code{make-hspace-markup} function).  Finally, the markup list is
1060 interpreted using the @code{interpret-markup-list} function.
1061
1062 This new markup list command can be used as follows:
1063 @example
1064 \markuplist @{
1065   \paragraph @{
1066     The art of music typography is called \italic @{(plate) engraving.@}
1067     The term derives from the traditional process of music printing.
1068     Just a few decades ago, sheet music was made by cutting and stamping
1069     the music into a zinc or pewter plate in mirror image.
1070   @}
1071   \override-lines #'(par-indent . 4) \paragraph @{
1072     The plate would be inked, the depressions caused by the cutting
1073     and stamping would hold ink.  An image was formed by pressing paper
1074     to the plate.  The stamping and cutting was completely done by
1075     hand.
1076   @}
1077 @}
1078 @end example
1079
1080 @node Contexts for programmers
1081 @section Contexts for programmers
1082
1083 @menu
1084 * Context evaluation::
1085 * Running a function on all layout objects::
1086 @end menu
1087
1088 @node Context evaluation
1089 @subsection Context evaluation
1090
1091 @cindex calling code during interpreting
1092 @funindex \applyContext
1093
1094 Contexts can be modified during interpretation with Scheme code.  The
1095 syntax for this is
1096 @example
1097 \applyContext @var{function}
1098 @end example
1099
1100 @code{@var{function}} should be a Scheme function that takes a
1101 single argument: the context in which the @code{\applyContext}
1102 command is being called.  The following code will print the
1103 current bar number on the standard output during the compile:
1104
1105 @example
1106 \applyContext
1107   #(lambda (x)
1108     (format #t "\nWe were called in barnumber ~a.\n"
1109      (ly:context-property x 'currentBarNumber)))
1110 @end example
1111
1112
1113
1114 @node Running a function on all layout objects
1115 @subsection Running a function on all layout objects
1116
1117
1118 @cindex calling code on layout objects
1119 @funindex \applyOutput
1120
1121 The most versatile way of tuning an object is @code{\applyOutput} which
1122 works by inserting an event into the specified context
1123 (@rinternals{ApplyOutputEvent}).  Its syntax is
1124 @example
1125 \applyOutput @var{Context} @var{proc}
1126 @end example
1127
1128 @noindent
1129 where @code{@var{proc}} is a Scheme function, taking three arguments.
1130
1131 When interpreted, the function @code{@var{proc}} is called for
1132 every layout object found in the context @code{@var{Context}} at
1133 the current time step, with the following arguments:
1134 @itemize
1135 @item the layout object itself,
1136 @item the context where the layout object was created, and
1137 @item the context where @code{\applyOutput} is processed.
1138 @end itemize
1139
1140
1141 In addition, the cause of the layout object, i.e., the music
1142 expression or object that was responsible for creating it, is in the
1143 object property @code{cause}.  For example, for a note head, this is a
1144 @rinternals{NoteHead} event, and for a stem object,
1145 this is a @rinternals{Stem} object.
1146
1147 Here is a function to use for @code{\applyOutput}; it blanks
1148 note-heads on the center-line and next to it:
1149
1150 @lilypond[quote,verbatim,ragged-right]
1151 #(define (blanker grob grob-origin context)
1152    (if (and (memq 'note-head-interface (ly:grob-interfaces grob))
1153             (< (abs (ly:grob-property grob 'staff-position)) 2))
1154        (set! (ly:grob-property grob 'transparent) #t)))
1155
1156 \relative c' {
1157   a'4 e8 <<\applyOutput #'Voice #blanker a c d>> b2
1158 }
1159 @end lilypond
1160
1161 To have @var{function} interpreted at the @code{Score} or @code{Staff}
1162 level use these forms
1163
1164 @example
1165 \applyOutput #'Score #@var{function}
1166 \applyOutput #'Staff #@var{function}
1167 @end example
1168
1169
1170 @node Callback functions
1171 @section Callback functions
1172
1173 Properties (like @code{thickness}, @code{direction}, etc.) can be
1174 set at fixed values with @code{\override}, e.g.
1175
1176 @example
1177 \override Stem.thickness = #2.0
1178 @end example
1179
1180 Properties can also be set to a Scheme procedure,
1181
1182 @lilypond[fragment,verbatim,quote,relative=2]
1183 \override Stem.thickness = #(lambda (grob)
1184     (if (= UP (ly:grob-property grob 'direction))
1185         2.0
1186         7.0))
1187 c b a g b a g b
1188 @end lilypond
1189
1190 @noindent
1191 In this case, the procedure is executed as soon as the value of the
1192 property is requested during the formatting process.
1193
1194 Most of the typesetting engine is driven by such callbacks.
1195 Properties that typically use callbacks include
1196
1197 @table @code
1198 @item stencil
1199   The printing routine, that constructs a drawing for the symbol
1200 @item X-offset
1201   The routine that sets the horizontal position
1202 @item X-extent
1203   The routine that computes the width of an object
1204 @end table
1205
1206 The procedure always takes a single argument, being the grob.
1207
1208 If routines with multiple arguments must be called, the current grob
1209 can be inserted with a grob closure.  Here is a setting from
1210 @code{AccidentalSuggestion},
1211
1212 @example
1213 `(X-offset .
1214   ,(ly:make-simple-closure
1215     `(,+
1216         ,(ly:make-simple-closure
1217            (list ly:self-alignment-interface::centered-on-x-parent))
1218       ,(ly:make-simple-closure
1219            (list ly:self-alignment-interface::x-aligned-on-self)))))
1220 @end example
1221
1222 @noindent
1223 In this example, both @code{ly:self-alignment-interface::x-aligned-on-self} and
1224 @code{ly:self-alignment-interface::centered-on-x-parent} are called
1225 with the grob as argument.  The results are added with the @code{+}
1226 function.  To ensure that this addition is properly executed, the whole
1227 thing is enclosed in @code{ly:make-simple-closure}.
1228
1229 In fact, using a single procedure as property value is equivalent to
1230
1231 @example
1232 (ly:make-simple-closure (ly:make-simple-closure (list @var{proc})))
1233 @end example
1234
1235 @noindent
1236 The inner @code{ly:make-simple-closure} supplies the grob as argument
1237 to @var{proc}, the outer ensures that result of the function is
1238 returned, rather than the @code{simple-closure} object.
1239
1240 From within a callback, the easiest method for evaluating a markup is
1241 to use grob-interpret-markup.  For example:
1242
1243 @example
1244 my-callback = #(lambda (grob)
1245                  (grob-interpret-markup grob (markup "foo")))
1246 @end example
1247
1248 @node Inline Scheme code
1249 @section Inline Scheme code
1250
1251 TODO: the example for this section is ill-chosen since
1252 @example
1253 F = -\tweak font-size #-3 -\flageolet
1254 @end example
1255 (note the @samp{-} marking it as a post event) will actually work fine
1256 for the stated purpose.  Until this section gets a rewrite, let's
1257 pretend we don't know.
1258
1259 The main disadvantage of @code{\tweak} is its syntactical
1260 inflexibility.  For example, the following produces a syntax error.
1261
1262 @example
1263 F = \tweak font-size #-3 -\flageolet
1264
1265 \relative c'' @{
1266   c4^\F c4_\F
1267 @}
1268 @end example
1269
1270 @noindent
1271 Using Scheme, this problem can be avoided.  The route to the
1272 result is given in @ref{Adding articulation to notes (example)},
1273 especially how to use @code{\displayMusic} as a helping guide.
1274
1275 @example
1276 F = #(let ((m (make-music 'ArticulationEvent
1277                           'articulation-type "flageolet")))
1278        (set! (ly:music-property m 'tweaks)
1279              (acons 'font-size -3
1280                     (ly:music-property m 'tweaks)))
1281        m)
1282
1283 \relative c'' @{
1284   c4^\F c4_\F
1285 @}
1286 @end example
1287
1288 @noindent
1289 Here, the @code{tweaks} properties of the flageolet object
1290 @code{m} (created with @code{make-music}) are extracted with
1291 @code{ly:music-property}, a new key-value pair to change the
1292 font size is prepended to the property list with the
1293 @code{acons} Scheme function, and the result is finally
1294 written back with @code{set!}.  The last element of the
1295 @code{let} block is the return value, @code{m} itself.
1296
1297
1298
1299 @node Difficult tweaks
1300 @section Difficult tweaks
1301
1302 There are a few classes of difficult adjustments.
1303
1304 @itemize
1305
1306
1307 @item
1308 One type of difficult adjustment involves the appearance of
1309 spanner objects, such as slurs and ties.  Usually, only one
1310 spanner object is created at a time, and it can be adjusted with
1311 the normal mechanism.  However, occasionally a spanner crosses a
1312 line break.  When this happens, the object is cloned.  A separate
1313 object is created for every system in which the spanner appears.
1314 The new objects are clones of the original object and inherit all
1315 properties, including @code{\override}s.
1316
1317
1318 In other words, an @code{\override} always affects all pieces of a
1319 broken spanner.  To change only one part of a spanner at a line break,
1320 it is necessary to hook into the formatting process.  The
1321 @code{after-line-breaking} callback contains the Scheme procedure that
1322 is called after the line breaks have been determined and layout
1323 objects have been split over different systems.
1324
1325 In the following example, we define a procedure
1326 @code{my-callback}.  This procedure
1327
1328 @itemize
1329 @item
1330 determines if the spanner has been split across line breaks
1331 @item
1332 if yes, retrieves all the split objects
1333 @item
1334 checks if this grob is the last of the split objects
1335 @item
1336 if yes, it sets @code{extra-offset}.
1337 @end itemize
1338
1339 This procedure is installed into @rinternals{Tie}, so the last part
1340 of the broken tie is repositioned.
1341
1342 @lilypond[quote,verbatim,ragged-right]
1343 #(define (my-callback grob)
1344    (let* (
1345           ;; have we been split?
1346           (orig (ly:grob-original grob))
1347
1348           ;; if yes, get the split pieces (our siblings)
1349           (siblings (if (ly:grob? orig)
1350                         (ly:spanner-broken-into orig)
1351                         '())))
1352
1353      (if (and (>= (length siblings) 2)
1354               (eq? (car (last-pair siblings)) grob))
1355          (ly:grob-set-property! grob 'extra-offset '(-2 . 5)))))
1356
1357 \relative c'' {
1358   \override Tie.after-line-breaking =
1359   #my-callback
1360   c1 ~ \break
1361   c2 ~ c
1362 }
1363 @end lilypond
1364
1365 @noindent
1366 When applying this trick, the new @code{after-line-breaking} callback
1367 should also call the old one, if such a default exists.  For example,
1368 if using this with @code{Hairpin}, @code{ly:spanner::kill-zero-spanned-time}
1369 should also be called.
1370
1371
1372 @item
1373 Some objects cannot be changed with @code{\override} for
1374 technical reasons.  Examples of those are @code{NonMusicalPaperColumn}
1375 and @code{PaperColumn}.  They can be changed with the
1376 @code{\overrideProperty} function, which works similar to @code{\once
1377 \override}, but uses a different syntax.
1378
1379 @example
1380 \overrideProperty
1381 Score.NonMusicalPaperColumn       % Grob name
1382   . line-break-system-details     % Property name
1383   . next-padding                  % Optional subproperty name
1384   #20                             % Value
1385 @end example
1386
1387 Note, however, that @code{\override}, applied to
1388 @code{NonMusicalPaperColumn} and @code{PaperColumn}, still works as
1389 expected within @code{\context} blocks.
1390
1391 @end itemize
1392
1393 @node LilyPond Scheme interfaces
1394 @chapter LilyPond Scheme interfaces
1395
1396 This chapter covers the various tools provided by LilyPond to help
1397 Scheme programmers get information into and out of the music streams.
1398
1399 TODO -- figure out what goes in here and how to organize it
1400