]> git.donarmstrong.com Git - lilypond.git/blob - scm/define-grob-properties.scm
Merge branch 'master' into lilypond/translation
[lilypond.git] / scm / define-grob-properties.scm
1 ;;;; This file is part of LilyPond, the GNU music typesetter.
2 ;;;;
3 ;;;; Copyright (C) 1998--2011  Han-Wen Nienhuys <hanwen@xs4all.nl>
4 ;;;;                 Jan Nieuwenhuizen <janneke@gnu.org>
5 ;;;;
6 ;;;; LilyPond is free software: you can redistribute it and/or modify
7 ;;;; it under the terms of the GNU General Public License as published by
8 ;;;; the Free Software Foundation, either version 3 of the License, or
9 ;;;; (at your option) any later version.
10 ;;;;
11 ;;;; LilyPond is distributed in the hope that it will be useful,
12 ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 ;;;; GNU General Public License for more details.
15 ;;;;
16 ;;;; You should have received a copy of the GNU General Public License
17 ;;;; along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
18
19 (define (define-grob-property symbol type? description)
20   (if (not (equal? (object-property symbol 'backend-doc) #f))
21       (ly:error (_ "symbol ~S redefined") symbol))
22
23   (set-object-property! symbol 'backend-type? type?)
24   (set-object-property! symbol 'backend-doc description)
25   symbol)
26
27 ;; put this in an alist?
28 (define-public all-user-grob-properties
29   (map
30    (lambda (x)
31      (apply define-grob-property x))
32
33    `(
34 ;;
35 ;; a
36 ;;
37      (add-stem-support ,boolean? "If set, the @code{Stem} object is
38 included in this script's support.")
39      (after-line-breaking ,boolean? "Dummy property, used to trigger
40 callback for @code{after-line-breaking}.")
41      (align-dir ,ly:dir? "Which side to align? @w{@code{-1}}: left side,
42 @code{0}: around center of width, @code{1}: right side.")
43      (allow-loose-spacing ,boolean? "If set, column can be detached
44 from main spacing.")
45      (allow-span-bar ,boolean? "If false, no inter-staff bar line will
46 be created below this bar line.")
47      (alteration ,number? "Alteration numbers for accidental.")
48      (alteration-alist ,list? "List of @code{(@var{pitch}
49 . @var{accidental})} pairs for key signature.")
50      (annotation ,string? "Annotate a grob for debug purposes.")
51      (annotation-balloon ,boolean? "Print the balloon around an annotation.")
52      (annotation-line ,boolean? "Print the line from an annotation to the
53 grob that it annotates.")
54      (arpeggio-direction ,ly:dir? "If set, put an arrow on the
55 arpeggio squiggly line.")
56      (arrow-length ,number? "Arrow length.")
57      (arrow-width ,number? "Arrow width.")
58      (auto-knee-gap ,ly:dimension? "If a gap is found between note
59 heads where a horizontal beam fits that is larger than this number,
60 make a kneed beam.")
61      (automatically-numbered ,boolean? "Should a footnote be automatically
62 numbered?")
63      (average-spacing-wishes ,boolean? "If set, the spacing wishes are
64 averaged over staves.")
65      (avoid-note-head ,boolean? "If set, the stem of a chord does not
66 pass through all note heads, but starts at the last note head.")
67      (avoid-slur ,symbol? "Method of handling slur collisions.
68 Choices are @code{inside}, @code{outside}, @code{around}, and
69 @code{ignore}.  @code{inside} adjusts the slur if needed to keep the
70 grob inside the slur.  @code{outside} moves the grob vertically to the
71 outside of the slur.  @code{around} moves the grob vertically to the
72 outside of the slur only if there is a collision.  @code{ignore} does
73 not move either.  In grobs whose notational significance depends on
74 vertical position (such as accidentals, clefs, etc.), @code{outside}
75 and @code{around} behave like @code{ignore}.")
76      (axes ,list? "List of axis numbers.  In the case of alignment
77 grobs, this should contain only one number.")
78
79
80 ;;
81 ;; b
82 ;;
83      (bar-extent ,number-pair? "The Y-extent of the actual bar line.
84 This may differ from @code{Y-extent} because it does not include the
85 dots in a repeat bar line.")
86      (base-shortest-duration ,ly:moment? "Spacing is based on the
87 shortest notes in a piece.  Normally, pieces are spaced as if notes at
88 least as short as this are present.")
89      (baseline-skip ,ly:dimension? "Distance between base lines of
90 multiple lines of text.")
91      (beam-thickness ,ly:dimension? "Beam thickness, measured in
92 @code{staff-space} units.")
93      (beam-width ,ly:dimension? "Width of the tremolo sign.")
94      (beamed-stem-shorten ,list? "How much to shorten beamed stems,
95 when their direction is forced.  It is a list, since the value is
96 different depending on the number of flags and beams.")
97      (beaming ,pair? "Pair of number lists.  Each number list
98 specifies which beams to make.  @code{0}@tie{}is the central beam,
99 @code{1}@tie{}is the next beam toward the note, etc.  This information
100 is used to determine how to connect the beaming patterns from stem to
101 stem inside a beam.")
102      (beamlet-default-length ,pair? "A pair of numbers.  The first
103 number specifies the default length of a beamlet that sticks out of
104 the left hand side of this stem; the second number specifies the
105 default length of the beamlet to the right.  The actual length of a
106 beamlet is determined by taking either the default length or the
107 length specified by @code{beamlet-max-length-proportion}, whichever is
108 smaller.")
109      (beamlet-max-length-proportion ,pair? "The maximum length of a
110 beamlet, as a proportion of the distance between two adjacent stems.")
111      (before-line-breaking ,boolean? "Dummy property, used to trigger
112 a callback function.")
113      (between-cols ,pair? "Where to attach a loose column to.")
114      (bound-details ,list? "An alist of properties for determining
115 attachments of spanners to edges.")
116      (bound-padding ,number? "The amount of padding to insert around
117 spanner bounds.")
118      (bracket-flare ,number-pair? "A pair of numbers specifying how
119 much edges of brackets should slant outward.  Value @code{0.0} means
120 straight edges.")
121      (bracket-visibility ,boolean-or-symbol? "This controls the
122 visibility of the tuplet bracket.  Setting it to false prevents
123 printing of the bracket.  Setting the property to @code{if-no-beam}
124 makes it print only if there is no beam associated with this tuplet
125 bracket.")
126      (break-align-anchor ,number? "Grobs aligned to this break-align
127 grob will have their X-offsets shifted by this number.  In bar lines,
128 for example, this is used to position grobs relative to the (visual)
129 center of the bar line.")
130      (break-align-anchor-alignment ,number? "Read by
131 @code{ly:break-aligned-interface::calc-extent-aligned-anchor} for
132 aligning an anchor to a grob's extent.")
133      (break-align-orders ,vector? "Defines the order in which
134 prefatory matter (clefs, key signatures) appears.  The format is a
135 vector of length@tie{}3, where each element is one order for
136 end-of-line, middle of line, and start-of-line, respectively.  An
137 order is a list of symbols.
138
139 For example, clefs are put after key signatures by setting
140
141 @example
142 \\override Score.BreakAlignment #'break-align-orders =
143   #(make-vector 3 '(span-bar
144                     breathing-sign
145                     staff-bar
146                     key
147                     clef
148                     time-signature))
149 @end example")
150      (break-align-symbol ,symbol? "This key is used for aligning and
151 spacing breakable items.")
152      (break-align-symbols ,list? "A list of symbols that determine
153 which break-aligned grobs to align this to.  If the grob selected by
154 the first symbol in the list is invisible due to break-visibility, we
155 will align to the next grob (and so on).  Choices are @code{left-edge},
156 @code{ambitus}, @code{breathing-sign}, @code{clef}, @code{staff-bar},
157 @code{key-cancellation}, @code{key-signature}, @code{time-signature},
158 and @code{custos}.")
159      (break-overshoot ,number-pair? "How much does a broken spanner
160 stick out of its bounds?")
161      (break-visibility ,vector? "A vector of 3@tie{}booleans,
162 @code{#(@var{end-of-line} @var{unbroken} @var{begin-of-line})}.
163 @code{#t} means visible, @code{#f} means killed.")
164      (breakable ,boolean? "Allow breaks here.")
165
166
167 ;;
168 ;; c
169 ;;
170      (c0-position ,integer? "An integer indicating the position of
171 middle@tie{}C.")
172      (circled-tip ,boolean? "Put a circle at start/@/end of
173 hairpins (al/@/del niente).")
174      (clip-edges ,boolean? "Allow outward pointing beamlets at the
175 edges of beams?")
176      (collapse-height ,ly:dimension? "Minimum height of system start
177 delimiter.  If equal or smaller, the bracket/@/brace/@/line is removed.")
178      (collision-interfaces ,list? "A list of interfaces for which
179 automatic beam-collision resolution is run.")
180      (collision-voice-only ,boolean? "Does automatic beam collsion apply
181 only to the voice in which the beam was created?")
182      (color ,color? "The color of this grob.")
183      (common-shortest-duration ,ly:moment? "The most common shortest
184 note length.  This is used in spacing.  Enlarging this sets the score
185 tighter.")
186      (concaveness ,number? "A beam is concave if its inner stems are
187 closer to the beam than the two outside stems.  This number is a
188 measure of the closeness of the inner stems.  It is used for damping
189 the slope of the beam.")
190      (connect-to-neighbor ,pair? "Pair of booleans, indicating whether
191 this grob looks as a continued break.")
192      (consistent-broken-slope ,boolean? "Keep a beam's slope across line
193 breaks.")
194      (control-points ,list? "List of offsets (number pairs) that form
195 control points for the tie, slur, or bracket shape.  For B@'eziers,
196 this should list the control points of a third-order B@'ezier curve.")
197
198 ;;
199 ;; d
200 ;;
201      (damping ,number? "Amount of beam slope damping.")
202      (dash-definition ,pair? "List of @code{dash-elements} defining the
203 dash structure.  Each @code{dash-element} has a starting t value,
204 an ending t-value, a @code{dash-fraction}, and a @code{dash-period}.")
205      (dash-fraction ,number? "Size of the dashes, relative to
206 @code{dash-period}.  Should be between @code{0.0} (no line) and
207 @code{1.0} (continuous line).")
208      (dash-period ,number? "The length of one dash together with
209 whitespace.  If negative, no line is drawn at all.")
210      (default-direction ,ly:dir? "Direction determined by note head
211 positions.")
212      (default-staff-staff-spacing ,list? "The settings to use for
213 @code{staff-staff-spacing} when it is unset, for ungrouped staves
214 and for grouped staves that do not have the relevant
215 @code{StaffGrouper} property set (@code{staff-staff-spacing} or
216 @code{staffgroup-staff-spacing}).")
217      (details ,list? "Alist of parameters for detailed grob behavior.
218 More information on the allowed parameters for a grob can be found by
219 looking at the top of the Internals Reference page for each interface
220 having a @code{details} property.")
221      (digit-names ,vector? "Names for string finger digits.")
222      (direction ,ly:dir? "If @code{side-axis} is @code{0} (or
223 @code{X}), then this property determines whether the object is placed
224 @code{LEFT}, @code{CENTER} or @code{RIGHT} with respect to the
225 other object.  Otherwise, it determines whether the object is placed
226 @code{UP}, @code{CENTER} or @code{DOWN}.  Numerical values may also
227 be used: @code{UP}=@code{1}, @code{DOWN}=@w{@code{-1}},
228 @code{LEFT}=@w{@code{-1}}, @code{RIGHT}=@code{1},
229 @code{CENTER}=@code{0}.")
230      (dot-count ,integer? "The number of dots.")
231      (dot-negative-kern ,number? "The space to remove between a dot
232 and a slash in percent repeat glyphs.  Larger values bring the two
233 elements closer together.")
234      (dot-placement-list ,list? "List consisting of
235 @code{(@var{description} @var{string-number} @var{fret-number}
236 @var{finger-number})} entries used to define fret diagrams.")
237      (duration-log ,integer? "The 2-log of the note head duration,
238 i.e., @code{0} = whole note, @code{1} = half note, etc.")
239
240
241 ;;
242 ;; e
243 ;;
244      (eccentricity ,number? "How asymmetrical to make a slur.
245 Positive means move the center to the right.")
246      (edge-height ,pair? "A pair of numbers specifying the heights of
247 the vertical edges: @code{(@var{left-height} . @var{right-height})}.")
248      (edge-text ,pair? "A pair specifying the texts to be set at the
249 edges: @code{(@var{left-text} . @var{right-text})}.")
250      (elements-filtered ,boolean? "Callback to filter an element list.")
251      (round-up-exceptions ,list? "A list of pairs where car is the numerator
252 and cdr the denominator of a moment.  Each pair in this list means that
253 the multi-measure rests of the corresponding length will be rounded up to
254 the longer rest.  See @var{round-up-to-longer-rest}.")
255      (expand-limit ,integer? "Maximum number of measures expanded in
256 church rests.")
257      ;; remove me?
258      (extra-dy ,number? "Slope glissandi this much extra.")
259      (extra-offset ,number-pair? "A pair representing an offset.  This
260 offset is added just before outputting the symbol, so the typesetting
261 engine is completely oblivious to it.  The values are measured in
262 @code{staff-space} units of the staff's @code{StaffSymbol}.")
263      (extra-spacing-height ,number-pair? "In the horizontal spacing
264 problem, we increase the height of each item by this amount (by adding
265 the @q{car} to the bottom of the item and adding the @q{cdr} to the
266 top of the item).  In order to make a grob infinitely high (to prevent
267 the horizontal spacing problem from placing any other grobs above or
268 below this grob), set this to @code{(-inf.0 . +inf.0)}.")
269      (extra-spacing-width ,number-pair? "In the horizontal spacing
270 problem, we pad each item by this amount (by adding the @q{car} on the
271 left side of the item and adding the @q{cdr} on the right side of the
272 item).  In order to make a grob take up no horizontal space at all,
273 set this to @code{(+inf.0 . -inf.0)}.")
274      (extra-X-extent ,number-pair? "A grob is enlarged in
275 X@tie{}dimension by this much.")
276      (extra-Y-extent ,number-pair? "A grob is enlarged in
277 Y@tie{}dimension by this much.")
278
279
280 ;;
281 ;; f
282 ;;
283      (flag-count ,number? "The number of tremolo beams.")
284      (font-encoding ,symbol? "The font encoding is the broadest
285 category for selecting a font.  Currently, only lilypond's system
286 fonts (Emmentaler) are using this property.  Available
287 values are @code{fetaMusic} (Emmentaler), @code{fetaBraces},
288 @code{fetaText} (Emmentaler).")
289      (font-family ,symbol? "The font family is the broadest category
290 for selecting text fonts.  Options include: @code{sans},
291 @code{roman}.")
292      (font-name ,string? "Specifies a file name (without extension) of
293 the font to load.  This setting overrides selection using
294 @code{font-family}, @code{font-series} and @code{font-shape}.")
295      (font-series ,symbol? "Select the series of a font.  Choices
296 include @code{medium}, @code{bold}, @code{bold-narrow}, etc.")
297      (font-shape ,symbol? "Select the shape of a font.  Choices
298 include @code{upright}, @code{italic}, @code{caps}.")
299      (font-size ,number? "The font size, compared to the
300 @q{normal}@tie{}size.  @code{0}@tie{}is style-sheet's normal size,
301 @w{@code{-1}} is smaller, @code{+1} is bigger.  Each step of@tie{}1 is
302 approximately 12% larger; 6@tie{}steps are exactly a factor@tie{}2
303 larger.  Fractional values are allowed.")
304      (footnote ,boolean? "Should this be a footnote or in-note?")
305      (footnote-text ,markup? "A footnote for the grob.")
306      (force-hshift ,number? "This specifies a manual shift for notes
307 in collisions.  The unit is the note head width of the first voice
308 note.  This is used by @rinternals{note-collision-interface}.")
309      (fraction ,number-pair? "Numerator and denominator of a time
310 signature object.")
311      (french-beaming ,boolean? "Use French beaming style for this
312 stem.  The stem stops at the innermost beams.")
313      (fret-diagram-details ,list? "An alist of detailed grob
314 properties for fret diagrams.  Each alist entry consists of a
315 @code{(@var{property} .  @var{value})} pair.  The properties which can
316 be included in @code{fret-diagram-details} include the following:
317
318 @itemize @bullet
319 @item
320 @code{barre-type} -- Type of barre indication used.  Choices include
321 @code{curved}, @code{straight}, and @code{none}.  Default
322 @code{curved}.
323 @item
324 @code{capo-thickness} -- Thickness of capo indicator, in multiples of
325 fret-space.  Default value@tie{}0.5.
326 @item
327 @code{dot-color} -- Color of dots.  Options include @code{black} and
328 @code{white}.  Default @code{black}.
329 @item
330 @code{dot-label-font-mag} -- Magnification for font used to label fret
331 dots.  Default value@tie{}1.
332 @item
333 @code{dot-position} -- Location of dot in fret space.  Default 0.6 for
334 dots without labels, 0.95-@code{dot-radius} for dots with labels.
335 @item
336 @code{dot-radius} -- Radius of dots, in terms of fret spaces.  Default
337 value 0.425 for labeled dots, 0.25 for unlabeled dots.
338 @item
339 @code{finger-code} -- Code for the type of fingering indication used.
340 Options include @code{none}, @code{in-dot}, and @code{below-string}.
341 Default @code{none} for markup fret diagrams, @code{below-string} for
342 @code{FretBoards} fret diagrams.
343 @item
344 @code{fret-count} -- The number of frets.  Default@tie{}4.
345 @item
346 @code{fret-label-custom-format} -- The format string to be used label
347 the lowest fret number, when @code{number-type} equals to
348 @code{custom}.  Default@tie{}\"~a\".
349 @item
350 @code{fret-label-font-mag} -- The magnification of the font used to
351 label the lowest fret number.  Default@tie{}0.5.
352 @item
353 @code{fret-label-vertical-offset} -- The offset of the fret label from
354 the center of the fret in direction parallel to strings.
355 Default@tie{}0.
356 @item
357 @code{label-dir} -- Side to which the fret label is attached.
358 @w{@code{-1}}, @code{LEFT}, or @code{DOWN} for left or down; @code{1},
359 @code{RIGHT}, or @code{UP} for right or up.  Default @code{RIGHT}.
360 @item
361 @code{mute-string} -- Character string to be used to indicate muted
362 string.  Default @code{\"x\"}.
363 @item
364 @code{number-type} -- Type of numbers to use in fret label.  Choices
365 include @code{roman-lower}, @code{roman-upper}, @code{arabic} and
366 @code{custom}.  In the later case, the format string is supplied by
367 the @code{fret-label-custom-format} property.
368 Default @code{roman-lower}.
369 @item
370 @code{open-string} -- Character string to be used to indicate open
371 string.  Default @code{\"o\"}.
372 @item
373 @code{orientation} -- Orientation of fret-diagram.  Options include
374 @code{normal}, @code{landscape}, and @code{opposing-landscape}.
375 Default @code{normal}.
376 @item
377 @code{string-count} -- The number of strings.  Default@tie{}6.
378 @item
379 @code{string-label-font-mag} -- The magnification of the font used to
380 label fingerings at the string, rather than in the dot.  Default value
381 0.6 for @code{normal} orientation, 0.5 for @code{landscape} and
382 @code{opposing-landscape}.
383 @item
384 @code{string-thickness-factor} -- Factor for changing thickness of
385 each string in the fret diagram.  Thickness of string @var{k} is given
386 by @code{thickness}
387 * (1+@code{string-thickness-factor})@tie{}^ (@var{k}-1).
388 Default@tie{}0.
389 @item
390 @code{top-fret-thickness} -- The thickness of the top fret line, as a
391 multiple of the standard thickness.  Default value@tie{}3.
392 @item
393 @code{xo-font-magnification} -- Magnification used for mute and open
394 string indicators.  Default value@tie{}0.5.
395 @item
396 @code{xo-padding} -- Padding for open and mute indicators from top
397 fret.  Default value 0.25.
398 @end itemize")
399      ;; ugh: double, change.
400      (full-length-padding ,number? "How much padding to use at the
401 right side of a full-length tuplet bracket.")
402      (full-length-to-extent ,boolean? "Run to the extent of the column
403 for a full-length tuplet bracket.")
404      (full-measure-extra-space ,number? "Extra space that is allocated
405 at the beginning of a measure with only one note.  This property is
406 read from the NonMusicalPaperColumn that begins the measure.")
407      (full-size-change ,boolean? "Don't make a change clef smaller.")
408
409
410 ;;
411 ;; g
412 ;;
413      (gap ,ly:dimension? "Size of a gap in a variable symbol.")
414      (gap-count ,integer? "Number of gapped beams for tremolo.")
415      (glissando-skip ,boolean? "Should this @code{NoteHead} be skipped
416 by glissandi?")
417      (glyph ,string? "A string determining what @q{style} of glyph is
418 typeset.  Valid choices depend on the function that is reading this
419 property.")
420      (glyph-name ,string? "The glyph name within the font.")
421      (glyph-name-alist ,list? "An alist of key-string pairs.")
422      (graphical ,boolean? "Display in graphical (vs. text) form.")
423      (grow-direction ,ly:dir? "Crescendo or decrescendo?")
424
425
426 ;;
427 ;; h
428 ;;
429      (hair-thickness ,number? "Thickness of the thin line in a bar
430 line.")
431      (harp-pedal-details ,list? "An alist of detailed grob properties
432 for harp pedal diagrams.  Each alist entry consists of a
433 @code{(@var{property} . @var{value})} pair.  The properties which can
434 be included in harp-pedal-details include the following:
435
436 @itemize @bullet
437 @item
438 @code{box-offset} -- Vertical shift of the center of flat/@/sharp pedal
439 boxes above/@/below the horizontal line.  Default value@tie{}0.8.
440 @item
441 @code{box-width} -- Width of each pedal box.  Default value@tie{}0.4.
442 @item
443 @code{box-height} -- Height of each pedal box.  Default value@tie{}1.0.
444 @item
445 @code{space-before-divider} -- Space between boxes before the first
446 divider (so that the diagram can be made symmetric).  Default
447 value@tie{}0.8.
448 @item
449 @code{space-after-divider} -- Space between boxes after the first
450 divider.  Default value@tie{}0.8.
451 @item
452 @code{circle-thickness} -- Thickness (in unit of the line-thickness)
453 of the ellipse around circled pedals.  Default value@tie{}0.5.
454 @item
455 @code{circle-x-padding} -- Padding in X direction of the ellipse
456 around circled pedals.  Default value 0.15.
457 @item
458 @code{circle-y-padding} -- Padding in Y direction of the ellipse
459 around circled pedals.  Default value@tie{}0.2.
460 @end itemize")
461      (head-direction ,ly:dir? "Are the note heads left or right in a
462 semitie?")
463      (height ,ly:dimension? "Height of an object in @code{staff-space}
464 units.")
465      (height-limit ,ly:dimension? "Maximum slur height: The longer the
466 slur, the closer it is to this height.")
467      (hide-tied-accidental-after-break ,boolean? "If set, an accidental
468 that appears on a tied note after a line break will not be displayed.")
469      (horizontal-shift ,integer? "An integer that identifies ranking
470 of @code{NoteColumn}s for horizontal shifting.  This is used by
471 @rinternals{note-collision-interface}.")
472      (horizontal-skylines ,ly:skyline-pair? "Two skylines, one to the
473 left and one to the right of this grob.")
474
475
476 ;;
477 ;; i
478 ;;
479      (ignore-collision ,boolean? "If set, don't do note collision
480 resolution on this @code{NoteColumn}.")
481      (implicit ,boolean? "Is this an implicit bass figure?")
482      (inspect-index ,integer? "If debugging is set, set beam and slur
483 configuration to this index, and print the respective scores.")
484      (inspect-quants ,number-pair? "If debugging is set, set beam and
485 slur quants to this position, and print the respective scores.")
486
487
488 ;;
489 ;; k
490 ;;
491      (keep-inside-line ,boolean? "If set, this column cannot have
492 objects sticking into the margin.")
493      (kern ,ly:dimension? "Amount of extra white space to add.  For
494 bar lines, this is the amount of space after a thick line.")
495      (knee ,boolean? "Is this beam kneed?")
496      (knee-spacing-correction ,number? "Factor for the optical
497 correction amount for kneed beams.  Set between @code{0} for no
498 correction and @code{1} for full correction.")
499
500
501 ;;
502 ;; l
503 ;;
504      (labels ,list? "List of labels (symbols) placed on a column.")
505      (layer ,integer? "An integer which determines the order of printing
506 objects.  Objects with the lowest value of layer are drawn first, then
507 objects with progressively higher values are drawn, so objects with
508 higher values overwrite objects with lower values.  By default most
509 objects are assigned a layer value of 1.")
510      (ledger-extra ,ly:dimension? "Extra distance from staff line to draw ledger
511 lines for.")
512      (ledger-line-thickness ,number-pair? "The thickness of ledger
513 lines.  It is the sum of 2@tie{}numbers: The first is the factor for
514 line thickness, and the second for staff space.  Both contributions
515 are added.")
516      (ledger-positions ,list? "Repeating pattern for the vertical positions
517 of ledger lines.  Bracketed groups are always shown together.")
518      (left-bound-info ,list? "An alist of properties for determining
519 attachments of spanners to edges.")
520      (left-padding ,ly:dimension? "The amount of space that is put
521 left to an object (e.g., a lyric extender).")
522      (length ,ly:dimension? "User override for the stem length of
523 unbeamed stems.")
524      (length-fraction ,number? "Multiplier for lengths.  Used for
525 determining ledger lines and stem lengths.")
526      (line-break-penalty ,number? "Penalty for a line break at this
527 column.  This affects the choices of the line breaker; it avoids a
528 line break at a column with a positive penalty and prefers a line
529 break at a column with a negative penalty.")
530      (line-break-permission ,symbol? "Instructs the line breaker on
531 whether to put a line break at this column.  Can be @code{force} or
532 @code{allow}.")
533      (line-break-system-details ,list? "An alist of properties to use
534 if this column is the start of a system.")
535      (line-count ,integer? "The number of staff lines.")
536      (line-positions ,list? "Vertical positions of staff lines.")
537      (line-thickness ,number? "The thickness of the tie or slur
538 contour.")
539      (long-text ,markup? "Text markup.  See @ruser{Formatting text}.")
540
541
542 ;;
543 ;; m
544 ;;
545      (max-beam-connect ,integer? "Maximum number of beams to connect
546 to beams from this stem.  Further beams are typeset as beamlets.")
547      (max-stretch ,number? "The maximum amount that this
548 @code{VerticalAxisGroup} can be vertically stretched (for example, in
549 order to better fill a page).")
550      (measure-count ,integer? "The number of measures for a
551 multi-measure rest.")
552      (measure-length ,ly:moment? "Length of a measure.  Used in some
553 spacing situations.")
554      (merge-differently-dotted ,boolean? "Merge note heads in
555 collisions, even if they have a different number of dots.  This is
556 normal notation for some types of polyphonic music.
557
558 @code{merge-differently-dotted} only applies to opposing stem
559 directions (i.e., voice 1 &@tie{}2).")
560      (merge-differently-headed ,boolean? "Merge note heads in
561 collisions, even if they have different note heads.  The smaller of
562 the two heads is rendered invisible.  This is used in polyphonic
563 guitar notation.  The value of this setting is used by
564 @rinternals{note-collision-interface}.
565
566 @code{merge-differently-headed} only applies to opposing stem
567 directions (i.e., voice 1 &@tie{}2).")
568      (minimum-distance ,ly:dimension? "Minimum distance between rest
569 and notes or beam.")
570      (minimum-length ,ly:dimension? "Try to make a spanner at least
571 this long, normally in the horizontal direction.  This requires an
572 appropriate callback for the @code{springs-and-rods} property.  If
573 added to a @code{Tie}, this sets the minimum distance between
574 noteheads.")
575      (minimum-length-fraction ,number? "Minimum length of ledger line
576 as fraction of note head size.")
577      (minimum-space ,ly:dimension? "Minimum distance that the victim
578 should move (after padding).")
579      (minimum-X-extent ,number-pair? "Minimum size of an object in
580 X@tie{}dimension, measured in @code{staff-space} units.")
581      (minimum-Y-extent ,number-pair? "Minimum size of an object in
582 Y@tie{}dimension, measured in @code{staff-space} units.")
583
584
585 ;;
586 ;; n
587 ;;
588      (neutral-direction ,ly:dir? "Which direction to take in the
589 center of the staff.")
590      (neutral-position ,number? "Position (in half staff spaces) where
591 to flip the direction of custos stem.")
592      (next ,ly:grob? "Object that is next relation (e.g., the lyric
593 syllable following an extender).")
594      (no-alignment ,boolean? "If set, don't place this grob in a
595 @code{VerticalAlignment}; rather, place it using its own
596 @code{Y-offset} callback.")
597      (no-ledgers ,boolean? "If set, don't draw ledger lines on this
598 object.")
599      (no-stem-extend ,boolean? "If set, notes with ledger lines do not
600 get stems extending to the middle staff line.")
601      (non-break-align-symbols ,list? "A list of symbols that determine
602 which NON-break-aligned interfaces to align this to.")
603      (non-default ,boolean? "Set for manually specified clefs.")
604      (non-musical ,boolean? "True if the grob belongs to a
605 @code{NonMusicalPaperColumn}.")
606      (nonstaff-nonstaff-spacing ,list? "The spacing alist
607 controlling the distance between the current non-staff line and
608 the next non-staff line in the direction of @code{staff-affinity},
609 if both are on the same side of the related staff, and
610 @code{staff-affinity} is either @code{UP} or @code{DOWN}.  See
611 @code{staff-staff-spacing} for a description of the alist
612 structure.")
613      (nonstaff-relatedstaff-spacing ,list? "The spacing alist
614 controlling the distance between the current non-staff line and
615 the nearest staff in the direction of @code{staff-affinity}, if
616 there are no non-staff lines between the two, and
617 @code{staff-affinity} is either @code{UP} or @code{DOWN}.  If
618 @code{staff-affinity} is @code{CENTER}, then
619 @code{nonstaff-relatedstaff-spacing} is used for the nearest
620 staves on @emph{both} sides, even if other non-staff lines appear
621 between the current one and either of the staves.  See
622 @code{staff-staff-spacing} for a description of the alist
623 structure.")
624      (nonstaff-unrelatedstaff-spacing ,list? "The spacing alist
625 controlling the distance between the current non-staff line and
626 the nearest staff in the opposite direction from
627 @code{staff-affinity}, if there are no other non-staff lines
628 between the two, and @code{staff-affinity} is either @code{UP} or
629 @code{DOWN}.  See @code{staff-staff-spacing} for a description of
630 the alist structure.")
631      (normalized-endpoints ,pair? "Represents left and right placement
632 over the total spanner, where the width of the spanner is normalized
633 between 0 and 1.")
634      (note-names ,vector? "Vector of strings containing names for
635 easy-notation note heads.")
636
637
638 ;;
639 ;; o
640 ;;
641      (outside-staff-horizontal-padding ,number? "By default, an
642 outside-staff-object can be placed so that is it very close to another
643 grob horizontally.  If this property is set, the outside-staff-object
644 is raised so that it is not so close to its neighbor.")
645      (outside-staff-padding ,number? "The padding to place between
646 this grob and the staff when spacing according to
647 @code{outside-staff-priority}.")
648      (outside-staff-priority ,number? "If set, the grob is positioned
649 outside the staff in such a way as to avoid all collisions.  In case
650 of a potential collision, the grob with the smaller
651 @code{outside-staff-priority} is closer to the staff.")
652
653
654 ;;
655 ;; p
656 ;;
657      (packed-spacing ,boolean? "If set, the notes are spaced as
658 tightly as possible.")
659      (padding ,ly:dimension? "Add this much extra space between
660 objects that are next to each other.")
661      (padding-pairs ,list? "An alist mapping @code{(@var{name}
662 . @var{name})} to distances.")
663      (page-break-penalty ,number? "Penalty for page break at this
664 column.  This affects the choices of the page breaker; it avoids a
665 page break at a column with a positive penalty and prefers a page
666 break at a column with a negative penalty.")
667      (page-break-permission ,symbol? "Instructs the page breaker on
668 whether to put a page break at this column.  Can be @code{force} or
669 @code{allow}.")
670      (page-turn-penalty ,number? "Penalty for a page turn at this
671 column.  This affects the choices of the page breaker; it avoids a
672 page turn at a column with a positive penalty and prefers a page turn
673 at a column with a negative penalty.")
674      (page-turn-permission ,symbol? "Instructs the page breaker on
675 whether to put a page turn at this column.  Can be @code{force} or
676 @code{allow}.")
677      (parenthesized ,boolean? "Parenthesize this grob.")
678      (positions ,number-pair? "Pair of staff coordinates
679 @code{(@var{left} . @var{right})}, where both @var{left} and
680 @var{right} are in @code{staff-space} units of the current staff.  For
681 slurs, this value selects which slur candidate to use; if extreme
682 positions are requested, the closest one is taken.")
683      (prefer-dotted-right ,boolean? "For note collisions, prefer to
684 shift dotted up-note to the right, rather than shifting just the
685 dot.")
686
687
688 ;;
689 ;; r
690 ;;
691      (ratio ,number? "Parameter for slur shape.  The higher this
692 number, the quicker the slur attains its @code{height-limit}.")
693      (remove-empty ,boolean? "If set, remove group if it contains no
694 interesting items.")
695      (remove-first ,boolean? "Remove the first staff of an orchestral
696 score?")
697      (replacement-alist ,list? "Alist of strings.
698 The key is a string of the pattern to be replaced.  The value is a
699 string of what should be displayed.  Useful for ligatures.")
700      (restore-first ,boolean? "Print a natural before the
701 accidental.")
702      (rhythmic-location ,rhythmic-location? "Where (bar number,
703 measure position) in the score.")
704      (right-bound-info ,list? "An alist of properties for determining
705 attachments of spanners to edges.")
706      (right-padding ,ly:dimension? "Space to insert on the right side
707 of an object (e.g., between note and its accidentals).")
708      (rotation ,list? "Number of degrees to rotate this object, and
709 what point to rotate around.  For example, @code{'(45 0 0)} rotates
710 by 45 degrees around the center of this object.")
711      (round-up-to-longer-rest ,boolean? "Displays the longer multi-measure
712 rest when the length of a measure is between two values of
713 @code{usable-duration-logs}.  For example, displays a breve instead of a whole
714 in a 3/2 measure.")
715
716
717 ;;
718 ;; s
719 ;;
720      (same-direction-correction ,number? "Optical correction amount
721 for stems that are placed in tight configurations.  This amount is
722 used for stems with the same direction to compensate for note head to
723 stem distance.")
724      (script-priority ,number? "A sorting key that determines in what
725 order a script is within a stack of scripts.")
726      (self-alignment-X ,number? "Specify alignment of an object.  The
727 value @w{@code{-1}} means left aligned, @code{0}@tie{}centered, and
728 @code{1}@tie{}right-aligned in X@tie{}direction.  Other numerical
729 values may also be specified.")
730      (self-alignment-Y ,number? "Like @code{self-alignment-X} but for
731 the Y@tie{}axis.")
732      (shorten-pair ,number-pair? "The lengths to shorten a
733 text-spanner on both sides, for example a pedal bracket.  Positive
734 values shorten the text-spanner, while negative values lengthen it.")
735      (shortest-duration-space ,ly:dimension? "Start with this much
736 space for the shortest duration.  This is expressed in
737 @code{spacing-increment} as unit.  See also
738 @rinternals{spacing-spanner-interface}.")
739      (shortest-playing-duration ,ly:moment? "The duration of the
740 shortest note playing here.")
741      (shortest-starter-duration ,ly:moment? "The duration of the
742 shortest note that starts here.")
743      (side-axis ,number? "If the value is @code{X} (or
744 equivalently@tie{}@code{0}), the object is placed horizontally next to
745 the other object.  If the value is @code{Y} or@tie{}@code{1}, it is
746 placed vertically.")
747      (side-relative-direction ,ly:dir? "Multiply direction of
748 @code{direction-source} with this to get the direction of this
749 object.")
750      (simple-Y ,boolean? "Should the Y placement of a spanner
751 disregard changes in system heights?")
752      (size ,number? "Size of object, relative to standard size.")
753      (skip-quanting ,boolean? "Should beam quanting be skipped?")
754      (skyline-horizontal-padding ,number? "For determining the
755 vertical distance between two staves, it is possible to have a
756 configuration which would result in a tight interleaving of grobs from
757 the top staff and the bottom staff.  The larger this parameter is, the
758 farther apart the staves are placed in such a configuration.")
759      (skyline-vertical-padding ,number? "The amount by which the left
760 and right skylines of a column are padded vertically, beyond the
761 @code{Y-extent}s and @code{extra-spacing-height}s of the constituent
762 grobs in the column.  Increase this to prevent interleaving of grobs
763 from adjacent columns.")
764      (slash-negative-kern ,number? "The space to remove between
765 slashes in percent repeat glyphs.  Larger values bring the two
766 elements closer together.")
767      (slope ,number? "The slope of this object.")
768      (slur-padding ,number? "Extra distance between slur and script.")
769      (space-alist ,list? "A table that specifies distances between
770 prefatory items, like clef and time-signature.  The format is an alist
771 of spacing tuples: @code{(@var{break-align-symbol} @var{type}
772 . @var{distance})}, where @var{type} can be the symbols
773 @code{minimum-space} or @code{extra-space}.")
774      (space-to-barline ,boolean? "If set, the distance between a note
775 and the following non-musical column will be measured to the bar line
776 instead of to the beginning of the non-musical column.  If there is a
777 clef change followed by a bar line, for example, this means that we
778 will try to space the non-musical column as though the clef is not
779 there.")
780      (spacing-increment ,number? "Add this much space for a doubled
781 duration.  Typically, the width of a note head.  See also
782 @rinternals{spacing-spanner-interface}.")
783      (spacing-pair ,pair? "A pair of alignment symbols which set an object's
784 spacing relative to its left and right @code{BreakAlignment}s.
785
786 For example, a @code{MultiMeasureRest} will ignore prefatory items at its
787 bounds (i.e., clefs, key signatures and time signatures) using the following
788 override:
789
790 @example
791 \\override MultiMeasureRest
792   #'spacing-pair = #'(staff-bar . staff-bar)
793 @end example")
794      (spanner-id ,string? "An identifier to distinguish concurrent spanners.")
795      (springs-and-rods ,boolean? "Dummy variable for triggering
796 spacing routines.")
797      (stacking-dir ,ly:dir? "Stack objects in which direction?")
798      (staff-affinity ,ly:dir? "The direction of the staff to use
799 for spacing the current non-staff line.  Choices are @code{UP},
800 @code{DOWN}, and @code{CENTER}.  If @code{CENTER}, the non-staff
801 line will be placed equidistant between the two nearest staves on
802 either side, unless collisions or other spacing constraints
803 prevent this.  Setting @code{staff-affinity} for a staff causes it
804 to be treated as a non-staff line.  Setting @code{staff-affinity}
805 to @code{#f} causes a non-staff line to be treated as a staff.")
806      (staff-padding ,ly:dimension? "Maintain this much space between
807 reference points and the staff.  Its effect is to align objects of
808 differing sizes (like the dynamics @b{p} and @b{f}) on their
809 baselines.")
810      (staff-position ,number? "Vertical position, measured in half
811 staff spaces, counted from the middle line.")
812      (staff-space ,ly:dimension? "Amount of space between staff lines,
813 expressed in global @code{staff-space}.")
814      (staff-staff-spacing ,list? "When applied to a staff-group's
815 @code{StaffGrouper} grob, this spacing alist controls the distance
816 between consecutive staves within the staff-group.  When applied
817 to a staff's @code{VerticalAxisGroup} grob, it controls the
818 distance between the staff and the nearest staff below it in the
819 same system, replacing any settings inherited from the
820 @code{StaffGrouper} grob of the containing staff-group, if there
821 is one.  This property remains in effect even when non-staff lines
822 appear between staves.  The alist can contain the following keys:
823
824 @itemize
825
826 @item
827 @code{basic-distance} -- the vertical distance, measured in
828 staff-spaces, between the reference points of the two items when
829 no collisions would result, and no stretching or compressing is in
830 effect.
831
832 @item
833 @code{minimum-distance} -- the smallest allowable vertical
834 distance, measured in staff-spaces, between the reference points
835 of the two items, when compressing is in effect.
836
837 @item
838 @code{padding} -- the minimum required amount of unobstructed
839 vertical whitespace between the bounding boxes (or skylines) of
840 the two items, measured in staff-spaces.
841
842 @item
843 @code{stretchability} -- a unitless measure of the dimension's
844 relative propensity to stretch.  If zero, the distance will not
845 stretch (unless collisions would result).
846
847 @end itemize")
848      (staffgroup-staff-spacing ,list? "The spacing alist
849 controlling the distance between the last staff of the current
850 staff-group and the staff just below it in the same system, even
851 if one or more non-staff lines exist between the two staves.  If
852 the @code{staff-staff-spacing} property of the staff's
853 @code{VerticalAxisGroup} grob is set, that is used instead.  See
854 @code{staff-staff-spacing} for a description of the alist
855 structure.")
856      (stem-attachment ,number-pair? "An @code{(@var{x} . @var{y})}
857 pair where the stem attaches to the notehead.")
858      (stem-begin-position ,number? "User override for the
859 begin position of a stem.")
860      ;;[TODO: doco]
861      (stem-spacing-correction ,number? "Optical correction amount for
862 stems that are placed in tight configurations.  For opposite
863 directions, this amount is the correction for two normal sized stems
864 that overlap completely.")
865      (stemlet-length ,number? "How long should be a stem over a
866 rest?")
867      (stencil ,ly:stencil? "The symbol to print.")
868      (stencils ,list? "Multiple stencils, used as intermediate
869 value.")
870      (strict-grace-spacing ,boolean? "If set, main notes are spaced
871 normally, then grace notes are put left of the musical columns for the
872 main notes.")
873      (strict-note-spacing ,boolean? "If set, unbroken columns with
874 non-musical material (clefs, bar lines, etc.) are not spaced
875 separately, but put before musical columns.")
876      (stroke-style ,string? "Set to @code{\"grace\"} to turn stroke
877 through flag on.")
878      (style ,symbol? "This setting determines in what style a grob is
879 typeset.  Valid choices depend on the @code{stencil} callback reading
880 this property.")
881
882
883 ;;
884 ;; t
885 ;;
886      (text ,markup? "Text markup.  See @ruser{Formatting text}.")
887 ;;FIXME -- Should both be the same?
888      (text-direction ,ly:dir? "This controls the ordering of the
889 words.  The default @code{RIGHT} is for roman text.  Arabic or Hebrew
890 should use @code{LEFT}.")
891      (thick-thickness ,number? "Bar line thickness, measured in
892 @code{line-thickness}.")
893      (thickness ,number? "Line thickness, generally measured in
894 @code{line-thickness}.")
895      (thin-kern ,number? "The space after a hair-line in a bar line.")
896      (tie-configuration ,list? "List of @code{(@var{position} .
897 @var{dir})} pairs, indicating the desired tie configuration, where
898 @var{position} is the offset from the center of the staff in staff
899 space and @var{dir} indicates the direction of the tie
900 (@code{1}=>up, @w{@code{-1}}=>down, @code{0}=>center).  A non-pair entry
901 in the list causes the corresponding tie to be formatted
902 automatically.")
903      (to-barline ,boolean? "If true, the spanner will stop at the bar
904 line just before it would otherwise stop.")
905      (toward-stem-shift ,number? "Amount by which scripts are shifted
906 toward the stem if their direction coincides with the stem direction.
907 @code{0.0} means keep the default position (centered on the note
908 head), @code{1.0} means centered on the stem.  Interpolated values are
909 possible.")
910      (transparent ,boolean? "This makes the grob invisible.")
911
912
913 ;;
914 ;; u
915 ;;
916      (uniform-stretching ,boolean? "If set, items stretch
917 proportionally to their durations.  This looks better in complex
918 polyphonic patterns.")
919      (used ,boolean? "If set, this spacing column is kept in the
920 spacing problem.")
921      (usable-duration-logs ,list? "List of @code{duration-log}s that
922 can be used in typesetting the grob.")
923      (use-skylines ,boolean? "Should skylines be used for side
924 positioning?")
925
926 ;;
927 ;; v
928 ;;
929      (vertical-skylines ,ly:skyline-pair? "Two skylines, one above and
930 one below this grob.")
931
932
933 ;;
934 ;; w
935 ;;
936      (when ,ly:moment? "Global time step associated with this column
937 happen?")
938      (whiteout ,boolean? "If true, the grob is printed over a white
939 background to white-out underlying material, if the grob is visible.
940  Usually #f by default.")
941      (width ,ly:dimension? "The width of a grob measured in staff
942 space.")
943      (word-space ,ly:dimension? "Space to insert between words in
944 texts.")
945
946
947 ;;
948 ;; x
949 ;;
950      (X-extent ,number-pair? "Hard coded extent in X@tie{}direction.")
951      (X-offset ,number? "The horizontal amount that this object is
952 moved relative to its X-parent.")
953      (X-positions ,number-pair? "Pair of X staff coordinates of a spanner
954 in the form @code{(@var{left} . @var{right})}, where both @var{left} and
955 @var{right} are in @code{staff-space} units of the current staff.")
956
957
958 ;;
959 ;; y
960 ;;
961      (Y-extent ,number-pair? "Hard coded extent in Y@tie{}direction.")
962      (Y-offset ,number? "The vertical amount that this object is moved
963 relative to its Y-parent.")
964
965 ;;
966 ;; z
967 ;;
968      (zigzag-length ,ly:dimension? "The length of the lines of a
969 zigzag, relative to @code{zigzag-width}.  A value of@tie{}@code{1}
970 gives 60-degree zigzags.")
971      (zigzag-width ,ly:dimension? "The width of one zigzag squiggle.
972 This number is adjusted slightly so that the glissando line can be
973 constructed from a whole number of squiggles.")
974      )))
975
976
977 ;;;;;;;;;;;;;;;;
978 ;;   INTERNAL
979
980
981 (define (define-internal-grob-property symbol type? description)
982   (define-grob-property symbol type? description)
983   (set-object-property! symbol 'backend-internal #t)
984   symbol
985   )
986
987
988 (define-public all-internal-grob-properties
989   (map
990    (lambda (x)
991      (apply define-internal-grob-property x))
992
993    `(
994      ;;;;;;;;;;;;;;;;
995      ;; grobs & grob arrays.  (alphabetical)
996      (accidental-grob ,ly:grob? "The accidental for this note.")
997      (accidental-grobs ,list? "An alist with @code{(@var{notename} .
998 @var{groblist})} entries.")
999      (adjacent-spanners ,ly:grob-array? "An array of directly neighboring
1000 dynamic spanners.")
1001      (all-elements ,ly:grob-array? "An array of all grobs in this line.  Its
1002 function is to protect objects from being garbage collected.")
1003      (arpeggio ,ly:grob? "A pointer to an @code{Arpeggio} object.")
1004      (axis-group-parent-X ,ly:grob? "Containing X@tie{}axis group.")
1005      (axis-group-parent-Y ,ly:grob? "Containing Y@tie{}axis group.")
1006
1007      (bars ,ly:grob-array? "An array of bar line pointers.")
1008      (beam ,ly:grob? "A pointer to the beam, if applicable.")
1009      (bound-alignment-interfaces ,list "Interfaces to be used
1010 for positioning elements that align with a column.")
1011      (bounded-by-me ,ly:grob-array? "An array of spanners that have this
1012 column as start/@/begin point.  Only columns that have grobs or act as
1013 bounds are spaced.")
1014      (bracket ,ly:grob? "The bracket for a number.")
1015
1016      (columns ,ly:grob-array? "An array of grobs, typically containing
1017 @code{PaperColumn} or @code{NoteColumn} objects.")
1018      (conditional-elements ,ly:grob-array? "Internal use only.")
1019      (covered-grobs ,ly:grob-array? "Grobs that could potentially collide
1020 with a beam.")
1021
1022      (direction-source ,ly:grob? "In case @code{side-relative-direction} is
1023 set, which grob to get the direction from.")
1024      (display-cautionary ,boolean? "Should the grob be displayed as a cautionary grob?")
1025      (dot ,ly:grob? "A reference to a @code{Dots} object.")
1026      (dots ,ly:grob-array? "Multiple @code{Dots} objects.")
1027
1028      (elements ,ly:grob-array? "An array of grobs; the type is depending on
1029 the grob where this is set in.")
1030      (encompass-objects ,ly:grob-array? "Objects that a slur should avoid
1031 in addition to notes and stems.")
1032
1033      (figures ,ly:grob-array? "Figured bass objects for continuation line.")
1034      (flag ,ly:grob? "A pointer to a @code{Flag} object.")
1035      (footnote-stencil ,ly:stencil? "The stencil of a system's footnotes.")
1036
1037      (glissando-index ,integer? "The index of a glissando in its note
1038 column.")
1039      (grace-spacing ,ly:grob? "A run of grace notes.")
1040
1041      (heads ,ly:grob-array? "An array of note heads.")
1042
1043      (items-worth-living ,ly:grob-array? "An array of interesting items.  If
1044 empty in a particular staff, then that staff is erased.")
1045      (in-note-direction ,ly:dir? "Direction to place in-notes above a system.")
1046      (in-note-padding ,number? "Padding between in-notes.")
1047      (in-note-stencil ,ly:stencil? "The stencil of a system's in-notes.")
1048
1049      (keep-alive-with ,ly:grob-array? "An array of other
1050 @code{VerticalAxisGroup}s.  If any of them are alive, then we will stay alive.")
1051
1052      (left-items ,ly:grob-array? "DOCME")
1053      (left-neighbor ,ly:grob? "The right-most column that has a spacing-wish
1054 for this column.")
1055
1056      (normal-stems ,ly:grob-array? "An array of visible stems.")
1057      (note-columns ,ly:grob-array? "An array of @code{NoteColumn} grobs.")
1058      (note-head ,ly:grob? "A single note head.")
1059      (note-heads ,ly:grob-array? "An array of note head grobs.")
1060      (pedal-text ,ly:grob? "A pointer to the text of a mixed-style piano
1061 pedal.")
1062      (pure-relevant-grobs ,ly:grob-array? "All the grobs (items and spanners)
1063 that are relevant for finding the @code{pure-Y-extent}")
1064      (pure-relevant-items ,ly:grob-array? "A subset of elements that are
1065 relevant for finding the @code{pure-Y-extent}.")
1066      (pure-relevant-spanners ,ly:grob-array? "A subset of elements that are
1067 relevant for finding the @code{pure-Y-extent}.")
1068      (pure-Y-common ,ly:grob? "A cache of the
1069 @code{common_refpoint_of_array} of the @code{elements} grob set.")
1070
1071      (rest ,ly:grob? "A pointer to a @code{Rest} object.")
1072      (rest-collision ,ly:grob? "A rest collision that a rest is in.")
1073      (rests ,ly:grob-array? "An array of rest objects.")
1074      (right-items ,ly:grob-array? "DOCME")
1075      (right-neighbor ,ly:grob? "See @code{left-neighbor}.")
1076
1077      (side-support-elements ,ly:grob-array? "The side support, an array of
1078 grobs.")
1079      (slur ,ly:grob? "A pointer to a @code{Slur} object.")
1080      (spacing ,ly:grob? "The spacing spanner governing this section.")
1081      (spacing-wishes ,ly:grob-array? "An array of note spacing or staff spacing
1082 objects.")
1083      (span-start ,boolean? "Is the note head at the start of a spanner?")
1084      (spanner-broken ,boolean? "Indicates whether spanner
1085 alignment should be broken after the current spanner.")
1086      (spanner-placement ,ly:dir? "The place of an annotation on a spanner.
1087 @code{LEFT} is for the first spanner, and @code{RIGHT} is for the last.
1088 @code{CENTER} will place it on the broken spanner that falls closest to the
1089 center of the length of the entire spanner, although this behavior is
1090 unpredictable in situations with lots of rhythmic diversity.  For predictable
1091 results, use @code{LEFT} and @code{RIGHT}.")
1092      (staff-grouper ,ly:grob? "The staff grouper we belong to.")
1093      (staff-symbol ,ly:grob? "The staff symbol grob that we are in.")
1094      (stem ,ly:grob? "A pointer to a @code{Stem} object.")
1095      (stems ,ly:grob-array? "An array of stem objects.")
1096
1097      (tie ,ly:grob? "A pointer to a @code{Tie} object.")
1098      (tremolo-flag ,ly:grob? "The tremolo object on a stem.")
1099      (tuplet-number ,ly:grob? "The number for a bracket.")
1100      (tuplets ,ly:grob-array? "An array of smaller tuplet brackets.")
1101      (X-common ,ly:grob? "Common reference point for axis group.")
1102      (Y-common ,ly:grob? "See @code{X-common}.")
1103
1104      ;;;;;;;;;;;;;;;;
1105      ;; other
1106      (adjacent-pure-heights ,pair? "A pair of vectors.  Used by a
1107 @code{VerticalAxisGroup} to cache the @code{Y-extent}s of different column
1108 ranges.")
1109
1110      (begin-of-line-visible ,boolean? "Set to make @code{ChordName} or
1111 @code{FretBoard} be visible only at beginning of line or at
1112 chord changes.")
1113
1114      (cause ,scheme? "Any kind of causation objects (i.e., music, or perhaps
1115 translator) that was the cause for this grob.")
1116      (cross-staff ,boolean? "For a beam or a stem, this is true if we
1117 depend on inter-staff spacing.")
1118
1119      (delta-position ,number? "The vertical position difference.")
1120
1121      (font ,ly:font-metric? "A cached font metric object.")
1122      (forced ,boolean? "Manually forced accidental.")
1123
1124      (head-width ,ly:dimension? "The width of this ligature head.")
1125
1126      (ideal-distances ,list? "@code{(@var{obj} . (@var{dist} .
1127 @var{strength}))} pairs.")
1128      (important-column-ranks ,vector? "A cache of columns that contain
1129 @code{items-worth-living} data.")
1130      (interfaces ,list? "A list of symbols indicating the interfaces
1131 supported by this object.  It is initialized from the @code{meta} field.")
1132
1133      (least-squares-dy ,number? "The ideal beam slope, without damping.")
1134
1135      (maybe-loose ,boolean? "Used to mark a breakable column that is
1136 loose if and only if it is in the middle of a line.")
1137      (meta ,list? "Provide meta information.  It is an alist with the
1138 entries @code{name} and @code{interfaces}.")
1139      (minimum-distances ,list? "A list of rods that have the format
1140 @code{(@var{obj} . @var{dist})}.")
1141
1142      (positioning-done ,boolean? "Used to signal that a positioning element
1143 did its job.  This ensures that a positioning is only done once.")
1144      (pure-Y-extent ,number-pair? "The estimated height of a system.")
1145      (pure-Y-offset-in-progress ,boolean? "A debugging aid for catching
1146 cyclic dependencies.")
1147      (quantize-position ,boolean? "If set, a vertical alignment is aligned
1148 to be within staff spaces.")
1149      (quantized-positions ,number-pair? "The beam positions after
1150 quanting.")
1151
1152      (script-stencil ,pair? "A pair @code{(@var{type} . @var{arg})} which
1153 acts as an index for looking up a @code{Stencil} object.")
1154      (shorten ,ly:dimension? "The amount of space that a stem is shortened.
1155 Internally used to distribute beam shortening over stems.")
1156      (stem-info ,pair? "A cache of stem parameters.")
1157      (system-Y-offset ,number? "The Y-offset (relative to the bottom of the
1158 top-margin of the page) of the system to which this staff belongs.")
1159
1160
1161      ;;;;;;;;;;;;;;;;
1162      ;; ancient notation
1163
1164      ;;;;;;; TODO:
1165      ;; There are too many properties for ancient notation;
1166      ;; probably neume-types (a list of symbols) would also work.
1167
1168      ;; However, such a list would consist of a couple of dozens of
1169      ;; entries, since head prefixes may be combined in many ways.  If
1170      ;; the macros in `gregorian.ly' would directly set prefix-set,
1171      ;; all the head prefixes could be junked; however, such macros
1172      ;; would be quite numerous, I guess.  --jr
1173
1174      (add-cauda ,boolean? "Does this flexa require an additional cauda on
1175 the left side?")
1176      (add-join ,boolean? "Is this ligature head-joined with the next one
1177 by a vertical line?")
1178      (add-stem ,boolean? "Is this ligature head a virga and therefore needs
1179 an additional stem on the right side?")
1180      (ascendens ,boolean? "Is this neume of ascending type?")
1181      (auctum ,boolean? "Is this neume liquescentically augmented?")
1182
1183      (cavum ,boolean? "Is this neume outlined?")
1184      (context-info ,integer? "Within a ligature, the final glyph or shape of
1185 a head may be affected by the left and/@/or right neighbour head.
1186 @code{context-info} holds for each head such information about the left and
1187 right neighbour, encoded as a bit mask.")
1188
1189      (deminutum ,boolean? "Is this neume deminished?")
1190      (descendens ,boolean? "Is this neume of descendent type?")
1191
1192      (flexa-height ,ly:dimension? "The height of a flexa shape in a ligature
1193 grob (in @code{staff-space} units).")
1194      (flexa-interval ,integer? "The interval spanned by the two notes of a
1195 flexa shape (1 is a second, 7 is an octave).")
1196      (flexa-width ,ly:dimension? "The width of a flexa shape in a
1197 ligature grob in (in @code{staff-space} units).")
1198      (ligature-flexa ,boolean? "request joining note to the previous one
1199 in a flexa.")
1200
1201      (inclinatum ,boolean? "Is this neume an inclinatum?")
1202
1203
1204      (linea ,boolean? "Attach vertical lines to this neume?")
1205
1206      (oriscus ,boolean? "Is this neume an oriscus?")
1207
1208      (pes-or-flexa ,boolean? "Shall this neume be joined with the previous
1209 head?")
1210      (prefix-set ,number? "A bit mask that holds all Gregorian head
1211 prefixes, such as @code{\\virga} or @code{\\quilisma}.")
1212      (primitive ,integer? "A pointer to a ligature primitive, i.e., an item
1213 similar to a note head that is part of a ligature.")
1214
1215      (quilisma ,boolean? "Is this neume a quilisma?")
1216
1217      (stropha ,boolean? "Is this neume a stropha?")
1218
1219      (virga ,boolean? "Is this neume a virga?")
1220
1221      (x-offset ,ly:dimension? "Extra horizontal offset for ligature heads.")
1222
1223      )))
1224
1225 (define-public all-backend-properties
1226   (append
1227    all-internal-grob-properties
1228    all-user-grob-properties))