]> git.donarmstrong.com Git - lilypond.git/blob - scm/define-grob-properties.scm
* input/regression/rehearsal-mark-number.ly: new file.
[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--2003  Han-Wen Nienhuys <hanwen@cs.uu.nl>
6 ;;;;                 Jan Nieuwenhuizen <janneke@gnu.org>
7
8
9
10 (define-public all-backend-properties '())
11
12 (define (grob-property-description symbol type? description)
13   (if (not (equal? (object-property symbol 'backend-doc) #f))
14       (begin
15         (ly:warn (string-append "Redefining " (symbol->string symbol) "\n"))
16         (exit 2)
17       ))
18   
19   (set-object-property! symbol 'backend-type? type?)
20   (set-object-property! symbol 'backend-doc description)
21   (set! all-backend-properties (cons symbol all-backend-properties))
22   )
23
24 ;; put this in an alist?
25
26 (grob-property-description 'X-extent-callback procedure? "procedure taking an grob and axis argument, returning a number-pair. The return value is the extent of the grob.
27
28 The size of a grob are determined through callbacks, settable with
29 grob properties @code{X-extent-callback} and @code{Y-extent-callback}.
30 There can be only one extent-callback for each axis. No callback
31 (Scheme value @code{#f}) means: `empty in this direction'. If you fill
32 in a pair of numbers, that pair hard-codes the extent in that
33 coordinate.
34 ")
35 (grob-property-description 'X-offset-callbacks list? "list of functions, each taking an grob and axis argument. The function determine the position relative to this grob's parent. The last one in the list is called first.
36
37 Offsets of grobs are relative to a parent reference point. Most
38 positions are not known when an object is created, so these are
39 calculated as needed. This is done by adding a callback for a specific
40 direction.
41
42 Offset callbacks can be stacked, i.e.
43
44 @example
45         \\property .... \\override #'Y-offset-callbacks = #(list
46                 callback1 callback2 callback3)
47
48 @end example
49
50 The callbacks will be executed in the order @code{callback3 callback2
51 callback1}. This is used for quantized positioning: the staccato dot is
52 above or below a note head, and it must not be on a staff-line.  To
53 achieve this, the staccato dot has two callbacks: one that positions the
54 grob above or below the note head, and one that rounds the Y-position of
55 the grob to the nearest open space.
56
57
58 ")
59 (grob-property-description 'Y-extent-callback procedure? "see @code{X-extent-callback}.")
60 (grob-property-description 'Y-offset-callbacks list? "see @code{X-offset-callbacks}.")
61
62 (grob-property-description 'accidental-grobs list? "Alis with (NOTENAME . GROBLIST) entries")
63 (grob-property-description 'accidentals list? "List of alteration numbers.")
64 (grob-property-description 'add-cauda boolean? "does this flexa require an additional cauda on the left side?.")
65 (grob-property-description 'add-join boolean? "is this ligature head joined with the next one by a vertical line?")
66 (grob-property-description 'add-stem boolean? "is this ligature head a virga and therefore needs an additional stem on the right side?")
67 (grob-property-description 'adjust-if-on-staffline boolean? "If this grob is on a staff line, adjust its appearance, so that it better fits into the staff.  E.g., if set true on stem grobs, flares of mensural flags will always be aligned with the staff lines, regardless if the associated note head is printed on a staff line or inbetween.")
68 (grob-property-description 'after-line-breaking-callback procedure? "Procedure taking a grob as argument.
69 This procedure is called (using dependency resolution) after line breaking. Return value is ignored.")
70 (grob-property-description 'align-dir ly:dir? "Which side to align? -1: left side, 0: around center of width, 1: right side.")
71 (grob-property-description 'all-elements grob-list? "list of all grobs in this line. Needed for protecting grobs from GC.")
72 (grob-property-description 'arch-angle number? "turning angle of the hook of a system brace" )
73 (grob-property-description 'arch-height ly:dimension? "height of the hook of a system brace.")
74 (grob-property-description 'arch-thick number? "thickness of the hook of system brace.")
75 (grob-property-description 'arch-width ly:dimension? "width of the hook of a system brace.")
76 (grob-property-description 'arpeggio ly:grob? "pointer to arpeggio object.") 
77 (grob-property-description 'arpeggio-direction ly:dir? "If set, put an
78 arrow on the arpeggio squiggly line.")
79 (grob-property-description 'ascendens boolean? "is this neume of an ascending?.")
80 (grob-property-description 'attachment pair? "cons of symbols
81 indicating how a slur should be attached at the ends. The format is
82 '(LEFT-TYPE . RIGHT-TYPE), where both TYPEs are symbols. The values of
83 these symbols may be alongside-stem, stem, head or loose-end.")
84 (grob-property-description 'attachment-offset pair? "cons of offsets,
85 '(LEFT-offset . RIGHT-offset).  This offset is added to the
86 attachments to prevent ugly slurs.  [fixme: we need more documentation here].
87 .")
88 (grob-property-description 'auctum boolean? "is this neume augmented?.")
89 (grob-property-description 'auto-knee-gap ly:dimension? "If a gap is found between noteheads
90 where a  horizontal beam fits that is larger than this number,  make a kneed beam.")
91 (grob-property-description 'axes list? "list of axis numbers.
92 In the case of alignment grobs, this should contain only one number.")
93
94 (grob-property-description 'balloon-text markup? "Text to add to help balloon")
95 (grob-property-description 'balloon-text-props list? "Font properties
96 for balloon text.")
97 (grob-property-description 'balloon-text-offset number-pair?
98                            "Where to put text relative to balloon.")
99 (grob-property-description 'balloon-padding ly:dimension? "Text to add to help balloon")
100 (grob-property-description 'balloon-original-callback procedure? "The
101 original molecule drawer to draw the balloon around.")
102
103
104 (grob-property-description 'bar-size ly:dimension? "size of a bar line.")
105 (grob-property-description 'bars grob-list? "list of barline pointers.")
106 (grob-property-description 'bar-size-procedure procedure? "Procedure that computes the size of a bar line.")
107 (grob-property-description 'base-shortest-duration ly:moment?
108                            "Spacing is based on the shortest notes in a piece. Normally, pieces are spaced as if notes at least as short as this are present.")
109 (grob-property-description 'baseline-skip ly:dimension? "Baseline skip to use for multiple lines of text.")
110 (grob-property-description 'bass list? " musical-pitch, optional.")
111 (grob-property-description 'beam ly:grob? "pointer to the beam, if applicable.")
112 (grob-property-description 'beam-thickness ly:dimension? "thickness, measured in staffspace.")
113 (grob-property-description 'beam-width ly:dimension? "width of the tremolo sign.")
114 (grob-property-description 'beamed-lengths list? "list of stem lengths given beam multiplicity .")
115 (grob-property-description 'beamed-minimum-free-lengths list? "list of normal minimum free stem lengths (chord to beams) given beam multiplicity.")
116 (grob-property-description 'beamed-extreme-minimum-free-lengths list? "list of extreme minimum free stem lengths (chord to beams) given beam multiplicity.")
117
118 (grob-property-description 'beamed-stem-shorten list? "shorten beamed stems in forced direction.")
119 (grob-property-description 'beaming pair?
120                            "Pair of number lists. Each number list
121 specifies which beams to make. 0 is the central beam, 1 is the next
122 beam toward the note etc. This information is used to determine how to
123 connect the beaming patterns from stem to stem inside a beam.")
124
125
126 (grob-property-description 'beautiful number? "number that dictates when a slur should be de-uglyfied.  It correlates with the enclosed area between noteheads and slurs.  A value of 0.1 yields only undisturbed slurs, a value of 5 will tolerate quite high blown slurs.")
127 (grob-property-description 'before-line-breaking-callback procedure? "Procedure taking grob as argument.
128 This procedure is called (using dependency resolution) before line breaking, but after generating discretionary items. Return value is ignored.")
129 (grob-property-description 'between-cols pair? "Where to attach a loose column to")
130 (grob-property-description 'between-system-string string? "string
131  to dump between two systems. Useful for forcing pagebreaks.")
132 (grob-property-description 'bounded-by-me grob-list? "list of spanners that have this
133 column as start/begin point. Only columns that have grobs or act as bounds are spaced.")
134 (grob-property-description 'bracket-thick number? "width of a system start bracket. .")
135 (grob-property-description 'break-align-symbol symbol? "the index in the spacing table (symbol) of the to be aligned item.")
136 (grob-property-description 'break-glyph-function procedure? "function taking glyph and break-direction, returning the glyph at a line break.")
137 (grob-property-description 'breakable boolean? "boolean indicating if this is a breakable item (clef, barline, key sig, etc.).")
138 (grob-property-description 'c0-position integer? "integer indicating the position of central C.")
139 (grob-property-description 'cautionary-style symbol? "style  of cautionary accidentals. Choices are 'smaller (one size smaller) or 'parentheses.")
140 (grob-property-description 'cautionary boolean? "is this a cautionary accidentals.?")
141 (grob-property-description 'cavum boolean? "is this neume outlined?.")
142
143 (grob-property-description 'center-element ly:grob? "grob which will
144 be at the center of the group after aligning (when using
145 Align_interface::center_on_element). .")
146 (grob-property-description 'concaveness-gap ly:dimension? "A beam is
147 considered to be concave if the distance of an inner notehead to the
148 line between two outer noteheads is bigger than this gap.")
149 (grob-property-description 'concaveness-threshold number? "A beam is
150 considered to be concave is concaveness is bigger than this threshold.
151 Concaveness is calculated as the sum of the vertical distances of
152 inner noteheads that fall outside the interval of the two outer
153 noteheads, to the vertically nearest outer notehead, divided by the
154 square of the inner notes involved.")
155 (grob-property-description 'collapse-height ly:dimension? "Minimum height of system start delimiter.  If equal or smaller, the bracket is removed.")
156
157 (grob-property-description 'columns grob-list? "list of grobs, typically containing paper-columns.")
158 (grob-property-description 'conditional-elements grob-list? "Internal use only")
159 (grob-property-description 'context-info integer? "DOCME")
160
161 (grob-property-description 'control-points list? "List of 4 offsets (number-pairs) that form control points for the  tie/slur shape.")
162 (grob-property-description 'damping integer? "amount of beam slope damping should beam slope be damped? 0: no, 1: yes, 100000: horizontal beams .")
163 (grob-property-description 'dash-period number? "the length of one dash + white space. If negative, no line is drawn at all."
164 )
165 (grob-property-description 'dash-fraction number? "Size of the dashes, relative to dash-period. Should be between 0.0 (no line) and 1.0 (continuous line).")
166 (grob-property-description 'dashed number? "[FIXME: use dash-period/dash length; see text-spanner] number representing the length of the dashes.")
167 (grob-property-description 'descendens boolean? "is this neume of a descendent type?.")
168 (grob-property-description 'de-uglify-parameters list? "list of 3 real constants. They define the valid areas for the middle control points. Used in de_uglyfy. They are a bit empirical.")
169
170 (grob-property-description 'neutral-direction ly:dir? "Where to go if we're on the neutral position of the staff (by default, the middle of the staff; see also grob-property neutral-position).  [Ross] has the following to say about this: Some engravers consider the middle line neutral, and take the option of using either up- or down-stems for notes that fall on it. However, more up-to-date engraving no longer permits an option; now a down-stem is always appropriate.")
171 (grob-property-description 'neutral-position number? "Position (in half staff spaces) where to flip the direction of stems: by default, custodes above this position get their stems downwards; custodes below this position get their stems upwards.  A value of 0 designates the center of the staff.  Use property neutral-direction to control the behaviour of stems on the neutral position itself.  (Note: currently, neutral-position is supported only for custodes; for stems of note heads, neutral-position is currently fixed to 0, i.e. the middle of the staff.)")
172 (grob-property-description 'deminutum boolean? "is this neume deminished?.")
173 (grob-property-description 'dependencies grob-list? "list of score-grob pointers that indicate who to compute first for certain global passes.")
174 (grob-property-description 'details list? "alist of parameters for detailed grob behavior.")
175 (grob-property-description 'dir-function procedure? "function of type (count total)->direction.  Default value: beam-dir-majority, also available: beam-dir-mean, beam-dir-median.
176
177 The ways to calculate the direction of a beam work as follows:
178 @table @code
179 @item majority
180 number count of up or down notes
181 @item mean
182 mean center distance of all notes
183 @item median
184 mean centre distance weighted per note
185 @end table
186
187 ")
188 (grob-property-description 'direction ly:dir? "up or down, left or right?.")
189 (grob-property-description 'direction-source ly:grob? "in case side-relative-direction is set, which grob  to get the direction from .")
190 (grob-property-description 'dot ly:grob? "reference to Dots object.")
191 (grob-property-description 'dot-count integer? "number of dots.")
192 (grob-property-description 'duration-log integer? "2-log of the notehead duration, i.e. 0=whole note, 1 = half note, etc.")
193 (grob-property-description 'edge-height pair? "a cons that specifies the heights of the vertical edges '(LEFT-height . RIGHT-height).")
194 (grob-property-description 'bracket-flare number-pair? "a pair
195  that specifies how much edges of brackets  should slant outward.
196  Value 0.0 means straight edges")
197
198 (grob-property-description 'edge-text pair? "a cons that specifies the texts to be set at the edges '(LEFT-text . RIGHT-text).")
199 (grob-property-description 'elements grob-list? "list of grobs, type depending on the Grob where this is set in.")
200 (grob-property-description 'expand-limit integer? "maximum number of measures expanded in church rests.")
201 (grob-property-description 'extra-X-extent number-pair? "enlarge in X dimension by this much, measured in staff space.")
202 (grob-property-description 'extra-Y-extent number-pair? "see @code{extra-Y-extent}.")
203 (grob-property-description 'X-extent number-pair? "Store extent. internal use only. ")
204 (grob-property-description 'Y-extent number-pair? "Store extent. internal use only. ")
205 (grob-property-description 'extra-offset number-pair? "pair of reals
206 (a cons) forcing an extra offset before outputting.
207 @code{extra-offset} is added just before `printing' the grob, so the
208 typesetting engine is completely oblivious to it.
209 ")
210 (grob-property-description 'extremity-offset-alist list? "an alist (attachment stem-dir*dir slur-dir*dir) -> offset.  The offset adds to the centre of the notehead, or stem.")
211
212 (grob-property-description 'extremity-rules list? "an alist (procedure
213 slur dir) -> attachment to determine the attachment (see above).  If
214 procedure returns #t, attachment is used.  Otherwise, the next
215 procedure is tried.")
216 (grob-property-description
217  'flag-style symbol?
218  "a string determining what style of glyph is typeset on a Stem. Valid
219 options include undefined and mensural.
220   Additionally, @code{no-flag} switches off the flag.")
221 (grob-property-description 'stroke-style string? "set to \"grace\" to turn stroke through flag on.")
222 (grob-property-description 'flag-width-function procedure? "Procedure that computes the width of a half-beam (a non-connecting beam.).")
223 (grob-property-description 'flexa-height ly:dimension? "height of a flexa shape in a ligature grob in staff_space.")
224 (grob-property-description 'flexa-width ly:dimension? "width of a flexa shape in a ligature grob in staff_space.")
225 (grob-property-description 'font-family symbol? "partial font
226 definition: music roman braces dynamic math ...")
227 (grob-property-description 'font-name string? "file name for the font to load.
228 Overrides all other font-X qualifiers.")
229 (grob-property-description 'font-magnification number? "Magnification
230   of the font. If undefined, the default is @code{1.0}.")
231
232 (grob-property-description 'font-size number? "font definition: the
233 relative size compared the `normal' size.  0 is style-sheet's normal
234 size, -1 is smaller, +1 is bigger.  Each step of 1 is approximately
235 12% larger, 6 steps are exactly a factor 2 larger. Fractional values are allowed.")
236
237 (grob-property-description 'font-series symbol? "partial font definition: medium, bold.")
238 (grob-property-description 'font-shape symbol? "partial font definition: upright or italic.")
239
240 (grob-property-description 'force-hshift number? "amount of
241 collision_note_width that overides automatic collision settings. This
242 is used by @ref{note-collision-interface}.")
243
244 (grob-property-description 'fraction number-pair? "fraction of a time signature.")
245 (grob-property-description 'french-beaming boolean? "Use French
246 beaming style: stems stop at innermost beams.")
247 (grob-property-description 'full-size-change boolean? "if set, don't make a change clef smaller.")
248
249 (grob-property-description 'glyph string? "a string determining what (style) of  glyph is typeset. Valid choices depend on the function that is reading this property. .")
250 (grob-property-description 'glyph-name string? "a name of character within font.")
251 (grob-property-description 'glyph-name-procedure procedure? "Return
252 name of character within font.")
253
254 (grob-property-description 'gap ly:dimension? "Size of a gap in a variable symbol.")
255 (grob-property-description 'gap-count integer? "Number of gapped beams for tremolo.")
256
257 (grob-property-description 'grow-direction ly:dir? "crescendo or decrescendo?.")
258 (grob-property-description 'hair-thickness number? "thickness, measured in stafflinethickness.")
259 (grob-property-description 'head-pair pair? "Pair of grob pointers, pointing to the two heads of the tie.")
260 (grob-property-description 'heads grob-list? "List of note heads.")
261 (grob-property-description 'height ly:dimension? "in staffspace.")
262 (grob-property-description 'height-limit ly:dimension? "Maximum slur height,
263   long slurs approach this height.
264
265   For small width w, the height should be proportional to w, for w ->
266   infinity, the height should rise to limit h_infinity asymptotically.
267
268   Hence we take F (x) such that
269 @quotation
270 @example  
271   F (0) = 0 , F' (0) = 1, and F (infinity) = 1
272 @end example
273 @end quotation
274   where
275 @quotation
276 @example  
277   h = height-limit * F (x * ratio / height-limit)
278 @end example
279 @end quotation
280   Currently, for F we use
281 @quotation
282 @example  
283   F (x) = 2/pi * atan (pi * x/2)
284 @end example
285 @end quotation
286 ")
287 (grob-property-description 'horizontal-shift integer? "integer that identifies ranking of note-column for horizontal shifting. This is used by @ref{note-collision-interface}.")
288 (grob-property-description 'ideal-distances list? "(OBJ . (DIST . STRENGTH)) pairs.")
289 (grob-property-description 'inclinatum boolean? "is this neume an inclinatum?.")
290 (grob-property-description 'interfaces list? "list of symbols indicating the interfaces supported by this object. Is initialized from the @code{meta} field.")
291 (grob-property-description 'inversion list? " musical-pitch, optional.")
292 (grob-property-description 'items-worth-living grob-list? "list of interesting items. If empty in a particular system, clear that system.")
293 (grob-property-description 'join-heads boolean? "Whether to join the noteheads of an ambitus grob with a vertical line.")
294 (grob-property-description 'kern ly:dimension? "amount of extra white
295 space to add. For barline, space after a thick line.")
296 (grob-property-description 'knee boolean? "Is this beam a knee?")
297 (grob-property-description 'knee-spacing-correction number? "optical correction amount for knees. 0: no correction; 1: full correction.")
298 (grob-property-description 'layer number? "The output layer [0..2].  The default is 1.")
299
300 (grob-property-description 'left-position number? "position of left part of spanner.")
301 (grob-property-description 'left-padding ly:dimension? "space left of accs.")
302
303 (grob-property-description 'length ly:dimension? "Stem length for unbeamed stems, only for user override.")
304 (grob-property-description 'lengths list? "Stem length given
305 multiplicity of flag.  The Nth element of the list gives the stem
306 length of a note with N flags.
307 ")
308 (grob-property-description 'linea boolean? "attach vertical lines to this neume?.")
309 (grob-property-description 'line-count integer? "Number of staff
310 lines.  If you want to override this for staffs individually, you must
311 use @code{\\outputproperty}. @code{\\property .. \\override} will not
312 work: @code{\\override} is processed after the StaffSymbol is created,
313 and will have no effect.
314 ")
315 (grob-property-description 'maximum-rest-count integer? "kill off rests so we don't more than this number left.")
316 (grob-property-description 'measure-length ly:moment? "Length of a
317 measure. Used in some spacing situations.")
318 (grob-property-description 'measure-count integer? "number of measures for a multimeasure rest.")
319
320 (grob-property-description 'merge-differently-headed boolean? "Merge
321 noteheads in collisions, even if they have different note heads. The
322 smaller of the two heads will be rendered invisible. This used
323 polyphonic guitar notation. The value of this setting is used by
324 @ref{note-collision-interface} .")
325
326 (grob-property-description 'merge-differently-dotted boolean? " Merge
327 noteheads in collisions, even if they have a different number of
328 dots. This normal notation for some types of polyphonic music. The
329 value of this setting is used by @ref{note-collision-interface} .")
330
331 (grob-property-description 'meta list? "Alist of meta information of this grob.
332
333 The alist contains the following entries: name, interfaces.
334
335
336
337 ")
338 (grob-property-description 'minimum-distance ly:dimension? "minimum distance between notes and rests.")
339 (grob-property-description 'minimum-distances list? "list of rods (ie. (OBJ . DIST) pairs).")
340
341 (grob-property-description 'minimum-X-extent number-pair? "minimum size in X dimension, measured in staff space.")
342 (grob-property-description 'minimum-Y-extent number-pair? "see @code{minimum-Y-extent}.")
343 (grob-property-description 'minimum-length ly:dimension? "try to make the
344 Grob at least this long.
345
346 Also works as a scaling parameter for the length of hyphen. .")
347
348 (grob-property-description 'minimum-space ly:dimension? "minimum distance that the victim should move (after padding).")
349
350 (grob-property-description 'molecule-callback procedure? "Function
351 taking grob as argument, returning a smobbed Molecule.
352
353 All visible, i.e. non-transparent, grobs have a callback to create a
354 Molecule. The callback should be a Scheme function taking one argument
355 (the grob) and returning a Molecule.  Most molecule callbacks are
356 written in C++, but you can also write them in Scheme. An example is
357 provided in @code{input/regression/molecule-hacking.ly}.
358 ")
359
360 (grob-property-description 'molecule ly:molecule? "Cached output of the molecule-callback.")
361
362 (grob-property-description 'new-accidentals list? "list of (pitch, accidental) pairs.")
363 (grob-property-description 'no-spacing-rods boolean? "read from grobs: boolean that makes Separation_item ignore this item (MOVE ME TO ITEM).")
364 (grob-property-description 'no-stem-extend boolean? "should stem not be extended to middle staff line?.")
365 (grob-property-description 'non-default boolean? "not set because of existence of a bar?.")
366 (grob-property-description 'note-head-style string? "name of the font character to be used as note heads in the ambitus grob.")
367 (grob-property-description 'note-heads grob-list? "List of note head grobs")
368 (grob-property-description 'old-accidentals list? "list of (pitch, accidental) pairs.")
369 (grob-property-description 'oriscus boolean? "is this neume an oriscus?.")
370 (grob-property-description 'enclose-bounds boolean? "whether a text spanner should extend to the outer edge of the spanned notes")
371 (grob-property-description 'padding ly:dimension? "add this much extra space between objects that are next to each other.")
372 (grob-property-description 'pedal-text ly:grob? "Pointer to the text of a mixed-style piano pedal.")
373 (grob-property-description 'penalty number? "Penalty for breaking at
374 this column. 10000 or more means forbid linebreak, -10000 or less
375 means force linebreak.  Other values influence linebreaking decisions
376 as a real penalty.")
377
378 (grob-property-description 'pes-or-flexa boolean? "shall this neume be joined with the previous head?.")
379 (grob-property-description 'pitch-max ly:pitch? "FIXME, JUNKME")
380 (grob-property-description 'pitch-min ly:pitch? "FIXME, JUNKME")
381
382
383 (grob-property-description 'pitches list? "list of musical-pitch.")
384 (grob-property-description 'quilisma boolean? "is this neume a quilisma?.")
385 (grob-property-description 'positions pair? "cons of staff positions (LEFT . RIGHT")
386 (grob-property-description 'prefix-set number? "DOCME")
387 (grob-property-description 'ratio number? "Slur parameter.  See height-limit.")
388 (grob-property-description 'remove-first boolean?
389                            "Remove the first staff of a orchestral score?")
390 (grob-property-description 'right-padding ly:dimension? "space right of accs.")
391 (grob-property-description 'right-position number? "position of right part of spanner.")
392 (grob-property-description 'script-priority number? "A sorting key that determines in what order a script is within a stack of scripts.")
393 (grob-property-description 'self-alignment-X number-or-grob? "real number: -1 =
394 left aligned, 0 = center, 1 right-aligned in X direction.
395
396  Set to an grob pointer, if you want that grob to be the center.
397 In this case, the center grob should have this object as a
398 reference point.
399
400 TODO: revise typing.")
401 (grob-property-description 'self-alignment-Y number? "like self-alignment-X but for Y axis.")
402 (grob-property-description 'shorten ly:dimension? "the amount of space that a stem should be shortened (DOCME!)")
403 (grob-property-description 'shorten-pair number-pair? "the length on each side to shorten a text-spanner, for example a pedal bracket")
404 (grob-property-description 'common-shortest-duration ly:moment?
405                            "The most common shortest note length.
406 This is used in spacing. Making this larger will make the score tighter.")
407 (grob-property-description 'shortest-duration-space ly:dimension? "Start
408 with this much space for the shortest duration. This is explessed in @code{spacing-increment} as unit. See also
409 @ref{spacing-spanner-interface}.")
410 (grob-property-description 'shortest-playing-duration ly:moment? "duration of the shortest playing in that column.")
411 (grob-property-description 'shortest-starter-duration ly:moment? "duration of the shortest notes that starts exactly in this column.")
412 (grob-property-description 'side-relative-direction ly:dir? "if set: get the direction from a different object, and multiply by this.")
413 (grob-property-description 'side-support-elements grob-list? "the support, a list of grobs.")
414 (grob-property-description 'slope number? "some kind of slope")
415 (grob-property-description 'slope-limit number? "set slope to zero if slope is running away steeper than this.")
416
417 (grob-property-description 'space-alist list? "Alist of break align
418 spacing tuples: format = (SYMBOL . (TYPE . DISTANCE)), where TYPE can be
419 minimum-space or extra-space.")
420 (grob-property-description 'space-function procedure? "return interbeam space given Beam grob and multiplicity.")
421 (grob-property-description 'spacing-increment number? "Add this much space for a doubled duration. Typically, the width of a note head. See also @ref{spacing-spanner-interface}.")
422
423 (grob-property-description 'spacing-wishes grob-list? "List of note spacing or staff spacing objects.")
424 (grob-property-description 'spacing-procedure procedure? "procedure
425 taking grob as argument. This is called after
426 before-line-breaking-callback, but before the actual line breaking
427 itself.  Return value is ignored.")
428 (grob-property-description 'stacking-dir ly:dir? "stack contents of grobs in which direction ?.")
429 (grob-property-description 'staff-space ly:dimension? "Amount of line leading relative to global staffspace.")
430 (grob-property-description 'staff-position number? "vertical position in staff spaces, counted from the middle line.")
431
432 (grob-property-description 'staffline-clearance ly:dimension? "don't get closer than this to stafflines.")
433 (grob-property-description 'stem ly:grob? "pointer to Stem object.")
434
435 (grob-property-description 'stem-attachment-function procedure? "Where
436 does the stem attach to the notehead? Function takes grob and axis as
437 arguments. It returns a (X . Y) pair, specifying location in terms of
438 note head bounding box.")
439
440 (grob-property-description 'stem-end-position number? "Where does the stem end (the end is opposite to the support-head.")
441
442 (grob-property-description 'stem-shorten list? "shorten stems in forced directions given flag multiplicity:
443 the Nth element of the list gives the amount stem shortening of a note with N flags.
444 ")
445 (grob-property-description 'stem-spacing-correction number? "optical correction amount.  [TODO: doco] ")
446 (grob-property-description 'stems grob-list? "list of stem objects, corresponding to the notes that the arpeggio has to be before.")
447 (grob-property-description 'stropha boolean? "is this neume a stropha?.")
448 (grob-property-description 'style symbol? "a string determining what style of  glyph is typeset. Valid choices depend on the function that is reading this property. .")
449 (grob-property-description 'text-repeat-if-broken boolean?
450                            "Repeat text on broken text-spanner?")
451 (grob-property-description 'text markup? "Text markup.  See the
452 notation manual for more information.")
453 (grob-property-description 'thick-thickness number? "thickness, measured in stafflinethickness.")
454 (grob-property-description 'thickness number? "thickness, measured in stafflinethickness.")
455 (grob-property-description 'thin-kern number? "space after a hair-line.")
456 (grob-property-description 'forced-distance ly:dimension? "forced distance for an alignment.")
457
458 (grob-property-description 'threshold number-pair? "(cons MIN MAX), where MIN and MAX are dimensions in staffspace.")
459 (grob-property-description 'transparent boolean? "This is almost the
460 same as setting molecule-callback to #f, but this retains the
461 dimensions of this grob, which means that you can erase grobs
462 individually. .")
463 (grob-property-description 'tremolo-flag ly:grob? "The tremolo object on a stem.")
464 (grob-property-description 'bracket-visibility boolean-or-symbol? "
465 This controls the visibility of the tuplet bracket.
466 Setting it to false will prevent printing of the
467 bracket. Setting the property to #'if-no-beam will make it
468 print only if there is no beam associated with this tuplet bracket.")
469 (grob-property-description 'number-visibility boolean-or-symbol? "
470 Like @code{bracket-visibility}, but for the number.")
471 (grob-property-description 'tie ly:grob? "") 
472 (grob-property-description 'break-visibility procedure? "a function
473 that takes the break direction and returns a cons of booleans
474 containing (TRANSPARENT . EMPTY).
475 The following variables are predefined: @code{all-visible},
476 @code{begin-of-line-visible}, @code{end-of-line-visible},
477 @code{begin-of-line-invisible}, @code{end-of-line-invisible},
478 @code{all-invisible}.
479 ")
480
481 (grob-property-description 'virga boolean? "is this neume a virga?.")
482 (grob-property-description 'when ly:moment? "when does this column happen?.")
483 (grob-property-description 'word-space ly:dimension? "elongate left (?) by this much (FIXME: cumbersome semantics).")
484
485 (grob-property-description 'width ly:dimension? "width of a grob measured in staff space.")
486 (grob-property-description 'width-correct ly:dimension? "width correction for (de)cresc. text spanners.")
487 (grob-property-description 'x-gap ly:dimension? "horizontal gap between notehead and tie.")
488 (grob-property-description 'x-offset ly:dimension? "extra horizontal offset for ligature heads.")
489 (grob-property-description 'y-free ly:dimension? "minimal vertical gap between slur and noteheads or stems.")
490 (grob-property-description 'y-offset ly:dimension? "extra vertical offset
491 for ties away from the center line.")
492 (grob-property-description 'zigzag-length ly:dimension? "The length of the
493 lines of a zigzag - relative to zigzag-width. a value of 1
494 gives 60-degree zigzags.")
495 (grob-property-description 'zigzag-width ly:dimension? "the width of one
496 zigzag-squiggle, measured in staff space. The width will be adjusted
497 so that the line can be constructed from a whole number of squiggles.")
498
499
500 ;;; INTERNAL
501
502 (grob-property-description 'left-neighbors grob-list? " List of
503 spacing-wish grobs that are close to the current column.
504
505 The closest spacing-wishes determine the actual distances between the
506 columns.
507 ")
508 (grob-property-description 'right-neighbors grob-list? "see left-neighbors")
509 (grob-property-description 'left-items grob-list? "")
510 (grob-property-description 'right-items grob-list? "")
511 (grob-property-description 'cause scheme? "Any kind of causation objects (i.e. music, or perhaps translator) that was the cause for this grob.  ")
512 (grob-property-description 'font ly:font-metric? "Cached font metric object")
513 (grob-property-description
514  'staff-padding ly:dimension?
515  "Maintain this much space to the staff.  It's effect is similar to
516 the padding mechanism, but this will keep objects above and below the
517 staff in a row more often, when the heights of the notes vary.
518 ")
519
520 (grob-property-description 'staff-symbol ly:grob? "the staff symbol grob that we're in.")
521 (grob-property-description 'positioning-done boolean?
522                            "Used to signal that a positioning element
523 did it's job. This ensures that a positioning is only done once.")
524
525 (grob-property-description 'rest ly:grob? "the staff symbol grob that we're in.")
526 (grob-property-description 'rest-collision ly:grob? "rest collision that a rest is in.")
527
528 (grob-property-description 'script-molecule pair? "Index code for script -- internal, see script.cc.")
529
530 (grob-property-description 'accidental-grob ly:grob? "Accidental for this note.")
531
532 (grob-property-description 'flag-count number? "")
533 (grob-property-description 'chord-tremolo boolean? "if set, this beam is a tremolo. TODO: use interface for this!")
534 (grob-property-description 'chord pair? "?")
535 (grob-property-description 'begin-of-line-visible boolean? "?")
536
537 (grob-property-description 'quant-score number? "Beam quanting score
538 -- can be stored for debugging")
539 (grob-property-description 'least-squares-dy number? 
540  "ideal beam slope, without damping.")
541 (grob-property-description 'ligature-primitive-callback procedure? "callback that brews ligature head.")
542 (grob-property-description 'stem-info pair? "caching of stem parameters")
543 (grob-property-description 'note-columns pair? "list of NoteColumn grobs.")
544
545 (grob-property-description 'if-text-padding number? "padding in case texts are there.")
546 (grob-property-description 'grace-space-factor number? "space grace at this fraction of the increment.")
547 (grob-property-description 'position-callbacks list? "list of
548 functions set spanner positions.")
549
550 ;;; Junk me, replace it by add-join.
551 (grob-property-description 'join-left boolean? "is this ligature head joined with the previous one by a vertical line?")
552
553 (grob-property-description 'join-left-amount number? "DOCME")
554
555 (grob-property-description 'delta-pitch number? "the interval between this and the next note, or, more precisely, their vertical distance; this is used in ligatures for calculation of the height of vertical joins flexa shapes")
556 (grob-property-description 'head-width ly:dimension? "width of this ligature head")
557 (grob-property-description 'primitive integer? "Pointer to a ligature primitive, i.e. an item similar to a note head that is part of a ligature. [TODO: change this]")
558 (grob-property-description 'minimum-beam-collision-distance ly:dimension?
559 "Minimum distance to beam for a rest collision.")
560
561 (grob-property-description 'avoid-note-head boolean? "if set, the stem of a chord does not pass through all note head, but start at the last note head. Used by tablature.")
562
563 (grob-property-description 'use-breve-rest boolean? "boolean that
564 tells multi-measure-rest to use a breve rest to represent the duration
565 of 1 measure instead of whole rest.  It defaults to false.  It is set
566 to true when the duration of a measure is a breve or longer.")
567
568 ; (display (length all-backend-properties))