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