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