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