]> git.donarmstrong.com Git - lilypond.git/blob - scm/define-translator-properties.scm
*** empty log message ***
[lilypond.git] / scm / define-translator-properties.scm
1 ;;;; translator-property-description.scm -- part of backend documentation
2 ;;;;
3 ;;;;  source file of the GNU LilyPond music typesetter
4 ;;;; 
5 ;;;; (c)  1998--2003  Han-Wen Nienhuys <hanwen@cs.uu.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 (equal? #f (object-property symbol 'translation-doc)))
13       (begin
14         (ly:warn (string-append "Redefining " (symbol->string symbol) "\n"))
15         (exit 2)
16       ))
17   
18   (set-object-property! symbol 'translation-type? type?)
19   (set-object-property! symbol 'translation-doc description)
20   (set! all-translation-properties (cons symbol all-translation-properties))
21   )
22
23
24
25 (translator-property-description 'acceptHashTable vector? "Internal
26 variable: store table with MusicName to Engraver entries.")
27 (translator-property-description 'acknowledgeHashTable vector?
28 "Internal variable: store interface to engraver smob table for current
29 context. Don't mess with this.")
30 (translator-property-description 'aDueText string? "text for begin of a due")
31 (translator-property-description 'alignBassFigureAccidentals boolean?
32                                  "If true, then the accidentals are aligned in bass figure context.")
33
34 (translator-property-description 'allowBeamBreak boolean?
35                                  "If true allow line breaks during beams.")
36 (translator-property-description 'associatedVoice string? "Name of the
37 Voice that has the melody for this LyricsVoice.")
38 (translator-property-description 'autoBeamSettings list? "Specifies
39 when automatically generated beams should begin and end.  The elements
40 have the format:
41
42 @example
43
44    function shortest-duration-in-beam time-signature
45
46 where
47
48     function = begin or end
49     shortest-duration-in-beam = numerator denominator; eg: 1 16
50     time-signature = numerator denominator, eg: 4 4
51
52 unspecified or wildcard entries for duration or time-signature
53 are given by * *
54
55 The user can override beam begin or end time by pushing a wildcard entries
56 '(begin * * * *) or '(end * * * *) resp., eg:
57
58     property Voice.autoBeamSettings push #'(end * * * *) = #(ly:make-moment 1 4)
59
60 The head of the list:
61     '(
62 ((end * * 3 2) . ,(ly:make-moment 1 2))
63 ((end 1 16 3 2) . ,(ly:make-moment 1 4))
64 ((end 1 32 3 2) . ,(ly:make-moment 1 8))
65      ...
66     )
67
68 @end example")
69
70 ;; "
71
72 (translator-property-description 'autoAccidentals list? "List of
73 different ways to typeset an accidental. All algorithms in the list
74 are tried, and the one returning the most accidentals is used.
75 Each entry is either a symbol containg a context name or a name-value
76 pair containing an algorithm-description.
77 The list must begin with a symbol (context name).
78 The symbols denote in which context THE FOLLOWING algorithms (until next symbol) 
79 will be interpreted. All notes in the interpretation context will share accidentals.
80 The contexts must be stated in order, innermost first.
81 The algorithms are:
82 @table @samp
83 @item same-octave:
84 This is the default algorithm. Accidentals are typeset if the note changes
85 the accidental of that note in that octave. Accidentals lasts to the end of the measure 
86 and then as many measures as specified in the value. I.e. 1 means to the end
87 of next measure, -1 means to the end of previous measure (that is: no duration at all), etc. #t means forever.
88 @item any-octave:
89 Accidentals are typeset if the note is different from 
90 the previous note on the same pitch in any octave. The value has same meaning as in
91 same-octave.
92 @end table
93 ")
94 (translator-property-description 'autoBeaming boolean? "If set to true
95 then beams are generated automatically.")
96
97 (translator-property-description 'autoCautionaries list? "List similar to
98 autoAccidentals, but it controls cautionary accidentals rather than
99 normal ones. Both lists are tried, and the one giving the most accidentals
100 wins. In case of draw, a normal accidental is typeset.
101 ")
102 (translator-property-description 'automaticBars boolean? " If set to true then bar lines will not be printed
103     automatically; they must be explicitly created with @code{bar}
104     keywords.  Unlike with the @code{cadenza} keyword, measures are
105     still counted.  Bar generation will resume according to that
106     count if this property is set to zero.
107 ")
108 (translator-property-description 'automaticPhrasing boolean? " If set,
109 the @ref{Lyric_phrasing_engraver} will match note heads of context
110 called Voice X to syllables from LyricsVoice called
111 X-<something>. This feature is turned on by default. See the example
112 file @file{lyrics-multi-stanza.ly}.
113 ")
114
115 (translator-property-description 'automaticMelismata boolean? " If
116 set, \\addlyrics will assume that beams, slurs and ties signal
117 melismata, and align lyrics accordingly.
118 ")
119
120
121 (translator-property-description 'barAlways boolean? "If set to true a bar line is drawn after each note.
122 ")
123 (translator-property-description 'barCheckSynchronize boolean? "If
124 true then reset measurePosition when finding a barcheck. Turn off when
125 using barchecks in polyphonic music.")
126 (translator-property-description 'barNumberVisibility procedure? "Procedure that takes an int and returns whether the corresponding bar number should be printed")
127 (translator-property-description 'bassFigureFormatFunction procedure? "DOCME")
128 (translator-property-description 'beamMelismaBusy boolean? "Signal if a beam is set when automaticMelismata is set")
129 (translator-property-description 'beatLength ly:moment? "The length of one beat in this time signature.")
130 (translator-property-description 'beatGrouping list?
131                                  "List of beatgroups. Eg. in 5/8 time #(list 2 3).")
132
133 (translator-property-description 'breakAlignOrder list? "Defines the order in which
134 prefatory matter (clefs, key signatures) appears, eg. this puts the
135 key signatures after the bar lines:
136
137 @example
138         \\property Score.breakAlignOrder = #'(
139           span-bar
140           breathing-sign
141           clef
142           staff-bar
143           key
144           time-signature
145         )
146 @end example
147 ")
148 (translator-property-description 'busyGrobs list? "
149 a queue of (END-MOMENT . GROB) conses. This is for internal (C++) use only.
150 Use at your own risk.  This property contains the grobs for which  END-MOMENT >= NOW.
151 ")
152
153 (translator-property-description 'centralCPosition number? "Place of
154 the central C, measured in half staffspaces.  Usually determined by
155 looking at clefPosition and clefGlyph.")
156
157 (translator-property-description
158  'changeMoment moment-pair?
159  "duration that voices are examined for differences, when
160 part-combining.  Usually unset or zero when combining threads into one
161 voice, and 1 (or the duration of one measure) when combining voices
162 into one staff.")
163
164 (translator-property-description
165  'chordNameFunction procedure?
166  "The function that converts lists of pitches to chord names.")
167 (translator-property-description
168  'chordNoteNamer procedure?
169  "Function that converts from a pitch object to a text markup. Used for single pitches.")
170 (translator-property-description
171  'chordRootNamer procedure?
172  "Function that converts from a pitch object to a text markup. Used for chords.")
173 (translator-property-description
174  'chordNameExceptions list?
175  "Alist of chord exceptions. Contains (CHORD . MARKUP) entries.")
176 (translator-property-description
177  'chordNameExceptionsFull list?
178  "Alist of chord exceptions. Contains (CHORD . (MARKUP)) entries.")
179 (translator-property-description
180  'chordNameExceptionsPartial list?
181  "Alist of partial chord exceptions. Contains (CHORD . (PREFIX-MARKUP SUFFIX-MARKUP)) entries.")
182 (translator-property-description
183  'chordNameSeparator markup?
184  "The markup object used to separate parts of a chord name.")
185
186 (translator-property-description 'chordChanges boolean? "Only show changes in chords scheme?")
187 (translator-property-description 'clefGlyph string? "Name of the symbol within the music font")
188 (translator-property-description 'clefOctavation integer? "Add
189 this much extra octavation. Values of 7 and -7 are common.")
190
191 (translator-property-description 'clefPosition number? "Where should
192 the center of the clef symbol go?  On systems with an odd number of
193 stafflines, the value 0 puts the clef on the middle staffline; a
194 positive value shifts it up, a negative value shifts it down.  The
195 unit of this distance is the half staff space.")
196
197 (translator-property-description 'combineParts boolean? "try to combine parts?")
198 (translator-property-description 'connectArpeggios boolean? " If
199 set, connect all arpeggios that are found.  In this way, you can make
200 arpeggios that cross staves.
201 ")
202 (translator-property-description 'createKeyOnClefChange boolean? "Print a key signature whenever the clef is changed.")
203 (translator-property-description 'crescendoText markup? "Text to print at start of non-hairpin crecscendo, ie: @samp{cresc.}")
204 (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.")
205 (translator-property-description 'decrescendoText markup? "Text to print at start of non-hairpin decrecscendo, ie: @samp{dim.}")
206 (translator-property-description 'currentBarNumber integer? "Contains the current barnumber. This property is incremented at
207 every barline.
208 ")
209 (translator-property-description 'currentCommandColumn ly:grob? "Grob that is X-parent to all current breakable (clef, key signature, etc.) items.")
210 (translator-property-description 'currentMusicalColumn ly:grob? "Grob that is X-parent to all non-breakable items (note heads, lyrics, etc.).")
211 (translator-property-description 'defaultBarType string? "Sets the default type of bar line.  Available bar types: [FIXME];
212
213 This variable is typically read at Score level, so overriding
214 Staff.defaultBarType will have no effect.
215
216 ")
217 (translator-property-description 'devNullThread symbol? "User control of Thread_devnull_engraver: one of
218 @table @samp
219 @item (), or unset
220 Behave in normal way: remove one set of grobs when in unisolo.
221 @item always:
222 Remove any grob that comes along.
223 @item never:
224 Do nothing.
225 @end table
226 ")
227 (translator-property-description 'devNullVoice symbol? "User control of Voice_devnull_engraver: one of
228 @table @samp
229 @item (), or unset
230 Behave in normal way: remove spanners when in unisolo.
231 @item always:
232 Remove any spanners that come along.
233 @item never:
234 Do nothing.
235 @end table
236 ")
237 (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.")
238
239 (translator-property-description 'dynamicAbsoluteVolumeFunction procedure? "
240 [DOCUMENT-ME]
241 ")
242 (translator-property-description 'explicitClefVisibility procedure? "visibility-lambda function for clef changes.")
243
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.")
248
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.
252 ")
253
254 (translator-property-description 'extraVerticalExtent number-pair?
255 "extra vertical extent, same format as MinimumVerticalExtent")
256
257
258 (translator-property-description 'finalizations list? "List of expressions to evaluate before proceeding to next time step. Internal variable.")
259 (translator-property-description 'followVoice boolean?
260                                  "if set, note heads are tracked  across staff switches by a thin line")
261 (translator-property-description 'fontSize integer?
262                                  "Used to set the relative size of all grobs
263 in a context. This is done using the @code{Font_size_engraver}.")
264
265 (translator-property-description
266  'fingeringOrientations list?
267  "List of symbols, containing left, right, up and/or down. This list determines where fingerings are put wrt. to the chord being fingered.")
268
269 (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.")
270
271 (translator-property-description 'graceSettings vector?
272                                  "Overrides for grace notes. This
273 property should be manipulated through the @code{add-grace-property}
274 function.")
275
276 (translator-property-description 'highStringOne boolean? "Whether the
277 1st string is the string with highest pitch on the instrument (used by
278 the automatic string selector).")
279 (translator-property-description 'instr markup? "see @code{instrument}")
280 (translator-property-description 'instrument markup? " If @code{Instrument_name_engraver}
281 @cindex Instrument_name_engraver
282  is
283     added to the Staff translator, then the @code{instrument} property
284     is used to label the first line of the staff and the @code{instr}
285     property is used to label subsequent lines.  If the
286     @code{midiInstrument} property is not set, then @code{instrument}
287     is used to determine the instrument for MIDI output.")
288
289 (translator-property-description 'instrumentEqualizer procedure? "[DOCUMENT-ME]")
290 (translator-property-description 'instrumentSupport list? "
291 list of grobs to attach instrument name to. 
292 ")                               
293 (translator-property-description 'keyAccidentalOrder list? "
294 Alist that defines in what order  alterations should be printed.
295 The format is (NAME . ALTER), where NAME is from 0 .. 6 and ALTER from  -1, 1.
296 ")
297 (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.")
298
299 (translator-property-description 'lastKeySignature list? "Last key
300 signature before a key signature change.")
301
302 (translator-property-description 'localKeySignature list? "the key
303 signature at this point in the measure.  The format is the same as for keySignature. Is reset at every bar line."
304
305 (translator-property-description 'localKeySignatureChanges list? "Experimental.
306  [DOCME]")
307 (translator-property-description 'majorSevenSymbol markup? "How should
308 the major7 be formatted in a chord name?")
309 (translator-property-description 'measureLength ly:moment? "Length of one
310 measure in the current time signature last?")
311 (translator-property-description 'measurePosition ly:moment? "How much
312 of the current measure (measured in whole notes) have we had.  This
313 can be set manually to create incomplete measures (anacrusis, upbeat),
314 the start of the music.
315 ")
316 (translator-property-description 'melismaBusy boolean? "Signifies
317 whether a melisma is active. This can be used to signal melismas on
318 top of those automatically detected. ")
319 (translator-property-description 'melismaBusyProperties list?
320                                  "List of  properties (symbols) to
321 determine whether a melisma  is playing.")
322 (translator-property-description 'melismaEngraverBusy boolean? "See melismaBusy. This is set automatically.")
323 (translator-property-description 'metronomeMarkFormatter procedure?
324                                  "How to produce a metronome markup.
325 Called with 2 arguments,  event and context.")
326 (translator-property-description 'midiInstrument string? "Name of the
327 MIDI instrument to use ")
328 (translator-property-description 'midiMinimumVolume number? "[DOCUMENT-ME]")
329 (translator-property-description 'midiMaximumVolume number? "[DOCUMENT-ME]")
330 (translator-property-description 'minimumFret number? "The tablature
331 auto string-selecting mechanism selects the highest string with a fret
332 not less than minimumFret")
333 (translator-property-description 'minimumVerticalExtent number-pair?
334 "minimum vertical extent, same format as VerticalExtent")
335 (translator-property-description 'recordEventSequence procedure?
336                                  "Upon termination of this context,
337 this function is called with current context and a list of music
338 objects.  The list of contains entries with start times, music objects
339 and whether they're processed in this context.")
340
341 (translator-property-description 'noDirection boolean? "Don't set directions by a2-engraver when part-combining.")
342 (translator-property-description
343  'originalCentralCPosition integer?
344  "Used for temporary overriding central C in octavation brackets. ")
345 (translator-property-description 'othersolo boolean? "FIXME")
346 (translator-property-description 'ottavation string? "If set, the text
347 for an 8va spanner. Changing this implies a new text spanner. ")
348 (translator-property-description 'pedalSustainStrings list? "List of   string to print for sustain-pedal. Format is
349  (UP UPDOWN DOWN), where each of the three is the string to print when
350 this is done with the pedal.")
351 (translator-property-description 'pedalUnaCordaStrings list? "see pedalSustainStrings.")
352 (translator-property-description 'pedalSostenutoStrings list? "see pedalSustainStrings.")
353 (translator-property-description 'pedalSustainStyle symbol? "A symbol
354 that indicates how to print sustain pedals: text, bracket or mixed
355 (both).")
356 (translator-property-description 'pedalUnaCordaStyle symbol? "see pedalSustainStyle.")
357 (translator-property-description 'pedalSostenutoStyle symbol? "see pedalSustainStyle.")
358
359 (translator-property-description 'phrasingPunctuation string?
360                                  "A string of characters that are considered
361 lyric punctuation")
362 (translator-property-description 'rehearsalMark number-or-string? "The
363 last rehearsal mark printed.")
364 (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")
365 (translator-property-description 'scriptDefinitions list? "
366 Description of scripts. This is used by Script_engraver for typesetting note-super/subscripts. See @file{scm/script.scm} for more information
367 ")
368
369 (translator-property-description 'restNumberThreshold number?
370                                  "If a multimeasure rest takes less
371 than this number of measures, no number is printed. ")
372
373 (translator-property-description 'scriptHorizontal boolean? "  Put
374 scripts left or right of note heads.  Support for this is limited.
375 Accidentals will collide with scripts.
376 ")
377 (translator-property-description 'skipBars boolean? "If set to true, then
378 skip the empty bars that are produced by multimeasure notes and rests.
379 These bars will not appear on the printed output.  If not set (the
380 default) multimeasure notes and rests expand into their full length,
381 printing the appropriate number of empty bars so that synchronization
382 with other voices is preserved.
383
384
385 @example
386 @@lilypond[fragment,verbatim,center]
387 r1 r1*3 R1*3  \\\\property Score.skipBars= ##t r1*3 R1*3
388
389 @@end lilypond
390 @end example
391
392 ")
393 (translator-property-description 'skipTypesetting boolean?
394                                  "When true, all no typesetting is done at
395 this moment, causing  the interpretation phase to go a lot faster. This can
396 help with debugging large scores.")
397 (translator-property-description 'slurMelismaBusy boolean? "Signal a slur if automaticMelismata is set.")
398 (translator-property-description 'solo boolean? "set if solo is detected by the part combiner.")
399 (translator-property-description 'soloADue boolean? "set Solo/A due texts in the part combiner?.")
400 (translator-property-description 'soloIIText string? "text for begin of solo for voice ``two'' when part-combining.")
401 (translator-property-description 'soloText string? "text for begin of solo when part-combining.")
402 (translator-property-description 'sparseTies boolean? "only create one tie per chord.")
403 (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.")
404 (translator-property-description 'split-interval boolean? "set if part-combiner separated voices based on splitInterval.")
405 (translator-property-description 'squashedPosition integer? " Vertical position of
406 squashing for Pitch_squash_engraver.")
407 (translator-property-description 'stringOneTopmost boolean? "Whether the 1st string is printed on the
408 top line of the tablature.")
409 (translator-property-description 'stavesFound list? "list of all staff-symbols found.")
410 (translator-property-description 'stanza markup? "Stanza `number' to print at start of a verse. Use in LyricsVoice context.")
411 (translator-property-description 'stemLeftBeamCount integer? "
412 Specify the number of beams to draw on the left side of the next note.
413 Overrides automatic beaming.  The value is only used once, and then it
414 is erased.
415 .")
416 (translator-property-description 'stemRightBeamCount integer? "idem, for the right side.")
417 (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).")
418 (translator-property-description 'stz markup? "Abbreviated form for a stanza, see also Stanza property.")
419 (translator-property-description 'subdivideBeams boolean? "If set, multiple beams will be subdivided at beat
420 positions - by only drawing one beam over the beat.")
421 (translator-property-description 'systemStartDelimiter symbol? "Which grob to make for the start of the system/staff?")
422 (translator-property-description 'tablatureFormat procedure?
423                                  "Function formatting a tab notehead; it takes
424 a string number, a list of string tunings and Pitch object. It returns the text as a string.")
425
426 (translator-property-description 'tieMelismaBusy boolean? "Signal ties when automaticMelismata is set.")
427 (translator-property-description 'timeSignatureFraction number-pair? "
428 pair of numbers,  signifying the time signature. For example #'(4 . 4) is a 4/4time signature.")
429 (translator-property-description 'timing boolean? " Keep administration of measure length, position, bar number, etc?
430 Switch off for cadenzas.")
431 (translator-property-description 'tonic ly:pitch?
432                                  "The tonic of the current scale")
433 (translator-property-description 'transposing integer? "Transpose the MIDI output.  Set this property to the number of half-steps to transpose by.")
434 (translator-property-description 'tremoloFlags integer? "Number of tremolo flags to add if none is specified.")
435 (translator-property-description 'tupletNumberFormatFunction procedure?
436                                  "Function taking a music as input, producing a string. This function is called to determine the text to print on a tuplet bracket.")
437
438
439 ;; remove this? 
440 (translator-property-description 'tupletInvisible boolean? "
441     If set to true, tuplet bracket creation is switched off
442 entirely. This has the same effect as setting both
443 @code{tupletNumberVisibility} and @code{tupletBracketVisibility} to
444 @code{#f}, but as this does not even create any grobs, this setting
445 uses less memory and time.")
446
447 (translator-property-description 'tupletSpannerDuration ly:moment? "
448 Normally a tuplet bracket is as wide as the
449 @code{  imes} expression that gave rise to it. By setting this
450 property, you can make brackets last shorter. Example
451
452 @example
453 @@lilypond[verbatim,fragment]
454 context Voice   imes 2/3 @{
455   property Voice.tupletSpannerDuration = #(ly:make-moment 1 4)
456   c-[8 c c-] c-[ c c-]
457 @}
458 @@end lilypond
459 @end example
460 .")
461 (translator-property-description 'unirhythm boolean? "set if unirhythm is detected by the part combiner.")
462 (translator-property-description 'unisilence boolean? "set if unisilence is detected by the part combiner.")
463 (translator-property-description 'unison boolean? "set if unisono is detected  by the part combiner. .")
464 (translator-property-description 'verticalAlignmentChildCallback
465 procedure? "what callback to add to children of a vertical alignment.
466 It determines what alignment procedure is used on the alignment
467 itself.  .")
468 (translator-property-description 'verticalExtent number-pair? "hard
469 coded vertical extent.  The format is a pair of dimensions, for
470 example, this sets the sizes of a staff to 10 (5+5) staffspaces high.
471
472 @example
473 property Staff.verticalExtent = #(-5.0 . 5.0)
474 @end example
475
476 VerticalExtent, MinimumVerticalExtent and ExtraVerticalExtent are
477 predefined in all relevant contexts to @code{#f}, so they will not
478 inherit values.
479
480 Note that these VerticalExtents can only operate on vertical groups,
481 and therefore only work in contexts which contain an
482 @code{Axis_group_engraver}.
483 ")
484
485 (translator-property-description 'voltaOnThisStaff boolean?
486  "Normally, volta brackets are put only on the topmost staff. Setting
487 this variable to true, will force a bracket to be on this staff as
488 well.")
489
490 (translator-property-description 'voltaSpannerDuration ly:moment? "maximum duration of the volta bracket.
491
492     Set to a duration to control the size of the brackets printed by
493 @code{\\alternative}.  It specifies the number of whole notes duration
494 to use for the brackets.  This can be used to shrink the length of
495 brackets in the situation where one alternative is very large.  It may
496 have odd effects if the specified duration is longer than the music
497 given in an @code{\\alternative}.
498 .")
499 (translator-property-description 'whichBar string?
500                                  "This property is read to determine what type of barline to create.
501
502 Example:
503 @example
504 \\property Staff.whichBar = \"|:\"
505 @end example
506
507 This will create a start-repeat bar in this staff only.
508
509 If not set explicitly (by property or @code{\bar}), this is set
510 according to values of @code{defaultBarType}, @code{barAlways},
511 @code{barNonAuto} and @code{measurePosition}.
512
513 Valid values are described in @ref{(lilypond-internals)bar-line-interface}.
514
515 .")