* lily/breathing-sign.cc (railtracks): another caesura.
[lilypond.git] / scm / translator-property-description.scm
blob137ff5bfdc3b2021e242aa5679de19f9daa0e91c
2 (define-public all-translation-properties '())
4 (define (translator-property-description symbol type? description)
5  (if (not (equal? #f (object-property symbol 'translation-doc)))
6       (begin
7         (ly:warn (string-append "Redefining " (symbol->string symbol) "\n"))
8         (exit 2)
9       ))
10   
11   (set-object-property! symbol 'translation-type? type?)
12   (set-object-property! symbol 'translation-doc description)
13   (set! all-translation-properties (cons symbol all-translation-properties))
14   )
18 (translator-property-description 'extraVerticalExtent
19                                  number-pair? "extra vertical extent, same format as  MinimumVerticalExtent")
21 (translator-property-description
22  'majorSevenSymbol markup?
23  "How should the major7 be formatted in a chord name?")
25 (translator-property-description 'minimumVerticalExtent number-pair?
26                                  "minimum vertical extent, same format as VerticalExtent")
27 (translator-property-description 'verticalExtent number-pair?
28                                  "hard coded vertical extent.
29 The format is a pair of dimensions, for example, this sets the sizes
30 of a staff to 10 (5+5) staffspaces high.
32 @example
33 property Staff.verticalExtent = #(-5.0 . 5.0)
34 @end example
36 VerticalExtent, MinimumVerticalExtent and ExtraVerticalExtent are
37 predefined in all relevant contexts to @code{#f}, so they will not
38 inherit values.
40 Note that these VerticalExtents can only operate on vertical groups,
41 and therefore only work in contexts which contain an
42 @code{Axis_group_engraver}.
45 (translator-property-description
46  'acknowledgeHashTable vector?
47  "Internal variable: store interface to engraver smob table for current context. Don't mess with this."
48  )
50 (translator-property-description 'acceptHashTable vector? "Internal
51 variable: store table with MusicName to Engraver entries.")
52 (translator-property-description 'aDueText string? "text for begin of a due")
53 (translator-property-description 'associatedVoice string? "Name of the Voice that has the melody for this LyricsVoice.")
54 (translator-property-description 'autoBeamSettings list? "
55 Specifies when automatically generated beams should begin and end.  The elements have the format:
57 @example
59    function shortest-duration-in-beam time-signature
61 where
63     function = begin or end
64     shortest-duration-in-beam = numerator denominator; eg: 1 16
65     time-signature = numerator denominator, eg: 4 4
67 unspecified or wildcard entries for duration or time-signature
68 are given by * *
70 The user can override beam begin or end time by pushing a wildcard entries
71 '(begin * * * *) or '(end * * * *) resp., eg:
73     property Voice.autoBeamSettings push #'(end * * * *) = #(ly:make-moment 1 4)
75 The head of the list:
76     '(
77 ((end * * 3 2) . ,(ly:make-moment 1 2))
78 ((end 1 16 3 2) . ,(ly:make-moment 1 4))
79 ((end 1 32 3 2) . ,(ly:make-moment 1 8))
80      ...
81     )
83 @end example")
85 (translator-property-description 'autoAccidentals list? "List of
86 different ways to typeset an accidental. All algorithms in the list
87 are tried, and the one returning the most accidentals is used.
88 Each entry is either a symbol containg a context name or a name-value
89 pair containing an algorithm-description.
90 The list must begin with a symbol (context name).
91 The symbols denote in which context THE FOLLOWING algorithms (until next symbol) 
92 will be interpreted. All notes in the interpretation context will share accidentals.
93 The contexts must be stated in order, innermost first.
94 The algorithms are:
95 @table @samp
96 @item same-octave:
97 This is the default algorithm. Accidentals are typeset if the note changes
98 the accidental of that note in that octave. Accidentals lasts to the end of the measure 
99 and then as many measures as specified in the value. I.e. 1 means to the end
100 of next measure, -1 means to the end of previous measure (that is: no duration at all), etc. #t means forever.
101 @item any-octave:
102 Accidentals are typeset if the note is different from 
103 the previous note on the same pitch in any octave. The value has same meaning as in
104 same-octave.
105 @end table
108 (translator-property-description 'autoCautionaries list? "List similar to
109 autoAccidentals, but it controls cautionary accidentals rather than
110 normal ones. Both lists are tried, and the one giving the most accidentals
111 wins. In case of draw, a normal accidental is typeset.
114 (translator-property-description 'automaticPhrasing boolean? " If set,
115 the @ref{Lyric_phrasing_engraver} will match note heads of context
116 called Voice X to syllables from LyricsVoice called
117 X-<something>. This feature is turned on by default. See the example
118 file @file{lyrics-multi-stanza.ly}.
121 (translator-property-description 'automaticMelismata boolean? " If
122 set, \\addlyrics will assume that beams, slurs and ties signal
123 melismata, and align lyrics accordingly.
126 (translator-property-description 'barAlways boolean? " If set to true a bar line is drawn after each note.
128 (translator-property-description 'barCheckSynchronize boolean? "If
129 true then reset measurePosition when finding a barcheck. Turn off when
130 using barchecks in polyphonic music.")
131 (translator-property-description 'barNonAuto boolean? " If set to true then bar lines will not be printed
132     automatically; they must be explicitly created with @code{bar}
133     keywords.  Unlike with the @code{cadenza} keyword, measures are
134     still counted.  Bar generation will resume according to that
135     count if this property is set to zero.
137 (translator-property-description 'barNumberVisibility procedure? "Procedure that takes an int and returns whether the corresponding bar number should be printed")
138 (translator-property-description 'beamMelismaBusy boolean? "Signal if a beam is set when automaticMelismata is set")
139 (translator-property-description 'beatLength ly:moment? "The length of one beat in this time signature.")
140 (translator-property-description 'beatGrouping list?
141                                  "List of beatgroups. Eg. in 5/8 time #(list 2 3).")
142 (translator-property-description 'breakAlignOrder list? "Defines the order in which
143 prefatory matter (clefs, key signatures) appears, eg. this puts the
144 key signatures after the bar lines:
146 @example
147         \\property Score.breakAlignOrder = #'(
148           span-bar
149           breathing-sign
150           clef
151           staff-bar
152           key
153           time-signature
154         )
155 @end example
157 (translator-property-description 'busyGrobs list? "
158 a queue of (END-MOMENT . GROB) conses. This is for internal (C++) use only.
159 Use at your own risk.  This property contains the grobs for which  END-MOMENT >= NOW.
162 (translator-property-description 'centralCPosition number? "Place of
163 the central C, measured in half staffspaces.  Usually determined by
164 looking at clefPosition and clefGlyph.")
166 (translator-property-description
167  'changeMoment moment-pair?
168  "duration that voices are examined for differences, when
169 part-combining.  Usually unset or zero when combining threads into one
170 voice, and 1 (or the duration of one measure) when combining voices
171 into one staff.")
173 (translator-property-description
174  'chordNameFunction procedure?
175  "The function that converts lists of pitches to chord names.")
176 (translator-property-description
177  'chordNameExceptions list?
178  "Alist of chord exceptions. Contains (CHORD . MARKUP) entries.")
179 (translator-property-description
180  'chordNameSeparator markup?
181  "The markup object used to separate parts of a chord name.")
184 (translator-property-description 'chordChanges boolean? "Only show changes in chords scheme?")
185 (translator-property-description 'clefGlyph string? "Name of the symbol within the music font")
186 (translator-property-description 'clefOctavation integer? "Add
187 this much extra octavation. Values of 7 and -7 are common.")
189 (translator-property-description 'clefPosition number? "Where should
190 the center of the clef symbol go?  On systems with an odd number of
191 stafflines, the value 0 puts the clef on the middle staffline; a
192 positive value shifts it up, a negative value shifts it down.  The
193 unit of this distance is the half staff space.")
195 (translator-property-description 'combineParts boolean? "try to combine parts?")
196 (translator-property-description 'connectArpeggios boolean? " If
197 set, connect all arpeggios that are found.  In this way, you can make
198 arpeggios that cross staves.
200 (translator-property-description 'createKeyOnClefChange boolean? "Print a key signature whenever the clef is changed.")
201 (translator-property-description 'crescendoText markup? "Text to print at start of non-hairpin crecscendo, ie: @samp{cresc.}")
202 (translator-property-description 'crescendoSpanner symbol? "Type of spanner to be used for crescendi.  One of: @samp{hairpin}, @samp{line}, @samp{dashed-line}, @samp{dotted-line}.  If unset, hairpin type is used.")
203 (translator-property-description 'decrescendoText markup? "Text to print at start of non-hairpin decrecscendo, ie: @samp{dim.}")
204 (translator-property-description 'currentBarNumber integer? "Contains the current barnumber. This property is incremented at
205 every barline.
207 (translator-property-description 'currentCommandColumn ly:grob? "Grob that is X-parent to all current breakable (clef, key signature, etc.) items.")
208 (translator-property-description 'currentMusicalColumn ly:grob? "Grob that is X-parent to all non-breakable items (note heads, lyrics, etc.).")
209 (translator-property-description 'defaultBarType string? "Sets the default type of bar line.  Available bar types: [FIXME];
211 This variable is typically read at Score level, so overriding
212 Staff.defaultBarType will have no effect.
215 (translator-property-description 'devNullThread symbol? "User control of Thread_devnull_engraver: one of
216 @table @samp
217 @item (), or unset
218 Behave in normal way: remove one set of grobs when in unisolo.
219 @item always:
220 Remove any grob that comes along.
221 @item never:
222 Do nothing.
223 @end table
225 (translator-property-description 'devNullVoice symbol? "User control of Voice_devnull_engraver: one of
226 @table @samp
227 @item (), or unset
228 Behave in normal way: remove spanners when in unisolo.
229 @item always:
230 Remove any spanners that come along.
231 @item never:
232 Do nothing.
233 @end table
235 (translator-property-description 'decrescendoSpanner symbol? "Type of spanner to be used for decrescendi.  One of: @samp{hairpin}, @samp{line}, @samp{dashed-line}, @samp{dotted-line}.  If unset, hairpin type is used.")
237 (translator-property-description 'dynamicAbsoluteVolumeFunction procedure? "
238 [DOCUMENT-ME]
240 (translator-property-description 'explicitClefVisibility procedure? "visibility-lambda function for clef changes.")
244 (translator-property-description 'explicitKeySignatureVisibility
245 procedure? "visibility-lambda function for explicit Key changes;
246 \override of #'break-visibility will set the visibility for normal
247 (ie. at the start of the line) key signatures.")
249 (translator-property-description 'extraNatural boolean? "Whether to typeset an
250 extra natural sign before accidentals changing from a non-natural to 
251 another non-natural.
254 (translator-property-description 'finalizations list? "List of expressions to evaluate before proceeding to next time step. Internal variable.")
255 (translator-property-description 'followVoice boolean?
256                                  "if set, note heads are tracked  across staff switches by a thin line")
257 (translator-property-description 'fontSize integer?
258                                  "Used to set the relative size of all grobs
259 in a context. This is done using the @code{Font_size_engraver}.")
261 (translator-property-description 'forceClef boolean? "Show clef symbol, even if it hasn't changed. Only active for the first clef after the property is set, not for the full staff.")
262 (translator-property-description 'graceAccidentalSpace number? "amount space to alot for an accidental")
263 (translator-property-description 'graceAlignPosition ly:dir? "put the grace note before or after the main note?")
264 (translator-property-description 'highStringOne boolean? "Whether the 1st string is the string with
265 highest pitch on the instrument (used by the automatic string selector).")
266 (translator-property-description 'instr markup? "see @code{instrument}")
267 (translator-property-description 'instrument markup? " If @code{Instrument_name_engraver}
268 @cindex Instrument_name_engraver
269  is
270     added to the Staff translator, then the @code{instrument} property
271     is used to label the first line of the staff and the @code{instr}
272     property is used to label subsequent lines.  If the
273     @code{midiInstrument} property is not set, then @code{instrument}
274     is used to determine the instrument for MIDI output.")
276 (translator-property-description 'instrumentEqualizer procedure? "[DOCUMENT-ME]")
277 (translator-property-description 'instrumentSupport list? "
278 list of grobs to attach instrument name to. 
279 ")                               
280 (translator-property-description 'keyAccidentalOrder list? "
281 Alist that defines in what order  alterations should be printed.
282 The format is (NAME . ALTER), where NAME is from 0 .. 6 and ALTER from  -1, 1.
284 (translator-property-description 'keySignature list? "The current key signature. This is an alist containing (NAME . ALTER) or ((OCTAVE . NAME) . ALTER) or ((OCTAVE . NAME) . (ALTER . BARNUMBER)) pairs, where NAME is from 0.. 6 and ALTER from -2,-1,0,1,2. The optional barnumber contains the number of the measure of the accidental. FIXME: describe broken tie entries.")
286 (translator-property-description 'lastKeySignature list? "Last key
287 signature before a key signature change.")
289 (translator-property-description 'localKeySignature list? "the key
290 signature at this point in the measure.  The format is the same as for keySignature. Is reset at every bar line."
292 (translator-property-description 'localKeySignatureChanges list? "Experimental.
293  [DOCME]")
294 (translator-property-description 'measureLength ly:moment? "Length of one
295 measure in the current time signature last?")
296 (translator-property-description 'measurePosition ly:moment? " How much
297 of the current measure (measured in whole notes) have we had.  This
298 can be set manually to create incomplete measures (anacrusis, upbeat),
299 the start of the music.
301 (translator-property-description 'melismaBusy boolean? "Signifies
302 whether a melisma is active. This can be used to signal melismas on
303 top of those automatically detected. ")
304 (translator-property-description 'melismaEngraverBusy boolean? "See melismaBusy. This is set automatically.")
305 (translator-property-description 'midiInstrument string? "Name of the
306 MIDI instrument to use ")
307 (translator-property-description 'midiMinimumVolume number? "[DOCUMENT-ME]")
308 (translator-property-description 'midiMaximumVolume number? "[DOCUMENT-ME]")
309 (translator-property-description 'minimumFret number? "The tablature
310 auto string-selecting mechanism selects the highest string with a fret
311 not less than minimumFret")
312 (translator-property-description 'autoBeaming boolean? "If set to true
313 then beams are generated automatically.")
314 (translator-property-description 'noDirection boolean? "Don't set directions by a2-engraver when part-combining.")
315 (translator-property-description 'oneBeat ly:moment? "  How long does one beat in the current time signature last?")
316 (translator-property-description 'othersolo boolean? "FIXME")
317 (translator-property-description 'pedalSustainStrings list? "List of   string to print for sustain-pedal. Format is
318  (UP UPDOWN DOWN), where each of the three is the string to print when
319 this is done with the pedal.")
320 (translator-property-description 'pedalUnaCordaStrings list? "see pedalSustainStrings.")
321 (translator-property-description 'pedalSostenutoStrings list? "see pedalSustainStrings.")
323 (translator-property-description 'phrasingPunctuation string? "")
324 (translator-property-description 'rehearsalMark number-or-string? "")
325 (translator-property-description 'regularSpacingDelta ly:moment? "TODO")
326 (translator-property-description 'repeatCommands list? "This property is read to find any command of the form (volta . X), where X is a string or #f")
327 (translator-property-description 'scriptDefinitions list? "
328 Description of scripts. This is used by Script_engraver for typesetting note-super/subscripts. See @file{scm/script.scm} for more information
331 (translator-property-description 'restNumberThreshold number?
332                                  "If a multimeasure rest takes less
333 than this number of measures, no number is printed. ")
335 (translator-property-description 'scriptHorizontal boolean? "  Put
336 scripts left or right of note heads.  Support for this is limited.
337 Accidentals will collide with scripts.
339 (translator-property-description 'fingerHorizontalDirection integer?
340                                  "If set, put the middle fingerings to
341 the side of the note head. Use LEFT, RIGHT or unset.")
343 (translator-property-description 'skipBars boolean? " Set to true to
344 skip the empty bars that are produced by multimeasure notes and rests.
345 These bars will not appear on the printed output.  If not set (the
346 default) multimeasure notes and rests expand into their full length,
347 printing the appropriate number of empty bars so that synchronization
348 with other voices is preserved.
351 @example
352 @@lilypond[fragment,verbatim,center]
353 r1 r1*3 R1*3  \\\\property Score.skipBars= ##t r1*3 R1*3
355 @@end lilypond
356 @end example
359 (translator-property-description 'skipTypesetting boolean?
360                                  "When true, all no typesetting is done at
361 this moment, causing  the interpretation phase to go a lot faster. This can
362 help with debugging large scores.")
363 (translator-property-description 'slurMelismaBusy boolean? "Signal a slur if automaticMelismata is set.")
364 (translator-property-description 'solo boolean? "set if solo is detected by the part combiner.")
365 (translator-property-description 'soloADue boolean? "set Solo/A due texts in the part combiner?.")
366 (translator-property-description 'soloIIText string? "text for begin of solo for voice ``two'' when part-combining.")
367 (translator-property-description 'soloText string? "text for begin of solo when part-combining.")
368 (translator-property-description 'sparseTies boolean? "only create one tie per chord.")
369 (translator-property-description 'splitInterval number-pair? "part-combiner will separate its two voices (or threads) when interval between the two voices is contained in this range.")
370 (translator-property-description 'split-interval boolean? "set if part-combiner separated voices based on splitInterval.")
371 (translator-property-description 'squashedPosition integer? " Vertical position of
372 squashing for Pitch_squash_engraver.")
373 (translator-property-description 'stringOneTopmost boolean? "Whether the 1st string is printed on the
374 top line of the tablature.")
375 (translator-property-description 'stavesFound list? "list of all staff-symbols found.")
376 (translator-property-description 'stanza markup? "Stanza `number' to print at start of a verse. Use in LyricsVoice context.")
379 (translator-property-description 'stemLeftBeamCount integer? "
380 Specify the number of beams to draw on the left side of the next note.
381 Overrides automatic beaming.  The value is only used once, and then it
382 is erased.
384 (translator-property-description 'stemRightBeamCount integer? "idem, for the right side.")
386 (translator-property-description 'stz markup? "Abbreviated form for a stanza, see also Stanza property.")
387 (translator-property-description 'subdivideBeams boolean? "If set, multiple beams will be subdivided at beat
388 positions - by only drawing one beam over the beat.")
389 (translator-property-description 'systemStartDelimiter symbol? "Which grob to make for the start of the system/staff?")
390 (translator-property-description 'tablatureFormat procedure?
391                                  "Function formatting a tab notehead; it takes
392 a string number, a list of string tunings and Pitch object. It returns the text as a string.")
394 (translator-property-description 'textNonEmpty boolean? " If set
395 to true then text placed above or below the staff is not assumed to
396 have zero width.  @code{\fatText} and @code{\emptyText} are predefined
397 settings.
399 (translator-property-description 'tieMelismaBusy boolean? "Signal ties when automaticMelismata is set.")
400 (translator-property-description 'timeSignatureFraction number-pair? "
401 pair of numbers,  signifying the time signature. For example #'(4 . 4) is a 4/4time signature.")
402 (translator-property-description 'timing boolean? " Keep administration of measure length, position, bar number, etc?
403 Switch off for cadenzas.")
404 (translator-property-description 'tonic ly:pitch?
405                                  "The tonic of the current scale")
406 (translator-property-description 'transposing integer? "Transpose the MIDI output.  Set this property to the number of half-steps to transpose by.")
407 (translator-property-description 'tremoloFlags integer? "Number of tremolo flags to add if none is specified.")
408 (translator-property-description 'tupletNumberFormatFunction procedure?
409                                  "Function taking a music as input, producing a string. This function is called to determine the text to print on a tuplet bracket.")
411 (translator-property-description 'tupletInvisible boolean? "
412     If set to true, tuplet bracket creation is switched off
413 entirely. This has the same effect as setting both
414 @code{tupletNumberVisibility} and @code{tupletBracketVisibility} to
415 @code{#f}, but as this does not even create any grobs, this setting
416 uses less memory and time.")
417 (translator-property-description 'tupletSpannerDuration ly:moment? "
418 Normally a tuplet bracket is as wide as the
419 @code{  imes} expression that gave rise to it. By setting this
420 property, you can make brackets last shorter. Example
422 @example
423 @@lilypond[verbatim,fragment]
424 context Voice   imes 2/3 @{
425   property Voice.tupletSpannerDuration = #(ly:make-moment 1 4)
426   [c8 c c] [c c c]
428 @@end lilypond
429 @end example
431 (translator-property-description 'unirhythm boolean? "set if unirhythm is detected by the part combiner.")
432 (translator-property-description 'unisilence boolean? "set if unisilence is detected by the part combiner.")
433 (translator-property-description 'unison boolean? "set if unisono is detected  by the part combiner. .")
434 (translator-property-description 'verticalAlignmentChildCallback
435 procedure? "what callback to add to children of a vertical alignment.
436 It determines what alignment procedure is used on the alignment
437 itself.  .")
438 (translator-property-description
439  'voltaOnThisStaff boolean?
440  "Normally, volta brackets are put only on the topmost staff. Setting this variable to true, will force a bracket to be on this staff as well.")
441 (translator-property-description 'voltaSpannerDuration ly:moment? "maximum duration of the volta bracket.
443     Set to a duration to control the size of the brackets printed by
444 @code{\\alternative}.  It specifies the number of whole notes duration
445 to use for the brackets.  This can be used to shrink the length of
446 brackets in the situation where one alternative is very large.  It may
447 have odd effects if the specified duration is longer than the music
448 given in an @code{\\alternative}.
450 (translator-property-description 'whichBar string?
451                                  "This property is read to determine what type of barline to create.
453 Example:
454 @example
455 \\property Staff.whichBar = \"|:\"
456 @end example
458 This will create a start-repeat bar in this staff only.
460 If not set explicitly (by property or @code{\bar}), this is set
461 according to values of @code{defaultBarType}, @code{barAlways},
462 @code{barNonAuto} and @code{measurePosition}.
464 Valid values are described in @ref{(lilypond-internals)bar-line-interface}.
467 (translator-property-description 'stringTunings list? "The tablature strings tuning. Must be a list of the different semitons pitch of each string (starting by the lower one).")