]> git.donarmstrong.com Git - lilypond.git/blob - scm/define-context-properties.scm
1d0b28cf6ca3a295de73bbf82b08076e0dfc0d78
[lilypond.git] / scm / define-context-properties.scm
1 ;;;; define-context-properties.scm -- part of backend documentation
2 ;;;;
3 ;;;;  source file of the GNU LilyPond music typesetter
4 ;;;; 
5 ;;;; (c) 1998--2006  Han-Wen Nienhuys <hanwen@xs4all.nl>
6 ;;;;                  Jan Nieuwenhuizen <janneke@gnu.org>
7
8
9 (define-public all-translation-properties '())
10
11 (define (translator-property-description symbol type? description)
12   (if (not (and
13             (symbol? symbol)
14             (procedure? type?)
15             (string? description)))
16       (throw 'init-format-error))
17            
18        
19   (if (not (equal? #f (object-property symbol 'translation-doc)))
20       (ly:error (_ "symbol ~S redefined" symbol)))
21   
22   (set-object-property! symbol 'translation-type? type?)
23   (set-object-property! symbol 'translation-doc description)
24   (set! all-translation-properties (cons symbol all-translation-properties))
25   symbol)
26
27 (define-public all-user-translation-properties
28   (map
29    (lambda (x)
30      (apply translator-property-description x))
31    `(
32
33      ;; TODO FIXME
34    
35      (aDueText ,string? "Text to print at a unisono passage.")
36      (alignBelowContext ,string? "Where to insert newly created context in vertiical alignment.")
37      (alignAboveContext ,string? "Where to insert newly created context in vertiical alignment.")
38      (alignBassFigureAccidentals ,boolean?
39                                  "If true, then the accidentals are aligned in bass figure context.")
40
41      (associatedVoice ,string? "Name of the
42 @code{Voice} that has the melody for this @code{Lyrics} line.")
43      (autoBeamSettings ,list? "Specifies
44 when automatically generated beams should begin and end.
45 See @usermanref{Setting automatic beam behavior} for more information.
46 ")
47      (autoAccidentals ,list? "List of
48 different ways to typeset an accidental.
49
50 For determining when to print an accidental, several different rules
51 are tried.  The rule that gives the highest number of accidentals is
52 used.  Each rule consists of
53
54 @table @var
55
56 @item context:
57       In which context is the rule applied. For example, if
58 @var{context} is @internalsref{Score} then all staves share
59 accidentals, and if @var{context} is @internalsref{Staff} then all
60 voices in the same staff share accidentals, but staves do not.
61
62 @item octavation:
63       Whether the accidental changes all octaves or only the current
64       octave. Valid choices are 
65
66      @table @samp
67       @item same-octave:
68       This is the default algorithm. Accidentals are typeset if the note changes
69       the accidental of that note in that octave. Accidentals lasts to the end of the measure 
70       and then as many measures as specified in the value. I.e. 1 means to the end
71       of next measure, -1 means to the end of previous measure (that is: no duration at all), etc. #t means forever.
72       @item any-octave:
73       Accidentals are typeset if the note is different from 
74       the previous note on the same pitch in any octave. The value has same meaning as in
75       same-octave.
76       @end table
77
78 @item laziness
79
80 Over how many bar lines the accidental lasts.
81 If @var{laziness} is @code{-1} then the accidental is forgotten
82 immediately, and if @var{laziness} is @code{#t} then the accidental
83 lasts forever.
84 @end table
85 ")
86      (autoBeamCheck ,procedure? "Procedure taking three
87 arguments, CONTEXT, DIR start/stop (-1 or 1) and TEST shortest
88 note in the beam.  A non-#f return value starts or stops the auto beam.")
89      (autoBeaming ,boolean? "If set to true then beams are generated
90 automatically.")
91
92      (autoCautionaries ,list? "List similar to
93 @code{autoAccidentals}, but it controls cautionary accidentals rather than
94 normal ones. Both lists are tried, and the one giving the most accidentals
95 wins. In case of draw, a normal accidental is typeset.
96 ")
97      (automaticBars ,boolean? " If set to true then bar lines will not be
98 printed automatically; they must be explicitly created with
99 @code{\\bar} command.  Unlike the @code{\\cadenza} keyword, measures
100 are still counted.  Bar generation will resume according to that count
101 if this property is unset.
102 ")
103      
104      (barAlways ,boolean? "If set to true a bar line is drawn after each
105 note.")
106
107      (barCheckSynchronize ,boolean? "If true then reset @code{measurePosition}
108 when finding a barcheck.")
109
110      (barNumberVisibility ,procedure? "Procedure that takes an int and
111 returns whether the corresponding bar number should be printed")
112      (bassStaffProperties ,list? "Alist of property settings to apply
113 for the down staff of PianoStaff. Used by @code{\\autochange}")
114      (trebleStaffProperties ,list? "Alist of property settings to apply
115 for the up staff of PianoStaff. Used by @code{\\autochange}")
116
117      (figuredBassFormatter ,procedure? "Routine generating a markup
118 for a bass figure.")
119      (bassFigureFormatFunction ,procedure? "Procedure that is called
120 to produce the formatting for a @code{BassFigure} grob. It takes a
121 list of @code{BassFigureEvent}s, a context, and the grob to format.")
122      
123      (beatLength ,ly:moment? "The length of one beat in this time signature.")
124      (beatGrouping ,list?
125                    "List of beatgroups, e.g., in 5/8 time @code{'(2
126 3)}.")
127
128
129
130      (middleCPosition ,number? "Place of the middle C, measured in half
131 staff-spaces.  Usually determined by looking at @code{clefPosition} and
132 @code{clefGlyph}.")
133
134      (chordNameFunction ,procedure?
135                         "The function that converts lists of pitches to chord names.")
136      (chordNoteNamer ,procedure?
137                      "Function that converts from a pitch object to a text markup. Used for single pitches.")
138      (chordRootNamer ,procedure?
139                      "Function that converts from a pitch object to a text markup. Used for chords.")
140      (chordNameExceptions ,list?
141                           "An alist of chord exceptions.
142 Contains (@var{chord} . @var{markup}) entries.")
143      (chordNameExceptionsFull ,list?
144                               "An alist of chord exceptions.
145 Contains (@var{chord} . @var{markup}) entries.")
146      (chordNameExceptionsPartial
147       ,list?
148       "An alist of partial chord exceptions. Contains (@var{chord} . (@var{prefix-markup} @var{suffix-markup})) entries.")
149      
150      (chordNameSeparator ,markup?
151                          "The markup object used to separate
152  parts of a chord name.")
153      (chordPrefixSpacer ,number?
154                         "The space added between the root symbol and the prefix
155  of a chord name")
156      (chordChanges ,boolean? "Only show changes in chords scheme?")
157      (clefGlyph ,string? "Name of the symbol within the music font.")
158      (clefOctavation ,integer? "Add
159 this much extra octavation. Values of 7 and -7 are common.")
160
161      (clefPosition ,number? "Where should the center of the clef
162 symbol go, measured in half staff spaces from the center of the staff.")
163
164      (connectArpeggios ,boolean? " If set, connect arpeggios across
165 piano staff.")
166      (countPercentRepeats ,boolean? "If set, produce counters for
167 percent repeats. ")
168      (createKeyOnClefChange ,boolean? "Print a key signature whenever the clef is changed.")
169      (createSpacing ,boolean? "Create @code{StaffSpacing} objects?
170 Should be set for staves.")
171      (crescendoText ,markup? "Text to print at start of non-hairpin crescendo, i.e.: @samp{cresc.}")
172      (crescendoSpanner ,symbol? "Type of spanner to be used for crescendi.
173 One of: @samp{hairpin}, @samp{line}, @samp{dashed-line},
174 @samp{dotted-line}.  If unset, hairpin type is used.")
175      (decrescendoText ,markup? "Text to print at start of non-hairpin decrescendo, i.e.: @samp{dim.}")
176
177      (drumPitchTable ,hash-table? "A table mapping percussion
178 instruments (symbols) to pitches.")
179
180      (drumStyleTable ,hash-table? "A hash table containing mapping
181 drums to layout settings.  Predefined values: @samp{drums-style},
182 @samp{timbales-style}, @samp{congas-style}, @samp{bongos-style} and
183 @samp{percussion-style}.
184
185 The layout style is a hash table, containing the drum-pitches (e.g. the
186 symbol @samp{hihat}) as key, and a list (@var{notehead-style}
187 @var{script} @var{vertical-position}) as values.
188  ")
189      (currentBarNumber ,integer? "Contains the current barnumber. This property is incremented at every bar line. ")
190      (defaultBarType ,string? "Sets the default type of bar line.
191 See @code{whichBar} for information on available bar types.
192
193 This variable is  read by @internalsref{Timing_translator} at
194 @internalsref{Score} level.
195 ")
196
197      (decrescendoSpanner ,symbol? "See @code{crescendoSpanner}.")
198      (doubleSlurs ,boolean?
199                   "When set, two slurs are created for every slurred
200 note, one above and one below the chord.")
201      (explicitClefVisibility ,vector? "@samp{break-visibility} function for clef changes.")
202
203      (explicitKeySignatureVisibility ,vector?
204 "@samp{break-visibility} function for explicit key
205 changes. @samp{\\override} of the @code{break-visibility} property will set the
206 visibility for normal (i.e. at the start of the line) key signatures.")
207
208      (extendersOverRests ,boolean? "Whether to continue extenders as
209 they cross a rest.")
210      (extraNatural ,boolean? "Whether to typeset an
211 extra natural sign before accidentals changing from a non-natural to 
212 another non-natural.")
213
214      (figuredBassCenterContinuations ,boolean? "Whether to vertically center pairs of extender lines.  This does not work with three or more lines")
215      (figuredBassPlusDirection ,ly:dir? "Where to put plus signs relative to the the main figure.")
216      
217      (figuredBassAlterationDirection ,ly:dir? "Where to put
218 alterations relative to the main figure.")
219      (followVoice ,boolean? "If set, note heads are tracked across staff
220 switches by a thin line")
221
222      (fontSize ,number?
223                "The relative size of all grobs in a context. ")
224
225      (forbidBreak ,boolean? "If set to ##t, prevent a line break at this point.")
226
227      (fingeringOrientations ,list?
228                             "List of symbols, containing
229 @samp{left}, @samp{right}, @samp{up} and/or @samp{down}. This list
230 determines where fingerings are put relative to the chord being
231 fingered.")
232
233      (firstClef ,boolean? "If true, create a new clef when starting a
234 staff.")
235      (forceClef ,boolean? "Show clef symbol, even if it has not
236 changed. Only active for the first clef after the property is set, not
237 for the full staff.")
238      (gridInterval ,ly:moment?
239                    "Interval for which to generate @ref{GridPoint}s")
240
241      (hairpinToBarline ,boolean? "If set, end a hairpin at the barline before the ending note.")
242      
243      (harmonicAccidentals ,boolean? "If set, harmonic notes in chords
244 get accidentals.")
245      (highStringOne ,boolean? "Whether the 1st string is the string with
246 highest pitch on the instrument. This used by the automatic string
247 selector for tab notation.")
248
249      (ignoreFiguredBassRest ,boolean? "Don't swallow rest events.")
250      (ignoreBarChecks ,boolean? "Ignore bar checks")
251      (ignoreMelismata ,boolean? "Ignore melismata for this @internalsref{Lyrics} line.")
252
253      (implicitTimeSignatureVisibility ,vector? "break visibility for the default timesignature.")
254
255      (implicitBassFigures ,list? "List of bass figures that are not
256 printed as numbers, but only as extender lines.")
257      
258
259      (instrumentCueName ,markup? "Name to print if another instrument is to be taken.")
260      (instrumentName ,markup? "The name to print left of a staff.  The
261 @code{instrument} property labels the staff in the first system, and
262 the @code{instr} property labels following lines.")
263      (instrumentEqualizer ,procedure? "
264 Function taking a string (instrument name), and returning a (@var{min} . @var{max}) pair of numbers for the loudness range of the instrument.
265 ")
266
267      ;; the definition is reversed wrt  traditional transposition
268      ;; this because \transpose { \transposition .. } won't work
269      ;; otherwise.
270      (instrumentTransposition ,ly:pitch? "Defines the transposition of
271 the instrument. Its value is the pitch that sounds like middle C. This
272 is used to transpose the MIDI output, and @code{\\quote}s.")
273
274      (internalBarNumber ,integer? "Contains the current barnumber. This property is used for internal timekeeping, among others by the @code{Accidental_engraver}.")
275      
276      (keepAliveInterfaces ,list? "List of symbols, signifying grob interfaces that
277 are worth keeping an staff with @code{remove-empty} set around for.")   
278      (keyAlterationOrder ,list? " Alist that defines in what order
279 alterations should be printed.  The format is (@var{step}
280 . @var{alter}), where @var{step} is from 0 .. 6 and @var{alter} from
281 -2 (sharp) and 2 (flat).
282 ")
283
284      (keySignature ,list? "The current key signature. This is an alist
285 containing (@var{step} . @var{alter}) or ((@var{octave} . @var{step})
286 . @var{alter}).  where @var{step} is from 0.. 6 and @var{alter} a fraction, denoting
287 alteration.  For alterations, use symbols, eg.
288 @code{keySignature = #`((6 . ,FLAT))}
289 ")
290      (majorSevenSymbol ,markup? "How should
291 the major 7th be formatted in a chord name?")
292      (markFormatter ,procedure? "Procedure
293 taking as arguments context and rehearsal mark. It should return the
294 formatted mark as a markup object.")
295
296      (measureLength ,ly:moment? "Length of one
297 measure in the current time signature.")
298
299      (measurePosition ,ly:moment? "How much of the current measure
300 have we had.  This can be set manually to create incomplete
301 measures.")
302
303      (melismaBusyProperties ,list? "List of properties (symbols) to
304 determine whether a melisma is playing.  Setting this property will
305 influence how lyrics are aligned to notes.  For example, if set to
306 @code{#'(melismaBusy beamMelismaBusy)}, only manual melismata and
307 manual beams are considered. Possible values include
308 @code{melismaBusy}, @code{slurMelismaBusy}, @code{tieMelismaBusy}, and
309 @code{beamMelismaBusy}")
310
311
312      (metronomeMarkFormatter ,procedure? "How to produce a metronome
313 markup.  Called with 2 arguments, event and context.")
314      (midiInstrument ,string? "Name of the MIDI instrument to use ")
315      (midiMinimumVolume ,number? "Sets the minimum loudness for MIDI. Ranges from 0 to 1.")
316      (midiMaximumVolume ,number? "Analogous to @code{midiMinimumVolume}.")
317      (minimumFret ,number? "The tablature auto string-selecting mechanism
318 selects the highest string with a fret at least @code{minimumFret}")
319      (maximumFretStretch ,number? "Don't allocate frets further than this from specified frets.")
320      (minimumPageTurnLength ,ly:moment? "Minimum length of a rest for a page turn to be allowed")
321      (minimumRepeatLengthForPageTurn ,ly:moment? "Minimum length of a repeated section for a page
322 turn to be allowed within that section")
323      (output ,ly:music-output? "The output produced by a score-level translator during music interpretation")
324      (ottavation ,string? "If set, the text for an ottava spanner. Changing
325 this creates a new text spanner. ")
326      (noteToFretFunction ,procedure? "How to produce a fret diagram.  Parameters: list of note events and list of tabstring events.")
327      (pedalSustainStrings ,list? "List of string to print for
328 sustain-pedal. Format is (@var{up} @var{updown} @var{down}), where
329 each of the three is the string to print when this is done with the
330 pedal.")
331      (pedalUnaCordaStrings ,list? "See @code{pedalSustainStrings}.")
332      (pedalSostenutoStrings ,list? "See @code{pedalSustainStrings}.")
333      (pedalSustainStyle ,symbol? "A symbol that indicates how to print
334 sustain pedals: @code{text}, @code{bracket} or @code{mixed} (both).")
335      (pedalUnaCordaStyle ,symbol? "see @code{pedalSustainStyle}.")
336      (pedalSostenutoStyle ,symbol? "see @code{pedalSustainStyle}.")
337      (printKeyCancellation ,boolean? "Print restoration alterations before a key signature change. ")
338      (printPartCombineTexts ,boolean? "set Solo/A due texts in the part combiner?")
339      (printOctaveNames ,boolean? "Print octave marks for the NoteNames context.")
340
341      (proportionalNotationDuration ,ly:moment? "Global override for
342 shortest-playing duration. This is used for switching on proportional
343 notation.")
344      (recordEventSequence ,procedure? "When Recording_group_engraver
345 is in this context, then upon termination of the context, this
346 function is called with current context and a list of music objects.
347 The list of contains entries with start times, music objects and
348 whether they are processed in this context.")
349
350      (rehearsalMark ,integer? "The last rehearsal mark printed.")
351      (repeatCommands ,list? "This property is read to find any command of the form @code{(volta . @var{x})}, where @var{x} is a string or @code{#f}")
352      (restNumberThreshold ,number?
353                           "If a multimeasure rest has more measures
354 than this, a number is printed. ")
355      (shapeNoteStyles ,vector? "Vector of symbols, listing style for each note
356 head relative to the tonic (qv.) of the scale.")
357      (shortInstrumentName ,markup? "See @code{instrument}")
358      (shortVocalName ,markup? "Name of a vocal line, short version.")
359      (skipBars ,boolean? "If set to true, then
360 skip the empty bars that are produced by multimeasure notes and rests.
361 These bars will not appear on the printed output.  If not set (the
362 default) multimeasure notes and rests expand into their full length,
363 printing the appropriate number of empty bars so that synchronization
364 with other voices is preserved.
365
366
367 @example
368 @{
369 r1 r1*3 R1*3
370 \\set Score.skipBars= ##t
371 r1*3 R1*3
372 @}
373 @end example
374 ")
375      (skipTypesetting ,boolean?
376                       "When true, all no typesetting is done, speeding
377 up the interpretation phase. This speeds up debugging large scores.")
378      (soloIIText ,string? "text for begin of solo for voice ``two'' when part-combining.")
379      (soloText ,string? "text for begin of solo when part-combining.")
380      (squashedPosition ,integer? " Vertical position of
381 squashing for @internalsref{Pitch_squash_engraver}.")
382
383      (staffLineLayoutFunction ,procedure? "Layout of staff lines, 'traditional, or 'semitone.")
384      (stringNumberOrientations ,list? "See @code{fingeringOrientations}")
385      (strokeFingerOrientations ,list? "See @code{fingeringOrientations}")
386      (stringOneTopmost ,boolean? "Whether the 1st string is printed on the
387 top line of the tablature.")
388
389      (stanza ,markup? "Stanza `number' to print before the start of a
390 verse. Use in Lyrics context.")
391
392      (stemLeftBeamCount ,integer? " Specify the number of beams to draw on
393 the left side of the next note.  Overrides automatic beaming.  The
394 value is only used once, and then it is erased.")
395
396      (stemRightBeamCount ,integer? "See @code{stemLeftBeamCount}.")
397
398      (stringTunings ,list? "The tablature strings tuning. It is a list
399 of the pitch (in semitones) of each string (starting with the lower
400 one).")
401
402      (subdivideBeams ,boolean? "If set, multiple beams will be subdivided
403 at beat positions by only drawing one beam over the beat.")
404      (suggestAccidentals ,boolean? "If set, accidentals are typeset as cautionary suggestions over the note.")
405
406      (systemStartDelimiterHierarchy ,pair? "A nested list, indicating the nesting of a start delimiters.") 
407
408      (systemStartDelimiter ,symbol? "Which grob to make for the start of
409 the system/staff? Set to @code{SystemStartBrace},
410 @code{SystemStartBracket} or @code{SystemStartBar}.")
411
412      (tablatureFormat ,procedure? "Function formatting a tab note head; it
413 takes a string number, a list of string tunings and Pitch object. It
414 returns the text as a string.")
415
416      (tieWaitForNote ,boolean? "If true, tied notes do not have to follow each other directly.
417 This can be used for writing out arpeggios")
418      (timeSignatureFraction ,number-pair?
419                             "pair of numbers, signifying the time
420 signature. For example @code{#'(4 . 4)} is a 4/4 time signature.")
421
422      (timing ,boolean? " Keep administration of measure length, position, bar number, etc?
423 Switch off for cadenzas.")
424      (tonic ,ly:pitch?
425             "The tonic of the current scale")
426
427      (tremoloFlags ,integer? "Number of tremolo flags to add if no
428 number is specified.")
429
430      (tupletFullLength ,boolean? "If set, the tuplet is printed up to
431 the start of the next note.")
432      (tupletFullLengthNote ,boolean? "If set, end at the next note, otherwise end on the matter (time sigs, etc.) before the note.")
433      (tupletSpannerDuration ,ly:moment? "
434 Normally a tuplet bracket is as wide as the
435 @code{\\times} expression that gave rise to it.  By setting this
436 property, you can make brackets last shorter.  Example
437
438 @example
439 @{
440 \\set tupletSpannerDuration = #(ly:make-moment 1 4)
441 \\times 2/3 @{ c8 c c c c c @}
442 @}
443 @end example
444 .")
445
446      (useBassFigureExtenders ,boolean? "Whether to use extender lines
447 for repeated bass figures")
448
449      (verticallySpacedContexts ,list? "List of symbols, containing
450 context names whose vertical axis groups should be taken into account for
451 vertical spacing of systems.")
452      
453      (vocalName ,markup? "Name of a vocal line.")
454
455      (voltaOnThisStaff ,boolean?
456                        "Normally, volta brackets are put only on the
457 topmost staff.  This variable overrides this behavior, when set to
458 @code{#t} or @code{#f}.")
459
460      (voltaSpannerDuration ,ly:moment? "This specifies the maximum duration
461 to use for the brackets printed for @code{\\alternative}.  This can be
462 used to shrink the length of brackets in the situation where one
463 alternative is very large.")
464
465      (whichBar
466       ,string?
467       "This property is read to determine what type of bar line to create.
468
469 Example:
470 @example
471 \\set Staff.whichBar = \"|:\"
472 @end example
473
474 This will create a start-repeat bar in this staff only.
475 Valid values are described in @internalsref{bar-line-interface}.
476 ")
477      (tempoWholesPerMinute ,ly:moment? "The tempo in whole notes per minute.")
478      (tempoUnitDuration ,ly:duration? "Unit for specifying tempo.")
479      (tempoUnitCount ,number? "Count for specifying tempo.")
480      
481      )))
482
483 (define-public all-internal-translation-properties
484   (map
485    (lambda (x)
486      (set-object-property! (car x) 'internal-translation #t)
487      (apply translator-property-description x)
488
489      )
490
491    `((slurMelismaBusy ,boolean? "Signal if a slur is present.")
492      (originalMiddleCPosition
493       ,integer?
494       "Used for temporary overriding middle C in octavation brackets. ")
495      (melismaBusy ,boolean? "Signifies
496 whether a melisma is active. This can be used to signal melismas on
497 top of those automatically detected. ")
498      (graceSettings ,list?
499                     "Overrides for grace notes. This property should
500 be manipulated through the @code{add-grace-property} function.")
501      (currentCommandColumn ,ly:grob? "Grob that is X-parent to all
502 current breakable (clef, key signature, etc.) items.")
503      (currentMusicalColumn ,ly:grob? "Grob that is X-parent to all
504 non-breakable items (note heads, lyrics, etc.).")
505      (breakableSeparationItem ,ly:grob?
506                               "The breakable items in this time step,
507 for this staff.")
508
509      (localKeySignature ,list? "the key signature at this point in the
510 measure.  The format is the same as for keySignature, but can also
511 contain ((@var{octave} . @var{name}) . (@var{alter} . @var{barnumber}))
512 pairs. It is reset at every bar line.")
513
514      (finalizations ,list? "List of expressions to evaluate before proceeding to next time step. Internal variable.")
515      (busyGrobs ,list? "a queue of (@var{end-moment} . @var{GROB})
516 conses. This is for internal (C++) use only.  This property contains
517 the grobs which are still busy (e.g. note heads, spanners, etc.)
518 ")
519      (barCheckLastFail ,ly:moment? "Where in the measure did the last barcheck fail?") 
520      (associatedVoiceContext ,ly:context? "The context object of the Voice that has the melody for this Lyrics.")
521      (beamMelismaBusy ,boolean? "Signal if a beam is present.")
522      (dynamicAbsoluteVolumeFunction ,procedure? "[DOCUMENT-ME]")
523
524      (lastKeySignature ,list? "Last key signature before a key
525 signature change.")
526      (rootSystem ,ly:grob? "The System object")
527      (scriptDefinitions ,list? "Description of scripts. This is used by
528 Script_engraver for typesetting note-super/subscripts. See
529 @file{scm/script.scm} for more information
530 ")
531      (quotedEventTypes ,list? "List of symbols, representing the
532 event types that should be duplicated for @code{\\quote} commands.")
533
534 ;     (quotes ,hash-table? "Hash table, mapping names to music-event vectors.")
535      (stavesFound ,grob-list? "list of all staff-symbols found.")
536      (instrumentSupport ,grob-list? "list of grobs to attach instrument name
537 to.")
538      (tieMelismaBusy ,boolean? "Signal whether a tie is present.")
539      )))
540
541 (define-public all-translation-properties
542   (append all-user-translation-properties
543           all-internal-translation-properties))
544
545 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
546
547 (define-public default-melisma-properties '(melismaBusy slurMelismaBusy tieMelismaBusy beamMelismaBusy))