]> git.donarmstrong.com Git - lilypond.git/blob - scm/define-grob-properties.scm
\rounded-box, final take
[lilypond.git] / scm / define-grob-properties.scm
1 ;;;; grob-property-description.scm -- part of generated backend documentation
2 ;;;;
3 ;;;;  source file of the GNU LilyPond music typesetter
4 ;;;; 
5 ;;;; (c) 1998--2007  Han-Wen Nienhuys <hanwen@xs4all.nl>
6 ;;;;                 Jan Nieuwenhuizen <janneke@gnu.org>
7
8 (define (define-grob-property symbol type? description)
9   (if (not (equal? (object-property symbol 'backend-doc) #f))
10       (ly:error (_ "symbol ~S redefined") symbol))
11   
12   (set-object-property! symbol 'backend-type? type?)
13   (set-object-property! symbol 'backend-doc description)
14   symbol)
15
16 ;; put this in an alist?
17 (define-public
18   all-user-grob-properties
19
20   (map
21    (lambda (x)
22      (apply define-grob-property x))
23
24    `(
25      (X-extent ,number-pair? "Hard coded extent in X@tie{}direction.")
26      (X-offset ,number? "The horizontal amount that this object is
27 moved relative to its X-parent.")
28      (Y-extent ,number-pair? "See @code{X-extent}.")
29      (Y-offset ,number? "The vertical amount that this object is moved
30 relative to its Y-parent.")
31
32      (add-stem-support ,boolean? "If set, the @code{Stem} object is
33 included in this script's support.") 
34      (after-line-breaking ,boolean? "Dummy property, used to trigger
35 callback for @code{after-line-breaking}.")
36      (align-dir ,ly:dir? "Which side to align? @code{-1}: left side,
37 @code{0}: around center of width, @code{1}: right side.")
38      (allow-loose-spacing ,boolean? "If set, column can be detached
39 from main spacing.")
40      (allow-span-bar ,boolean? "If false, no inter-staff barline will
41 be created below this barline.")
42      (alteration ,number? "Alteration numbers for accidental.")
43      (alteration-alist ,list? "List of @code{(@var{pitch}
44 . @var{accidental})} pairs for key signature.")
45      (annotation ,string? "Annotate a grob for debug purposes.")
46      (arpeggio-direction ,ly:dir? "If set, put an arrow on the
47 arpeggio squiggly line.")
48      (arrow-length ,number? "Arrow length.")
49      (arrow-width ,number? "Arrow width.")
50      (auto-knee-gap ,ly:dimension? "If a gap is found between note
51 heads where a horizontal beam fits that is larger than this number,
52 make a kneed beam.")
53      (average-spacing-wishes ,boolean? "If set, the spacing wishes
54 are averaged over staves.")
55      (avoid-note-head ,boolean? "If set, the stem of a chord does not
56 pass through all note heads, but starts at the last note head.")
57      (avoid-slur ,symbol? "Method of handling slur collisions.
58 Choices are @code{around}, @code{inside}, @code{outside}.  If unset,
59 scripts and slurs ignore each other.  @code{around} only moves the
60 script if there is a collision; @code{outside} always moves the
61 script.")
62      (axes ,list? "List of axis numbers.  In the case of alignment
63 grobs, this should contain only one number.")
64
65      (bar-size ,ly:dimension? "The size of a bar line.")
66      (barre-type ,symbol? "Type of barre indication used in a fret
67 diagram.  Choices include @code{curved} and @code{straight}.")
68      (base-shortest-duration ,ly:moment? "Spacing is based on the
69 shortest notes in a piece.  Normally, pieces are spaced as if notes
70 at least as short as this are present.")
71      (baseline-skip ,ly:dimension? "Distance between base lines of
72 multiple lines of text.")
73      (beam-thickness ,ly:dimension? "Beam thickness, measured in
74 @code{staff-space} units.")
75      (beam-width ,ly:dimension? "Width of the tremolo sign.")
76      (beamed-stem-shorten ,list? "How much to shorten beamed stems,
77 when their direction is forced.  It is a list, since the value is
78 different depending on the number of flags and beams.")
79      (beaming ,pair? "Pair of number lists.  Each number list
80 specifies which beams to make.  @code{0}@tie{}is the central beam,
81 @code{1}@tie{}is the next beam toward the note, etc.  This
82 information is used to determine how to connect the beaming patterns
83 from stem to stem inside a beam.")
84      (before-line-breaking ,boolean? "Dummy property, used to trigger
85 a callback function.")
86      (between-cols ,pair? "Where to attach a loose column to.")
87      (bound-padding ,number? "The amount of padding to insert around
88 spanner bounds.")
89      (bound-details ,list? "An alist of properties for determining
90 attachments of spanners to edges.")
91      (bracket-flare ,number-pair? "A pair of numbers specifying how
92 much edges of brackets should slant outward.  Value @code{0.0} means
93 straight edges.")
94      (bracket-visibility ,boolean-or-symbol? "This controls the
95 visibility of the tuplet bracket.  Setting it to false prevents
96 printing of the bracket.  Setting the property to @code{if-no-beam}
97 makes it print only if there is no beam associated with this tuplet
98 bracket.")
99      (break-align-anchor ,number? "Grobs aligned to this break-align
100 grob will have their X-offsets shifted by this number.  In barlines,
101 for example, this is used to position grobs relative to the (visual)
102 center of the barline.")
103      (break-align-anchor-alignment ,number? "Read by
104 ly:break-aligned-interface::calc-extent-aligned-anchor for aligning
105 an anchor to a grobs extent")
106      (break-align-symbol ,symbol? "This key is used for aligning and
107 spacing breakable items.")
108      (break-align-symbols ,list? "A list of symbols that determine
109 which break-aligned grobs to align this to.  If the grob selected by
110 the first symbol in the list is invisible due to break-visibility,
111 we will align to the next grob (and so on).")
112      (break-align-orders ,vector? "Defines the order in which
113 prefatory matter (clefs, key signatures) appears.  The format is a
114 vector of length@tie{}3, where each element is one order for
115 end-of-line, middle of line, and start-of-line, respectively.  An
116 order is a list of symbols.
117
118 For example, clefs are put after key signatures by setting
119
120 @example
121 \\override Score.BreakAlignment #'break-align-orders =
122   #(make-vector 3 '(span-bar
123                     breathing-sign
124                     staff-bar
125                     key
126                     clef
127                     time-signature))
128 @end example")
129      (break-overshoot ,number-pair? "How much does a broken spanner
130 stick out of its bounds?")
131      (break-visibility ,vector? "A vector of 3@tie{}booleans,
132 @code{#(@var{end-of-line} @var{unbroken} @var{begin-of-line})}.
133 @code{#t} means visible, @code{#f} means killed.")
134      (breakable ,boolean? "Allow breaks here.")
135
136      (c0-position ,integer? "An integer indicating the position of
137 middle@tie{}C.")
138      (clip-edges ,boolean? "Allow outward pointing beamlets at the
139 edges of beams?")
140      (collapse-height ,ly:dimension? "Minimum height of system start
141 delimiter.  If equal or smaller, the bracket/brace/line is removed.")
142      (color ,color? "The color of this grob.")
143      (common-shortest-duration ,ly:moment? "The most common shortest
144 note length.  This is used in spacing.  Enlarging this sets the score
145 tighter.")
146      (concaveness ,number? "A beam is concave if its inner stems are
147 closer to the beam than the two outside stems.  This number is a
148 measure of the closeness of the inner stems.  It is used for damping
149 the slope of the beam.")
150      (connect-to-neighbor ,pair? "Pair of booleans, indicating whether
151 this grob looks as a continued break.")
152      (control-points ,list? "List of offsets (number pairs) that form
153 control points for the tie, slur, or bracket shape.  For B@'eziers,
154 this should list the control points of a third-order B@'ezier curve.")
155      (corner-radius ,number? "The diameter of a blot, in rounded
156 boxes. If set to #0, the corners will we completely sharp; default is
157 #1. If set to a too big value, it will be ignored and the shortest
158 edges of the box will be drawn as semicircles."
159
160      (damping ,number? "Amount of beam slope damping.")
161      (dash-fraction ,number? "Size of the dashes, relative to
162 @code{dash-period}.  Should be between @code{0.0} (no line) and
163 @code{1.0} (continuous line).")
164      (dash-period ,number? "The length of one dash together with
165 whitespace.  If negative, no line is drawn at all.")
166      (default-direction ,ly:dir? "Direction determined by note head
167 positions.")
168      (digit-names ,vector "Names for string finger digits.")
169      (direction ,ly:dir? "If @code{side-axis} is @code{1} (or
170 @code{#X}), then this property determines whether the object is placed
171 @code{#LEFT}, @code{#CENTER} or @code{#RIGHT} with respect to the
172 other object.  Otherwise, it determines whether the object is placed
173 @code{#UP}, @code{#CENTER} or @code{#DOWN}.  Numerical values may also
174 be used: @code{#UP}=@code{1}, @code{#DOWN}=@code{-1},
175 @code{#LEFT}=@code{-1}, @code{#RIGHT}=@code{1}, @code{CENTER}=@code{0}
176 but also other numerical values are permitted.")
177      (dot-color ,symbol? "Color of dots.  Options include 
178 @code{black} and @code{white}.")
179      (dot-count ,integer? "The number of dots.")
180      (dot-radius ,number? "Radius of dots.")
181      (duration-log ,integer? "The 2-log of the note head duration,
182 i.e., @code{0} = whole note, @code{1} = half note, etc.")
183
184      (eccentricity ,number? "How asymmetrical to make a slur.
185 Positive means move the center to the right.")
186      (edge-height ,pair? "A pair of numbers specifying the heights of
187 the vertical edges: @code{(@var{left-height} . @var{right-height})}.")
188      (edge-text ,pair? "A pair specifying the texts to be set at the
189 edges: @code{(@var{left-text} . @var{right-text})}.")
190      (expand-limit ,integer? "Maximum number of measures expanded in
191 church rests.")
192      (extra-X-extent ,number-pair? "A grob is enlarged in
193 X@tie{}dimension by this much.")
194      (extra-Y-extent ,number-pair? "See @code{extra-X-extent}.")
195      ;; remove me?
196      (extra-dy ,number? "Slope glissandi this much extra.")
197      (extra-offset ,number-pair? "A pair representing an offset.  This
198 offset is added just before outputting the symbol, so the typesetting
199 engine is completely oblivious to it.  The values are measured in
200 @code{staff-space} units of the staff's @code{StaffSymbol}.")
201      (extra-spacing-width ,number-pair? "In the horizontal spacing
202 problem, we pad each item by this amount (by adding the @q{car} on the
203 left side of the item and adding the @q{cdr} on the right side of the
204 item).  In order to make a grob take up no horizontal space at all,
205 set this to @code{(+inf.0 . -inf.0)}.")
206
207      (finger-code ,symbol? "Code for the type of fingering indication
208 in a fret diagram.  Options include @code{none}, @code{in-dot}, and
209 @code{below-string}.")
210      (flag-count ,number? "The number of tremolo beams.")
211      (flag-style ,symbol? "A string determining what style of flag
212 glyph is typeset on a @code{Stem}.  Valid options include @code{()}
213 and @code{mensural}.  Additionally, @code{no-flag} switches off the
214 flag.")
215      (font-encoding ,symbol? "The font encoding is the broadest
216 category for selecting a font.  Options include: @code{fetaMusic},
217 @code{fetaNumber}, @code{TeX-text}, @code{TeX-math},
218 @code{fetaBraces}, @code{fetaDynamic}.")
219      (font-family ,symbol? "The font family is the broadest category
220 for selecting text fonts.  Options include: @code{sans},
221 @code{roman}.")
222      (font-name ,string? "Specifies a file name (without extension)
223 of the font to load.  This setting overrides selection using
224 @code{font-family}, @code{font-series} and @code{font-shape}.")
225      (font-series ,symbol? "Select the series of a font.  Choices
226 include @code{medium}, @code{bold}, @code{bold-narrow}, etc.")
227      (font-shape ,symbol? "Select the shape of a font.  Choices
228 include @code{upright}, @code{italic}, @code{caps}.")
229      (font-size ,number? "The font size, compared to the @q{normal}
230 size.  @code{0}@tie{}is style-sheet's normal size, @code{-1} is
231 smaller, @code{+1} is bigger.  Each step of@tie{}1 is approximately
232 12% larger, 6@tie{}steps are exactly a factor@tie{}2 larger.
233 Fractional values are allowed.")
234      (force-hshift ,number? "This specifies a manual shift for notes
235 in collisions.  The unit is the note head width of the first voice
236 note.  This is used by @internalsref{note-collision-interface}.")
237      (forced ,boolean? "Manually forced accidental.")
238      (fraction ,number-pair? "Numerator and denominator of a time
239 signature object.")
240      (french-beaming ,boolean? "Use French beaming style for this
241 stem.  The stem stops at the innermost beams.")
242      (fret-count ,integer? "The number of frets in a fret diagram.")
243      ;; ugh: double, change.
244      (full-size-change ,boolean? "Don't make a change clef smaller.")
245
246      (gap ,ly:dimension? "Size of a gap in a variable symbol.")
247      (gap-count ,integer? "Number of gapped beams for tremolo.")
248      (glyph ,string? "A string determining what @q{style} of glyph is
249 typeset.  Valid choices depend on the function that is reading this
250 property.")
251      (glyph-name-alist ,list? "An alist of key-string pairs.")
252      (grow-direction ,ly:dir? "Crescendo or decrescendo?")
253
254      (hair-thickness ,number? "Thickness of the thin line in a bar
255 line.")
256      (head-direction ,ly:dir? "Are the note heads left or right in a
257 semitie?")
258      (height ,ly:dimension? "Height of an object in
259 @code{staff-space} units.")
260      (height-limit ,ly:dimension? "Maximum slur height: The longer the
261 slur, the closer it is to this height.")
262      (horizontal-shift ,integer? "An integer that identifies ranking
263 of @code{NoteColumn}s for horizontal shifting.  This is used by
264 @internalsref{note-collision-interface}.")
265      (horizontal-skylines ,ly:skyline-pair? "Two skylines, one to the
266 left and one to the right of this grob.")
267
268      (ignore-collision ,boolean? "If set, don't do note collision
269 resolution on this @code{NoteColumn}.")
270      (implicit ,boolean? "Is this an implicit bass figure?")
271      (infinite-spacing-height ,boolean? "If true, then for the
272 purposes of horizontal spacing, treat this item as though it were
273 infinitely tall.  That is, no object from another column is allowed to
274 stick above or below this item.")
275      (inspect-index ,integer? "If debugging is set, set beam and slur
276 configuration to this index, and print the respective scores.")
277      (inspect-quants ,number-pair? "If debugging is set,
278 set beam and slur quants to this position, and print the respective
279 scores.")
280
281      (keep-fixed-while-stretching ,boolean? "A grob with this property
282 set to true is fixed relative to the staff above it when systems are
283 stretched.")
284      (keep-inside-line ,boolean? "If set, this column cannot have
285 things sticking into the margin.")
286      (kern ,ly:dimension? "Amount of extra white space to add.  For
287 bar lines, this is the amount of space after a thick line.")
288      (knee ,boolean? "Is this beam kneed?")
289      (knee-spacing-correction ,number? "Factor for the optical
290 correction amount for kneed beams.  Set between @code{0} for no
291 correction and @code{1} for full correction.")
292
293      (labels ,list? "List of labels (symbols) placed on a column")
294      (label-dir ,ly:dir? "Side to which a label is attached.
295 @code{-1} for left, @code{1}@tie{}for right.")
296      (layer ,number? "The output layer (a value between 0 and@tie{}2:
297 Layers define the order of printing objects.  Objects in lower layers
298 are overprinted by objects in higher layers.")
299      (ledger-line-thickness ,number-pair? "The thickness of ledger
300 lines.  It is the sum of 2@tie{}numbers: The first is the factor for
301 line thickness, and the second for staff space.  Both contributions
302 are added.")
303      (left-bound-info ,list? "An alist of properties for determining
304 attachments of spanners to edges.")
305      (left-padding ,ly:dimension? "The amount of space that is put
306 left to an object (e.g., a group of accidentals).")
307      (length ,ly:dimension? "User override for the stem length of
308 unbeamed stems.")
309      (length-fraction ,number? "Multiplier for lengths.  Used for
310 determining ledger lines and stem lengths.")
311      (line-break-penalty ,number? "Penalty for a line break at this
312 column.  This affects the choices of the line breaker; it avoids a
313 line break at a column with a positive penalty and prefer a line break
314 at a column with a negative penalty.")
315      (line-break-permission ,symbol? "Instructs the line breaker on
316 whether to put a line break at this column.  Can be @code{force} or
317 @code{allow}.")
318      (line-break-system-details ,list? "An alist of properties to use
319 if this column is the start of a system.")
320      (line-count ,integer? "The number of staff lines.")
321      (line-positions ,list? "Vertical positions of staff lines.")
322      (line-thickness ,number? "The thickness of the tie or slur
323 contour.")
324      (long-text ,markup? "Text markup.  See @ruser{Text
325 markup}.")
326
327      (max-beam-connect ,integer? "Maximum number of beams to connect
328 to beams from this stem.  Further beams are typeset as beamlets.")
329      (max-stretch ,number? "The maximum amount that this
330 @code{VerticalAxisGroup} can be vertically stretched (for example, in
331 order to better fill a page).")
332      (measure-count ,integer? "The number of measures for a
333 multi-measure rest.")
334      (measure-length ,ly:moment? "Length of a measure.  Used in some
335 spacing situations.")
336      (merge-differently-dotted ,boolean? "Merge note heads in
337 collisions, even if they have a different number of dots.  This is
338 normal notation for some types of polyphonic music.
339
340 @code{merge-differently-dotted} only applies to opposing stem
341 directions (i.e., voice 1 &@tie{}2).")
342      (merge-differently-headed ,boolean? "Merge note heads in
343 collisions, even if they have different note heads.  The
344 smaller of the two heads is rendered invisible.  This is used in
345 polyphonic guitar notation.  The value of this setting is used by
346 @internalsref{note-collision-interface}.
347
348 @code{merge-differently-headed} only applies to opposing stem
349 directions (i.e., voice 1 &@tie{}2).")
350      (minimum-X-extent ,number-pair? "Minimum size of an object in
351 X@tie{}dimension, measured in @code{staff-space} units.")
352      (minimum-Y-extent ,number-pair? "See @code{minimum-X-extent}.")
353      (minimum-distance ,ly:dimension? "Minimum distance between rest
354 and notes or beam.")
355      (minimum-length ,ly:dimension? "Try to make a spanner at least
356 this long, normally in the horizontal direction.  This requires an
357 appropriate callback for the @code{springs-and-rods} property.  If
358 added to a @code{Tie}, this sets the minimum distance between
359 noteheads.")
360      (minimum-length-fraction ,number? "Minimum length of ledger line
361 as fraction of note head size.")
362      (minimum-space ,ly:dimension? "Minimum distance that the victim
363 should move (after padding).")
364
365      (neutral-direction ,ly:dir? "Which direction to take in the
366 center of the staff.")
367      (neutral-position ,number? "Position (in half staff spaces) where
368 to flip the direction of custos stem.")
369      (next ,ly:grob? "Object that is next relation (e.g., the lyric
370 syllable following an extender.")
371      (no-alignment ,boolean? "If set, don't place this grob in a
372 VerticalAlignment; rather, place it using its own Y-offset callback")
373      (no-ledgers ,boolean? "If set, don't draw ledger lines on this
374 object.")
375      (no-stem-extend ,boolean? "If set, notes with ledger lines do not
376 get stems extending to the middle staff line.")
377      (non-default ,boolean? "Set for manually specified clefs.")
378      (non-musical ,boolean? "True if the grob belongs to a
379 @code{NonMusicalPaperColumn}.")
380      (note-names ,vector? "Vector of strings containing names for
381 easy-notation note heads.")
382      (number-type ,symbol? "Type of numbers to use in label.  Choices
383 include @code{roman-lower}, @code{roman-upper}, and @code{arabic}.")
384
385      (outside-staff-horizontal-padding ,number? "By default, an
386 outside-staff-object can be placed so that is it very close to another
387 grob horizontally.  If this property is set, the outside-staff-object
388 is raised so that it is not so close to its neighbour.")
389      (outside-staff-padding ,number? "The padding to place between
390 this grob and the staff when spacing according to
391 @code{outside-staff-priority}.")
392      (outside-staff-priority ,number? "If set, the grob is positioned
393 outside the staff in such a way as to avoid all collisions.
394 In case of a potential collision, the grob with the smaller
395 @code{outside-staff-priority} is closer to the staff.")
396
397      (packed-spacing ,boolean? "If set, the notes are spaced as
398 tightly as possible.")
399      (padding ,ly:dimension? "Add this much extra space between
400 objects that are next to each other.")
401      (page-break-penalty ,number? "Penalty for page break at this
402 column.  This affects the choices of the page breaker; it avoids a
403 page break at a column with a positive penalty and prefer a page break
404 at a column with a negative penalty.")
405      (page-break-permission ,symbol? "Instructs the page breaker on
406 whether to put a page break at this column.  Can be @code{force} or
407 @code{allow}.")
408      (page-turn-penalty ,number? "Penalty for a page turn at this
409 column.  This affects the choices of the page breaker; it avoids a
410 page turn at a column with a positive penalty and prefer a page turn
411 at a column with a negative penalty.")
412      (page-turn-permission ,symbol? "Instructs the page breaker on
413 whether to put a page turn at this column.  Can be @code{force} or
414 @code{allow}.")
415      (parenthesized ,boolean? "Parenthesize this grob.")
416      (positions ,number-pair? "Pair of staff coordinates
417 @code{(@var{left} . @var{right})}, where both @var{left} and
418 @var{right} are in @code{staff-space} units of the current staff.
419 For slurs, this value selects which slur candidate to use; if
420 extreme positions are requested, the closest one is taken.")
421      (prefer-dotted-right ,boolean? "For note collisions, prefer to
422 shift dotted up-note to the right, rather than shifting just the
423 dot.")
424
425      (ratio ,number? "Parameter for slur shape.  The higher this
426 number, the quicker the slur attains its @code{height-limit}.")
427      (remove-empty ,boolean? "If set, remove group if it contains no
428 interesting items.")
429      (remove-first ,boolean? "Remove the first staff of a orchestral
430 score?")
431      (restore-first ,boolean? "Print a natural before the
432 accidental.")
433      (rhythmic-location ,rhythmic-location? "Where (bar number,
434 measure position) in the score.")
435      (right-bound-info ,list? "An alist of properties for determining
436 attachments of spanners to edges.")
437      (right-padding ,ly:dimension? "Space to insert on the right side
438 of an object (e.g., between note and its accidentals).")
439      (rotation ,list? "Number of degrees to rotate this object, and
440 what point to rotate around.  For example, @code{#'(45 0 0)} rotates
441 by 45 degrees around the center of this object.")
442
443      (same-direction-correction ,number? "Optical correction amount
444 for stems that are placed in tight configurations.  This amount is
445 used for stems with the same direction to compensate for note-head to
446 stem distance.")
447      (script-priority ,number? "A sorting key that determines in what
448 order a script is within a stack of scripts.")
449      (self-alignment-X ,number? "Specify alignment of an object.  The
450 value @code{-1} means left aligned, @code{0}@tie{}centered, and
451 @code{1}@tie{}right-aligned in X@tie{}direction.  Values in-between
452 may also be specified.")
453      (self-alignment-Y ,number? "Like @code{self-alignment-X} but for
454 the Y@tie{}axis.")
455      (shorten-pair ,number-pair? "The lengths to shorten a
456 text-spanner on both sides, for example a pedal bracket.  Positive
457 values shorten the text-spanner, while negative values lengthen it.")
458      (shortest-duration-space ,ly:dimension? "Start with this much
459 space for the shortest duration.  This is expressed in
460 @code{spacing-increment} as unit.  See also
461 @internalsref{spacing-spanner-interface}.")
462      (shortest-playing-duration ,ly:moment? "The duration of the
463 shortest playing here.")
464      (shortest-starter-duration ,ly:moment? "The duration of the
465 shortest note that starts here.")
466      (side-axis ,number? "If the value is @code{#X} (or
467 equivalently@tie{}@code{1}), the object is placed horizontally next
468 to the other object.  If the value is @code{#Y} or@tie{}@code{0}, it
469 is placed vertically.")
470      (side-relative-direction ,ly:dir? "Multiply direction of
471 @code{direction-source} with this to get the direction of this
472 object.")
473      (size ,number? "Size of object, relative to standard size.")
474      (slope ,number? "The slope of this object.")
475      (slur-padding ,number? "Extra distance between slur and script.")
476      (space-alist ,list? "A table that specifies distances between
477 prefatory items, like clef and time-signature.  The format is an alist
478 of spacing tuples: @code{(@var{break-align-symbol} @var{type}
479 . @var{distance})}, where @var{type} can be the symbols
480 @code{minimum-space} or @code{extra-space}.")
481      (space-to-barline ,boolean? "If set, the distance between a note
482 and the following non-musical column will be measured to the barline
483 instead of to the beginning of the non-musical column.  If there is a
484 clef change followed by a barline, for example, this means that we will
485 try to space the non-musical column as though the clef is not there.")
486      (spacing-increment ,number? "Add this much space for a doubled
487 duration.  Typically, the width of a note head.  See also
488 @internalsref{spacing-spanner-interface}.")
489      (springs-and-rods ,boolean? "Dummy variable for triggering
490 spacing routines.")
491      (stacking-dir ,ly:dir? "Stack objects in which direction?")
492      (staff-padding ,ly:dimension? "Maintain this much space between
493 reference points and the staff.  Its effect is to align objects of
494 differing sizes (like the dynamic @b{p} and @b{f}) on their
495 baselines.")
496      (staff-position ,number? "Vertical position, measured in half
497 staff spaces, counted from the middle line.")
498      (staff-space ,ly:dimension? "Amount of space between staff lines,
499 expressed in global @code{staff-space}.")
500      (stem-attachment ,number-pair? "A @code{(@var{x} . @var{y})} pair
501 where the stem attaches to the notehead.")
502      (stem-end-position ,number? "Where does the stem end (the end is
503 opposite to the support-head)?")
504      ;;[TODO: doco]
505      (stem-spacing-correction ,number? "Optical correction amount for
506 stems that are placed in tight configurations.  For opposite
507 directions, this amount is the correction for two normal sized stems
508 that overlap completely.")
509      (stemlet-length ,number? "How long should a stem over a rest
510 be?")
511      (stencil ,ly:stencil? "The symbol to print.")
512      (stencils ,list? "Multiple stencils, used as intermediate
513 value.")
514      (strict-grace-spacing ,boolean? "If set, grace notes 
515 are not spaced separately, but put before musical columns.")
516      (strict-note-spacing ,boolean? "If set, unbroken columns
517 with non-musical material (clefs, barlines, etc.) are not spaced
518 separately, but put before musical columns.")
519      (string-count ,integer? "The number of strings in a fret
520 diagram.")
521      (string-fret-finger-combinations ,list? "List consisting of
522 @code{(@var{string-number} @var{fret-number} @var{finger-number})}
523 entries.")
524      (stroke-style ,string? "Set to @code{\"grace\"} to turn stroke
525 through flag on.")
526      (style ,symbol? "This setting determines in what style a grob is
527 typeset.  Valid choices depend on the @code{stencil} callback reading
528 this property.")
529
530      (text ,markup? "Text markup.  See @ruser{Text markup}.")
531 ;;FIXME -- Should both be the same?
532      (text-direction ,ly:dir? "This controls the ordering of the
533 words.  The default @code{RIGHT} is for roman text.  Arabic or Hebrew
534 should use @code{LEFT}.")
535      (thick-thickness ,number? "Bar line thickness, measured in
536 @code{line-thickness}.")
537      (thickness ,number? "Line thickness, generally measured in
538 @code{line-thickness}.")
539      (thin-kern ,number? "The space after a hair-line in a bar line.")
540      (threshold ,number-pair? "@code{(@var{min} . @var{max})}, where
541 @var{min} and @var{max} are dimensions in staff space.")
542      (to-barline ,boolean? "If true, the spanner will stop at that barline
543 just before it would otherwise stop.")
544      (tie-configuration ,list? "List of @code{(@var{position} .
545 @var{dir})} pairs, indicating the desired tie configuration, where
546 @var{position} is the offset from the center of the staff in staff
547 space and @var{dir} indicates the direction of the tie
548 (@code{1}=>up, @code{-1}=>down, @code{0}=>center).  A non-pair entry
549 in the list causes the corresponding tie to be formatted
550 automatically.")
551      (transparent ,boolean? "This makes the grob invisible.")
552
553      (uniform-stretching ,boolean? "If set, items stretch
554 proportionally to their durations.  This looks better in complex
555 polyphonic patterns.")
556      (used ,boolean? "If set, this spacing column is kept in the
557 spacing problem")
558
559      (vertical-skylines ,ly:skyline-pair? "Two skylines, one above and
560 one below this grob.")
561
562      (when ,ly:moment? "Global time step associated with this column
563 happen?")
564      (width ,ly:dimension? "The width of a grob measured in staff
565 space.")
566      (word-space ,ly:dimension? "Space to insert between words in
567 texts.")
568
569      (zigzag-length ,ly:dimension? "The length of the lines of a
570 zigzag, relative to @code{zigzag-width}.  A value of@tie{}@code{1}
571 gives 60-degree zigzags.")
572      (zigzag-width ,ly:dimension? "The width of one zigzag squiggle.
573 This number is adjusted slightly so that the glissando line can
574 be constructed from a whole number of squiggles.")
575      )))
576
577
578 ;;;;;;;;;;;;;;;;
579 ;;   INTERNAL
580
581
582 (define (define-internal-grob-property symbol type? description)
583   (define-grob-property symbol type? description)
584   (set-object-property! symbol 'backend-internal #t)
585   symbol
586   )
587
588
589 (define-public all-internal-grob-properties
590   (map
591    (lambda (x)
592      (apply define-internal-grob-property x))
593    
594    `(
595      ;;;;;;;;;;;;;;;;
596      ;; grobs & grob arrays. (alphabetical)
597      (X-common ,ly:grob? "Common reference point for axis group.")
598
599      (Y-common ,ly:grob? "See @code{X-common}.")
600
601      (accidental-grob ,ly:grob? "The accidental for this note.")
602      (accidental-grobs ,list? "An alist with @code{(@var{notename} .
603 @var{groblist})} entries.")
604      (adjacent-pure-heights ,vector? "Used by a @code{VerticalAxisGroup} to
605 cache the @code{Y-extent}s of different column ranges.")
606      (adjacent-hairpins ,ly:grob-array? "A list of directly neighboring
607 hairpins.")
608      (all-elements ,ly:grob-array? "A list of all grobs in this line.  Its
609 function is to protect objects from being garbage collected.")
610      (arpeggio ,ly:grob? "A pointer to an @code{Arpeggio} object.")
611      (axis-group-parent-X ,ly:grob? "Containing X@tie{}axis group.")
612      (axis-group-parent-Y ,ly:grob? "Containing Y@tie{}axis group.")
613
614      (bar-extent ,number-pair? "The Y-extent of the actual barline.
615 This may differ from 'Y-extent because it does not include the dots in
616 a repeat barline.")
617      (bars ,ly:grob-array? "A list of bar line pointers.")
618      (beam ,ly:grob? "A pointer to the beam, if applicable.")
619      (bounded-by-me ,ly:grob-array? "A list of spanners that have this
620 column as start/begin point.  Only columns that have grobs or act as
621 bounds are spaced.")
622      (bracket ,ly:grob? "The bracket for a number.")
623
624      (columns ,ly:grob-array? "A list of grobs, typically containing
625 @code{PaperColumn} or @code{NoteColumn} objects.")
626      (conditional-elements ,ly:grob-array? "Internal use only.")
627      (cross-staff ,boolean? "For a beam or a stem, this is true if we
628 depend on inter-staff spacing.")
629
630      (direction-source ,ly:grob? "In case @code{side-relative-direction} is
631 set, which grob to get the direction from.")
632      (dot ,ly:grob? "A reference to a @code{Dots} object.")
633      (dots ,ly:grob-array? "Multiple @code{Dots} objects.")
634
635      (elements ,ly:grob-array? "A list of grobs; the type is depending on
636 the grob where this is set in.")
637      (encompass-objects ,ly:grob-array? "Objects that a slur should avoid
638 in addition to notes and stems.")
639
640      (figures ,ly:grob-array? "Figured bass objects for continuation line.")
641
642      (glyph-name ,string? "The glyph name within the font.")
643      (grace-spacing ,ly:grob? "A run of grace notes.")
644
645      (heads ,ly:grob-array? "A list of note heads.")
646
647      (important-column-ranks ,vector? "A cache of columns that contain
648 @code{items-worth-living} data.")
649      (items-worth-living ,ly:grob-array? "A list of interesting items.  If
650 empty in a particular staff, then that staff is erased.")
651
652      (left-items ,ly:grob-array? "DOCME")
653      (left-neighbors ,ly:grob-array? "A list of @code{spacing-wishes} grobs
654 that are close to the current column.
655
656 The closest @code{spacing-wishes} determine the actual distances between the
657 columns.")
658
659      (normal-stems ,ly:grob-array? "An array of visible stems.")
660      (note-columns ,pair? "A list of @code{NoteColumn} grobs.")
661      (note-head ,ly:grob? "A single note head.")
662      (note-heads ,ly:grob-array? "A list of note head grobs.")
663
664      (padding-pairs ,list? "An alist mapping @code{(@var{name} . @var{name})}
665 to distances.")
666      (pedal-text ,ly:grob? "A pointer to the text of a mixed-style piano
667 pedal.")
668      (pure-Y-common ,ly:grob? "A cache of the
669 @code{common_refpoint_of_array} of the @code{elements} grob set.")
670      (pure-Y-offset-in-progress ,boolean? "A debugging aid for catching
671 cyclic dependencies.")
672      (pure-relevant-items ,ly:grob-array? "A subset of elements that are
673 relevant for finding the @code{pure-Y-extent}.")
674      (pure-relevant-spanners ,ly:grob-array? "A subset of elements that are
675 relevant for finding the @code{pure-Y-extent}.")
676
677      (rest ,ly:grob? "A pointer to a @code{Rest} object.")
678      (rest-collision ,ly:grob? "A rest collision that a rest is in.")
679      (rests ,ly:grob-array? "A list of rest objects.")
680      (right-items ,ly:grob-array? "DOCME")
681      (right-neighbors ,ly:grob-array? "See @code{left-neighbors}.")
682
683      (separation-item ,ly:grob? "A separation item.")
684      (side-support-elements ,ly:grob-array? "The side support, a list of
685 grobs.")
686      (slur ,ly:grob? "A pointer to a @code{Slur} object.")
687      (spaceable-staves ,ly:grob-array? "Objects to be spaced during page
688 layout.")
689      (spacing ,ly:grob? "The spacing spanner governing this section.")
690      (spacing-wishes ,ly:grob-array? "List of note spacing or staff spacing
691 objects.")
692      (staff-symbol ,ly:grob? "The staff symbol grob that we are in.")
693      (stem ,ly:grob? "A pointer to a @code{Stem} object.")
694      (stems ,ly:grob-array? "A list of stem objects, corresponding to the
695 notes that the arpeggio has to be before.")
696
697      (tie ,ly:grob? "A pointer to a @code{Tie} object.")
698      (tremolo-flag ,ly:grob? "The tremolo object on a stem.")
699      (tuplet-number ,ly:grob? "The number for a bracket.")
700      (tuplets ,ly:grob-array? "A list of smaller tuplet brackets.")
701
702      ;;;;;;;;;;;;;;;;
703      ;; other
704      (begin-of-line-visible ,boolean? "Used for marking @code{ChordNames}
705 that should only show changes.")
706
707      (cause ,scheme? "Any kind of causation objects (i.e., music, or perhaps
708 translator) that was the cause for this grob.")
709      (circled-tip ,boolean? "Put a circle at start/end of hairpins (al/del
710 niente).")
711
712      (delta-position ,number? "The vertical position difference.")
713      (details ,list? "Alist of parameters for detailed grob behavior.
714
715 More information on the allowed parameters can be found by inspecting
716 @file{lily/slur-scoring.cc}, @file{lily/beam-quanting.cc}, and
717 @file{lily/tie-formatting-problem.cc}.  Setting @code{debug-tie-scoring},
718 @code{debug-beam-scoring} or @code{debug-slur-scoring} also provides
719 useful clues.")
720
721      (font ,ly:font-metric? "A cached font metric object.")
722
723      (head-width ,ly:dimension? "The width of this ligature head.")
724      
725      (ideal-distances ,list? "@code{(@var{obj} . (@var{dist} .
726 @var{strength}))} pairs.")
727      (interfaces ,list? "A list of symbols indicating the interfaces
728 supported by this object.  It is initialized from the @code{meta} field.")
729
730      (least-squares-dy ,number? "The ideal beam slope, without damping.")
731
732      (meta ,list? "Provide meta information.  It is an alist with the
733 entries @code{name} and @code{interfaces}.")
734      (minimum-distances ,list? "A list of rods that have the format
735 @code{(@var{obj} . @var{dist})}.")
736      
737      (positioning-done ,boolean? "Used to signal that a positioning element
738 did its job.  This ensures that a positioning is only done once.")
739      (pure-Y-extent ,number-pair? "The estimated height of a system.")
740
741      (quant-score ,string? "The beam quanting score; stored for
742 debugging.")
743      (quantize-position ,boolean? "If set, a vertical alignment is aligned
744 to be within staff spaces.")
745      (quantized-positions ,number-pair? "The beam positions after
746 quanting.")
747      
748      (script-stencil ,pair? "A pair @code{(@var{type} . @var{arg})} which
749 acts as an index for looking up a @code{Stencil} object.")
750      (shorten ,ly:dimension? "The amount of space that a stem is shortened.
751 Internally used to distribute beam shortening over stems.")
752      (skyline-distance ,number? "The distance between this staff and the
753 next one, as determined by a skyline algorithm.")
754      (skyline-horizontal-padding ,number? "For determining the vertical
755 distance between two staves, it is possible to have a configuration which
756 would result in a tight interleaving of grobs from the top staff and the
757 bottom staff.  The larger this parameter is, the farther apart the staves
758 are placed in such a configuration.")
759      (stem-info ,pair? "A cache of stem parameters.")
760
761      (use-breve-rest ,boolean? "Use breve rests for measures longer
762 than a whole rest.")
763
764      ;;;;;;;;;;;;;;;;
765      ;; ancient notation
766
767      ;;;;;;; TODO:
768      ;; There are too many properties for ancient notation;
769      ;; probably neume-types (a list of symbols) would also work.
770
771      ;; However, such a list would consist of a couple of dozens of
772      ;; entries, since head prefixes may be combined in many ways.  If
773      ;; the macros in `gregorian-init.ly' would directly set prefix-set,
774      ;; all the head prefixes could be junked; however, such macros
775      ;; would be quite numerous, I guess.  --jr
776
777      (add-cauda ,boolean? "Does this flexa require an additional cauda on
778 the left side?")
779      (add-join ,boolean? "Is this ligature head-joined with the next one
780 by a vertical line?")
781      (add-stem ,boolean? "Is this ligature head a virga and therefore needs
782 an additional stem on the right side?")
783      (ascendens ,boolean? "Is this neume of ascending type?")
784      (auctum ,boolean? "Is this neume liquescentically augmented?")
785
786      (cavum ,boolean? "Is this neume outlined?")
787      (context-info ,integer? "Within a ligature, the final glyph or shape of
788 a head may be affected by the left and/or right neighbour head.
789 @code{context-info} holds for each head such information about the left and
790 right neighbour, encoded as a bit mask.")
791
792      (descendens ,boolean? "Is this neume of descendent type?")
793      (deminutum ,boolean? "Is this neume deminished?")
794
795      (flexa-height ,ly:dimension? "The height of a flexa shape in a ligature
796 grob (in @code{staff-space} units).")
797      (flexa-width ,ly:dimension? "The width of a flexa shape in a
798 ligature grob in (in @code{staff-space} units).")
799
800      (inclinatum ,boolean? "Is this neume an inclinatum?")
801
802      (join-heads ,boolean? "Whether to join the note heads of an ambitus
803 grob with a vertical line.")
804      (join-right-amount ,number? "DOCME")
805
806      (linea ,boolean? "Attach vertical lines to this neume?")
807
808      (oriscus ,boolean? "Is this neume an oriscus?")
809
810      (pes-or-flexa ,boolean? "Shall this neume be joined with the previous
811 head?")
812      (prefix-set ,number? "A bit mask that holds all Gregorian head
813 prefixes, such as @code{\\virga} or @code{\\quilisma}.")
814      (primitive ,integer? "A pointer to a ligature primitive, i.e., an item
815 similar to a note head that is part of a ligature.")
816
817      (quilisma ,boolean? "Is this neume a quilisma?")
818
819      (stropha ,boolean? "Is this neume a stropha?")
820
821      (virga ,boolean? "Is this neume a virga?")
822
823      (x-offset ,ly:dimension? "Extra horizontal offset for ligature heads.")
824
825      ;;;;;;;;;;;;;;;;
826      ;; fret-diagrams extra properties
827      (mute-string ,string? "String to be used to indicate a muted string in
828 fret diagrams")
829      (open-string ,string? "A string to be used to indicate an open string
830 in fret diagrams")
831      (orientation ,symbol? "The orientation of a fret-diagram.  Options
832 include @code{normal} and @code{landscape}.")
833      (xo-font-magnification ,number? "Magnification used for mute and open
834 string indicators in fret diagrams.")
835
836     )))
837
838 (define-public all-backend-properties
839   (append
840    all-internal-grob-properties
841    all-user-grob-properties))