]> git.donarmstrong.com Git - lilypond.git/blob - scm/define-music-types.scm
Remove unused music type general-music
[lilypond.git] / scm / define-music-types.scm
1 ;;;; This file is part of LilyPond, the GNU music typesetter.
2 ;;;;
3 ;;;; Copyright (C) 1998--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
4 ;;;;                 Jan Nieuwenhuizen <janneke@gnu.org>
5 ;;;;
6 ;;;; LilyPond is free software: you can redistribute it and/or modify
7 ;;;; it under the terms of the GNU General Public License as published by
8 ;;;; the Free Software Foundation, either version 3 of the License, or
9 ;;;; (at your option) any later version.
10 ;;;;
11 ;;;; LilyPond is distributed in the hope that it will be useful,
12 ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 ;;;; GNU General Public License for more details.
15 ;;;;
16 ;;;; You should have received a copy of the GNU General Public License
17 ;;;; along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
18
19 ;; for define-safe-public when byte-compiling using Guile V2
20 (use-modules (scm safe-utility-defs))
21
22 ;; TODO: should link back into user manual.
23
24 (define-public music-descriptions
25   `(
26     (AbsoluteDynamicEvent
27      . ((description . "Create a dynamic mark.
28
29 Syntax: @var{note}@code{\\x}, where @code{\\x} is a dynamic mark like
30 @code{\\ppp} or @code{\\sfz}.  A complete list is in file
31 @file{ly/@/dynamic-scripts-init.ly}.")
32         (types . (post-event event dynamic-event absolute-dynamic-event))
33         ))
34
35     (AlternativeEvent
36      . ((description . "Create an alternative event.")
37         (types . (event alternative-event))
38         ))
39
40     (AnnotateOutputEvent
41      . ((description . "Print an annotation of an output element.")
42         (types . (event annotate-output-event post-event))
43         ))
44
45     (ApplyContext
46      . ((description . "Call the argument with the current context during
47 interpreting phase.")
48         (types . (apply-context))
49         (iterator-ctor . ,ly:apply-context-iterator::constructor)
50         ))
51
52     (ApplyOutputEvent
53      . ((description . "Call the argument with all current grobs during
54 interpreting phase.
55
56 Syntax: @code{\\applyOutput #'@var{context} @var{func}}
57
58 Arguments to @var{func} are 1.@tie{}the grob, 2.@tie{}the originating
59 context, and 3.@tie{}the context where @var{func} is called.")
60         (types . (event apply-output-event))
61         ))
62
63     (ArpeggioEvent
64      . ((description . "Make an arpeggio on this note.
65
66 Syntax: @w{@var{note}@code{-\\arpeggio}}")
67         (types . (post-event arpeggio-event event))
68         ))
69
70     ;; todo: use articulation-event for slur as well.
71     ;; separate non articulation scripts
72     (ArticulationEvent
73      . ((description . "Add an articulation marking to a note.
74
75 Syntax: @var{note}@code{x}@code{y}, where @code{x} is a direction\
76 \n(@code{^} for up or @code{_} for down), or LilyPond's choice\
77 \n(no direction specified), and where @code{y} is an articulation\
78 \n(such as @w{@code{-.}}, @w{@code{->}}, @code{\\tenuto}, @code{\\downbow}).
79 See the Notation Reference for details.")
80         (types . (post-event event articulation-event script-event))
81         ))
82
83     (AutoChangeMusic
84      . ((description . "Used for making voices that switch between
85 piano staves automatically.")
86         (iterator-ctor . ,ly:auto-change-iterator::constructor)
87         (start-callback . ,ly:music-wrapper::start-callback)
88         (length-callback . ,ly:music-wrapper::length-callback)
89         (types . (music-wrapper-music auto-change-instruction))
90         ))
91
92     (BarCheck
93      . ((description . "Check whether this music coincides with
94 the start of the measure.")
95         (types . (bar-check))
96         (iterator-ctor . ,ly:bar-check-iterator::constructor)
97         ))
98
99     (BassFigureEvent
100      . ((description . "Print a bass-figure text.")
101         (types . (event rhythmic-event bass-figure-event))
102         ))
103
104     (BeamEvent
105      . ((description . "Start or stop a beam.
106
107 Syntax for manual control: @code{c8-[ c c-] c8}")
108         (types . (post-event event beam-event span-event))
109         ))
110
111     (BeamForbidEvent
112      . ((description . "Specify that a note may not auto-beamed.")
113         (types . (post-event event beam-forbid-event))
114         ))
115
116     (BreakDynamicSpanEvent
117      . ((description . "End an alignment spanner for dynamics here.")
118         (types . (post-event break-span-event break-dynamic-span-event event))
119         ))
120
121     (BendAfterEvent
122      . ((description . "A drop/@/fall/@/doit jazz articulation.")
123         (types . (post-event bend-after-event event))))
124
125     (BreathingEvent
126      . ((description . "Create a @q{breath mark} or @q{comma}.
127
128 Syntax: @var{note}@code{\\breathe}")
129
130         (types . (event breathing-event))
131         (midi-length . ,breathe::midi-length)))
132
133     (ClusterNoteEvent
134      . ((description . "A note that is part of a cluster.")
135         ;; not a note-event, to ensure that Note_heads_engraver doesn't eat it.
136         (iterator-ctor . ,ly:rhythmic-music-iterator::constructor)
137         (types . (cluster-note-event melodic-event rhythmic-event event))
138         ))
139
140     (CompletizeExtenderEvent
141      . ((description . "Used internally to signal the end of a lyrics block to
142 ensure extenders are completed correctly when a @code{Lyrics} context ends
143 before its associated @code{Voice} context.")
144         (types . (completize-extender-event event))
145         ))
146
147     (ContextChange
148      . ((description . "Change staves in Piano staff.
149
150 Syntax: @code{\\change Staff = @var{new-id}}")
151         (iterator-ctor . ,ly:change-iterator::constructor)
152         (types . (translator-change-instruction))
153         ))
154
155     (ContextSpeccedMusic
156      . ((description . "Interpret the argument music within a
157 specific context.")
158         (iterator-ctor . ,ly:context-specced-music-iterator::constructor)
159         (length-callback . ,ly:music-wrapper::length-callback)
160         (start-callback . ,ly:music-wrapper::start-callback)
161         (types . (context-specification music-wrapper-music))
162         ))
163
164     (CrescendoEvent
165      . ((description . "Begin or end a crescendo.
166
167 Syntax: @var{note}@code{\\<} @dots{} @var{note}@code{\\!}
168
169 An alternative syntax is @var{note}@code{\\cr} @dots{}
170 @var{note}@code{\\endcr}.")
171         (types . (post-event span-event span-dynamic-event crescendo-event
172                              event))
173         ))
174
175     (DecrescendoEvent
176      . ((description . "Begin or end a decrescendo.
177
178 Syntax: @var{note}@code{\\>} @dots{} @var{note}@code{\\!}
179
180 An alternative syntax is @var{note}@code{\\decr} @dots{}
181 @var{note}@code{\\enddecr}.")
182         (types . (post-event span-event span-dynamic-event decrescendo-event
183                              event))
184         ))
185
186     (DoublePercentEvent
187      . ((description . "Used internally to signal double percent repeats.")
188         (types . (event double-percent-event rhythmic-event))
189         ))
190
191     (EpisemaEvent
192      . ((description . "Begin or end an episema.")
193         (types . (post-event span-event event episema-event))
194         ))
195
196     (Event
197      . ((description . "Atomic music event.")
198         (types . (event))
199         ))
200
201     (EventChord
202      . ((description . "Explicitly entered chords.
203
204 When iterated, @code{elements} are converted to events at the current
205 timestep, followed by any @code{articulations}.  Per-chord postevents
206 attached by the parser just follow any rhythmic events in
207 @code{elements} instead of utilizing @code{articulations}.
208
209 An unexpanded chord repetition @samp{q} is recognizable by having its
210 duration stored in @code{duration}.")
211         (iterator-ctor . ,ly:event-chord-iterator::constructor)
212         (length-callback . ,ly:music-sequence::event-chord-length-callback)
213         (to-relative-callback .
214                               ,ly:music-sequence::event-chord-relative-callback)
215         (types . (event-chord simultaneous-music))
216         ))
217
218     (ExtenderEvent
219      . ((description . "Extend lyrics.")
220         (types . (post-event extender-event event))
221         ))
222
223     (FingeringEvent
224      . ((description . "Specify what finger to use for this note.")
225         (types . (post-event fingering-event event))
226         ))
227
228     (FootnoteEvent
229      . ((description . "Footnote a grob.")
230         (types . (event footnote-event))
231         ))
232
233     (GlissandoEvent
234      . ((description . "Start a glissando on this note.")
235         (types . (post-event glissando-event event))
236         ))
237
238     (GraceMusic
239      . ((description . "Interpret the argument as grace notes.")
240         (start-callback . ,ly:grace-music::start-callback)
241         (length . ,ZERO-MOMENT)
242         (iterator-ctor . ,ly:grace-iterator::constructor)
243         (types . (grace-music music-wrapper-music))
244         ))
245
246     (HarmonicEvent
247      . ((description . "Mark a note as harmonic.")
248         (types . (post-event event harmonic-event))
249         ))
250
251     (HyphenEvent
252      . ((description . "A hyphen between lyric syllables.")
253         (types . (post-event hyphen-event event))
254         ))
255
256     (KeyChangeEvent
257      . ((description . "Change the key signature.
258
259 Syntax: @code{\\key} @var{name} @var{scale}")
260         (to-relative-callback . ,(lambda (x p) p))
261         (types . (key-change-event event))
262         ))
263
264     (LabelEvent
265      . ((description . "Place a bookmarking label.")
266         (types . (label-event event))
267         ))
268
269     (LaissezVibrerEvent
270      . ((description . "Don't damp this chord.
271
272 Syntax: @var{note}@code{\\laissezVibrer}")
273         (types . (post-event event laissez-vibrer-event))
274         ))
275
276     (LigatureEvent
277      . ((description . "Start or end a ligature.")
278         (types . (span-event ligature-event event))
279         ))
280
281     (LineBreakEvent
282      . ((description . "Allow, forbid or force a line break.")
283         (types . (line-break-event break-event event))
284         ))
285
286     (LyricCombineMusic
287      . ((description . "Align lyrics to the start of notes.
288
289 Syntax: @code{\\lyricsto} @var{voicename} @var{lyrics}")
290         (length . ,ZERO-MOMENT)
291         (types . (lyric-combine-music))
292         (iterator-ctor . ,ly:lyric-combine-music-iterator::constructor)
293         ))
294
295     (LyricEvent
296      . ((description . "A lyric syllable.  Must be entered in lyrics mode,
297 i.e., @code{\\lyrics @{ twinkle4 twinkle4 @} }.")
298         (iterator-ctor . ,ly:rhythmic-music-iterator::constructor)
299         (types . (rhythmic-event lyric-event event))
300         ))
301
302     (MarkEvent
303      . ((description . "Insert a rehearsal mark.
304
305 Syntax: @code{\\mark} @var{marker}
306
307 Example: @code{\\mark \"A\"}")
308         (types . (mark-event event))
309         ))
310
311     (MeasureCounterEvent
312      . ((description . "Used to signal the start and end of a measure count.")
313         (types . (measure-counter-event span-event event))
314         ))
315
316     (MultiMeasureRestEvent
317      . ((description . "Used internally by @code{MultiMeasureRestMusic}
318 to signal rests.")
319         (iterator-ctor . ,ly:rhythmic-music-iterator::constructor)
320         (types . (event rhythmic-event multi-measure-rest-event))
321         ))
322
323     (MultiMeasureRestMusic
324      . ((description . "Rests that may be compressed into Multi rests.
325
326 Syntax: @code{R2.*4} for 4 measures in 3/4 time.")
327         (iterator-ctor . ,ly:sequential-iterator::constructor)
328         (elements-callback . ,mm-rest-child-list)
329         (types . (multi-measure-rest))
330         ))
331
332     (MultiMeasureTextEvent
333      . ((description . "Texts on multi measure rests.
334
335 Syntax: @code{R-\\markup @{ \\roman \"bla\" @}}
336
337 Note the explicit font switch.")
338         (types . (post-event event multi-measure-text-event))
339         ))
340
341     (Music
342      . ((description . "Generic type for music expressions.")
343         (types . ())
344         ))
345
346     (NoteEvent
347      . ((description . "A note.
348
349 Outside of chords, any events in @code{articulations} with a listener
350 are broadcast like chord articulations, the others are retained.
351
352 For iteration inside of chords, @xref{EventChord}.")
353         (iterator-ctor . ,ly:rhythmic-music-iterator::constructor)
354         (types . (event note-event rhythmic-event melodic-event))
355         ))
356
357     (NoteGroupingEvent
358      . ((description . "Start or stop grouping brackets.")
359         (types . (post-event event note-grouping-event))
360         ))
361
362     (OttavaMusic
363      . ((description . "Start or stop an ottava bracket.")
364         (iterator-ctor . ,ly:sequential-iterator::constructor)
365         (elements-callback . ,make-ottava-set)
366         (types . (ottava-music))
367         ))
368
369     (OverrideProperty
370      . ((description . "Extend the definition of a graphical object.
371
372 Syntax: @code{\\override} [ @var{context} @code{.} ]
373 @var{object} @var{property} @code{=} @var{value}")
374         (types . (layout-instruction-event override-property-event))
375         (iterator-ctor . ,ly:push-property-iterator::constructor)
376         (untransposable . #t)
377         ))
378
379     (PageBreakEvent
380      . ((description . "Allow, forbid or force a page break.")
381         (types . (break-event page-break-event event))
382         ))
383
384     (PageTurnEvent
385      . ((description . "Allow, forbid or force a page turn.")
386         (types . (break-event page-turn-event event))
387         ))
388
389     (PartCombineForceEvent
390      . ((description . "Override the part-combiner's strategy.")
391         (types . (part-combine-force-event event))
392         ))
393
394     (PartialSet
395      . ((description . "Create an anacrusis or upbeat (partial measure).")
396         (iterator-ctor . ,ly:partial-iterator::constructor)
397         ;; The length-callback is kind of cheesy since 'elements is
398         ;; empty.  We just use that in order to get a zero length
399         ;; for the overall timing in spite of having a non-zero
400         ;; duration field.
401         (length-callback . ,ly:music-sequence::cumulative-length-callback)
402         (types . (partial-set))
403         ))
404
405     (PartCombineMusic
406      . ((description . "Combine two parts on a staff, either merged or
407 as separate voices.")
408         (length-callback . ,ly:music-sequence::maximum-length-callback)
409         (start-callback . ,ly:music-sequence::minimum-start-callback)
410         (types . (part-combine-music))
411         (iterator-ctor . ,ly:part-combine-iterator::constructor)
412         ))
413
414     (PercentEvent
415      . ((description . "Used internally to signal percent repeats.")
416         (types . (event percent-event rhythmic-event))
417         ))
418
419     (PercentRepeatedMusic
420      . ((description . "Repeats encoded by percents and slashes.")
421         (iterator-ctor . ,ly:percent-repeat-iterator::constructor)
422         (start-callback .  ,ly:repeated-music::first-start)
423         (length-callback . ,ly:repeated-music::unfolded-music-length)
424         (types . (repeated-music percent-repeated-music))
425         ))
426
427     (PesOrFlexaEvent
428      . ((description . "Within a ligature, mark the previous and the
429 following note to form a pes (if melody goes up) or a flexa (if melody
430 goes down).")
431         (types . (pes-or-flexa-event event))
432         ))
433
434     (PhrasingSlurEvent
435      . ((description . "Start or end phrasing slur.
436
437 Syntax: @var{note}@code{\\(} and @var{note}@code{\\)}")
438         (spanner-id . "")
439         (types . (post-event span-event event phrasing-slur-event))
440         ))
441
442     (PostEvents
443      . ((description . "Container for several postevents.
444
445 This can be used to package several events into a single one.  Should not be seen outside of the parser.")
446         (types . (post-event post-event-wrapper))))
447
448     (PropertySet
449      . ((description . "Set a context property.
450
451 Syntax: @code{\\set @var{context}.@var{prop} = @var{scheme-val}}")
452         (types . (layout-instruction-event))
453         (iterator-ctor . ,ly:property-iterator::constructor)
454         (untransposable . #t)
455         ))
456
457     (PropertyUnset
458      . ((description . "Restore the default setting for a context
459 property.  See @ref{PropertySet}.
460
461 Syntax: @code{\\unset @var{context}.@var{prop}}")
462         (types . (layout-instruction-event))
463         (iterator-ctor . ,ly:property-unset-iterator::constructor)
464         ))
465
466     (QuoteMusic
467      . ((description . "Quote preprocessed snippets of music.")
468         (iterator-ctor . ,ly:music-wrapper-iterator::constructor)
469         (length-callback . ,ly:music-wrapper::length-callback)
470         (start-callback . ,ly:music-wrapper::start-callback)
471         (types . (music-wrapper-music))
472         ))
473
474     (RelativeOctaveCheck
475      . ((description . "Check if a pitch is in the correct octave.")
476         (to-relative-callback . ,ly:relative-octave-check::relative-callback)
477         (types . (relative-octave-check))
478         ))
479
480     (RelativeOctaveMusic
481      . ((description . "Music that was entered in relative octave notation.")
482         (to-relative-callback . ,ly:relative-octave-music::relative-callback)
483         (iterator-ctor . ,ly:music-wrapper-iterator::constructor)
484         (length-callback . ,ly:music-wrapper::length-callback)
485         (start-callback . ,ly:music-wrapper::start-callback)
486         (types . (music-wrapper-music relative-octave-music))
487         ))
488
489     (RepeatedMusic
490      . ((description . "Repeat music in different ways.")
491         (types . (repeated-music))
492         ))
493
494     (RepeatSlashEvent
495      . ((description . "Used internally to signal beat repeats.")
496         (types . (event repeat-slash-event rhythmic-event))
497         ))
498
499     (RepeatTieEvent
500      . ((description . "Ties for starting a second volta bracket.")
501         (types . (post-event event repeat-tie-event))
502         ))
503
504     (RestEvent
505      . ((description . "A Rest.
506
507 Syntax: @code{r4} for a quarter rest.")
508         (iterator-ctor . ,ly:rhythmic-music-iterator::constructor)
509         (types . (event rhythmic-event rest-event))
510         ))
511
512     (RevertProperty
513      . ((description . "The opposite of @ref{OverrideProperty}: remove a
514 previously added property from a graphical object definition.")
515         (types . (layout-instruction-event))
516         (iterator-ctor . ,ly:pop-property-iterator::constructor)
517         ))
518
519     (ScriptEvent
520      . ((description . "Add an articulation mark to a note.")
521         (types . (event))
522         ))
523
524     (SequentialMusic
525      . ((description . "Music expressions concatenated.
526
527 Syntax: @code{\\sequential @{ @dots{} @}} or simply @code{@{ @dots{} @}}")
528         (length-callback . ,ly:music-sequence::cumulative-length-callback)
529         (start-callback . ,ly:music-sequence::first-start-callback)
530         (elements-callback . ,(lambda (m) (ly:music-property m 'elements)))
531         (iterator-ctor . ,ly:sequential-iterator::constructor)
532         (types . (sequential-music))
533         ))
534
535     (SimultaneousMusic
536      . ((description . "Music playing together.
537
538 Syntax: @code{\\simultaneous @{ @dots{} @}} or @code{<< @dots{} >>}")
539         (iterator-ctor . ,ly:simultaneous-music-iterator::constructor)
540         (start-callback . ,ly:music-sequence::minimum-start-callback)
541         (length-callback . ,ly:music-sequence::maximum-length-callback)
542         (to-relative-callback .
543                               ,ly:music-sequence::simultaneous-relative-callback)
544         (types . (simultaneous-music))
545         ))
546
547     (SkipEvent
548      . ((description . "Filler that takes up duration, but does not
549 print anything.
550
551 Syntax: @code{s4} for a skip equivalent to a quarter rest.")
552         (iterator-ctor . ,ly:rhythmic-music-iterator::constructor)
553         (types . (event rhythmic-event skip-event))
554         ))
555
556     (SkipMusic
557      . ((description . "Filler that takes up duration, does not
558 print anything, and also does not create staves or voices implicitly.
559
560 Syntax: @code{\\skip} @var{duration}")
561         (length-callback . ,ly:music-duration-length)
562         (iterator-ctor . ,ly:simple-music-iterator::constructor)
563         (types . (event skip-event))
564         ))
565
566     (SlurEvent
567      . ((description . "Start or end slur.
568
569 Syntax: @var{note}@code{(} and @var{note}@code{)}")
570         (spanner-id . "")
571         (types . (post-event span-event event slur-event))
572         ))
573
574     (SoloOneEvent
575      . ((description . "Print @q{Solo@tie{}1}.")
576         (part-combine-status . solo1)
577         (types . (event part-combine-event solo-one-event))
578         ))
579
580     (SoloTwoEvent
581      . ((description . "Print @q{Solo@tie{}2}.")
582         (part-combine-status . solo2)
583         (types . (event part-combine-event solo-two-event))
584         ))
585
586     (SostenutoEvent
587      . ((description . "Depress or release sostenuto pedal.")
588         (types . (post-event event pedal-event sostenuto-event))
589         ))
590
591     (SpacingSectionEvent
592      . ((description . "Start a new spacing section.")
593         (types . (event spacing-section-event))))
594
595     (SpanEvent
596      . ((description . "Event for anything that is started at a
597 different time than stopped.")
598         (types . (event))
599         ))
600
601     (StaffSpanEvent
602      . ((description . "Start or stop a staff symbol.")
603         (types . (event span-event staff-span-event))
604         ))
605
606     (StringNumberEvent
607      . ((description . "Specify on which string to play this note.
608
609 Syntax: @code{\\@var{number}}")
610         (types . (post-event string-number-event event))
611         ))
612
613     (StrokeFingerEvent
614      . ((description . "Specify with which finger to pluck a string.
615
616 Syntax: @code{\\rightHandFinger @var{text}}")
617         (types . (post-event stroke-finger-event event))
618         ))
619
620     (SustainEvent
621      . ((description . "Depress or release sustain pedal.")
622         (types . (post-event event pedal-event sustain-event))
623         ))
624
625     (TempoChangeEvent
626      . ((description . "A metronome mark or tempo indication.")
627         (types . (event tempo-change-event))
628         ))
629
630     (TextScriptEvent
631      . ((description . "Print text.")
632         (types . (post-event script-event text-script-event event))
633         ))
634
635     (TextSpanEvent
636      . ((description . "Start a text spanner, for example, an
637 octavation.")
638         (types . (post-event span-event event text-span-event))
639         ))
640
641     (TieEvent
642      . ((description . "A tie.
643
644 Syntax: @w{@var{note}@code{-~}}")
645         (types . (post-event tie-event event))
646         ))
647
648     (TimeScaledMusic
649      . ((description . "Multiply durations, as in tuplets.
650
651 Syntax: @code{\\times @var{fraction} @var{music}}, e.g.,
652 @code{\\times 2/3 @{ @dots{} @}} for triplets.")
653         (length-callback . ,ly:music-wrapper::length-callback)
654         (start-callback . ,ly:music-wrapper::start-callback)
655         (iterator-ctor . ,ly:tuplet-iterator::constructor)
656         (types . (time-scaled-music music-wrapper-music))
657         ))
658
659     (TimeSignatureMusic
660      . ((description . "Set a new time signature")
661         (iterator-ctor . ,ly:sequential-iterator::constructor)
662         (elements-callback . ,make-time-signature-set)
663         (types . (time-signature-music))
664         ))
665
666     (TimeSignatureEvent
667      . ((description . "An event created when setting a new time signature")
668         (types . (event time-signature-event))
669         ))
670
671     (TransposedMusic
672      . ((description . "Music that has been transposed.")
673         (iterator-ctor . ,ly:music-wrapper-iterator::constructor)
674         (start-callback . ,ly:music-wrapper::start-callback)
675         (length-callback . ,ly:music-wrapper::length-callback)
676         (to-relative-callback .
677                               ,ly:relative-octave-music::no-relative-callback)
678         (types . (music-wrapper-music transposed-music))
679         ))
680
681     (TremoloEvent
682      . ((description . "Unmeasured tremolo.")
683         (types . (post-event event tremolo-event))
684         ))
685
686     (TremoloRepeatedMusic
687      . ((description . "Repeated notes denoted by tremolo beams.")
688         (iterator-ctor . ,ly:chord-tremolo-iterator::constructor)
689         (start-callback .  ,ly:repeated-music::first-start)
690         (length-callback . ,ly:repeated-music::unfolded-music-length)
691         (types . (repeated-music tremolo-repeated-music))
692         ))
693
694     (TremoloSpanEvent
695      . ((description . "Tremolo over two stems.")
696         (types . (event span-event tremolo-span-event))
697         ))
698
699     (TrillSpanEvent
700      . ((description . "Start a trill spanner.")
701         (types . (post-event span-event event trill-span-event))
702         ))
703
704     (TupletSpanEvent
705      . ((description . "Used internally to signal where tuplet
706 brackets start and stop.")
707         (types . (tuplet-span-event span-event event post-event))
708         ))
709
710     (UnaCordaEvent
711      . ((description . "Depress or release una-corda pedal.")
712         (types . (post-event event pedal-event una-corda-event))
713         ))
714
715     (UnfoldedRepeatedMusic
716      . ((description . "Repeated music which is fully written (and
717 played) out.")
718         (iterator-ctor . ,ly:sequential-iterator::constructor)
719         (elements-callback . ,make-unfolded-set)
720         (start-callback .  ,ly:repeated-music::first-start)
721         (types . (repeated-music unfolded-repeated-music))
722         (length-callback . ,ly:repeated-music::unfolded-music-length)
723         ))
724
725     (UnisonoEvent
726      . ((description . "Print @q{a@tie{}2}.")
727         (part-combine-status . unisono)
728         (types . (event part-combine-event unisono-event))))
729
730     (UnrelativableMusic
731      . ((description . "Music that cannot be converted from relative
732 to absolute notation.  For example, transposed music.")
733         (to-relative-callback . ,ly:relative-octave-music::no-relative-callback)
734         (iterator-ctor . ,ly:music-wrapper-iterator::constructor)
735         (length-callback . ,ly:music-wrapper::length-callback)
736         (types . (music-wrapper-music unrelativable-music))
737         ))
738
739     (VoiceSeparator
740      . ((description . "Separate polyphonic voices in simultaneous music.
741
742 Syntax: @code{\\\\}")
743         (types . (separator))
744         ))
745
746     (VoltaRepeatedMusic
747      . ((description . "Repeats with alternatives placed sequentially.")
748         (iterator-ctor . ,ly:volta-repeat-iterator::constructor)
749         (elements-callback . ,make-volta-set)
750         (start-callback .  ,ly:repeated-music::first-start)
751         (length-callback . ,ly:repeated-music::volta-music-length)
752         (types . (repeated-music volta-repeated-music))
753         ))
754     ))
755
756 (set! music-descriptions
757       (sort music-descriptions alist<?))
758
759 (define-public music-name-to-property-table (make-hash-table 59))
760
761 ;; init hash table,
762 ;; transport description to an object property.
763 (set!
764  music-descriptions
765  (map (lambda (x)
766         (set-object-property! (car x)
767                               'music-description
768                               (cdr (assq 'description (cdr x))))
769         (let ((lst (cdr x)))
770           (set! lst (assoc-set! lst 'name (car x)))
771           (set! lst (assq-remove! lst 'description))
772           (hashq-set! music-name-to-property-table (car x) lst)
773           (cons (car x) lst)))
774       music-descriptions))
775
776 (define-safe-public (make-music name . music-properties)
777   "Create a music object of given name, and set its properties
778 according to @code{music-properties}, a list of alternating property symbols
779 and values. E.g:
780 @example
781   (make-music 'OverrideProperty
782               'symbol 'Stem
783               'grob-property 'thickness
784               'grob-value (* 2 1.5))
785 @end example
786 Instead of a successive symbol and value, an entry in the list may
787 also be an alist or a music object in which case its elements,
788 respectively its @emph{mutable} property list (properties not inherent
789 to the type of the music object) will get taken.
790
791 The argument list will be interpreted left-to-right, so later entries
792 override earlier ones."
793   (if (not (symbol? name))
794       (ly:error (_ "symbol expected: ~S") name))
795   (let ((props (hashq-ref music-name-to-property-table name '())))
796     (if (not (pair? props))
797         (ly:error (_ "cannot find music object: ~S") name))
798     (let ((m (ly:make-music props)))
799       (define (alist-set-props lst)
800         (for-each (lambda (e)
801                     (set! (ly:music-property m (car e)) (cdr e)))
802                   (reverse lst)))
803       (define (set-props mus-props)
804         (if (pair? mus-props)
805             (let ((e (car mus-props))
806                   (mus-props (cdr mus-props)))
807               (cond ((symbol? e)
808                      (set! (ly:music-property m e) (car mus-props))
809                      (set-props (cdr mus-props)))
810                     ((ly:music? e)
811                      (alist-set-props (ly:music-mutable-properties e))
812                      (set-props mus-props))
813                     ((cheap-list? e)
814                      (alist-set-props e)
815                      (set-props mus-props))
816                     (else
817                      (ly:error (_ "bad make-music argument: ~S") e))))))
818       (set-props music-properties)
819       m)))