]> git.donarmstrong.com Git - lilypond.git/blob - scm/grob-property-description.scm
207e0ddf7c8a5b3b82f2985fe8f7bc8100287e4f
[lilypond.git] / scm / grob-property-description.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--2001  Han-Wen Nienhuys <hanwen@cs.uu.nl>
6 ;;;;                 Jan Nieuwenhuizen <janneke@gnu.org>
7
8
9
10 (define 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 (grob-property-description 'accidentals list? "Alist with (PITCH
62 . OPTION-LIST) entries. OPTION-LIST can contain 'cautionary, 'natural
63 and 'tie-break-reminder
64
65 FIXME: outdated.
66 ")
67 (grob-property-description 'add-stem boolean? "Add stem to porrectus?.")
68 (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.")
69 (grob-property-description 'after-line-breaking-callback procedure? "Procedure taking a grob as argument.
70 This procedure is called (using dependency resolution) after line breaking. Return value is ignored.")
71 (grob-property-description 'align number? "the alignment of the text, 0 is horizontal, 1 is vertical.")
72 (grob-property-description 'align-dir dir? "Which side to align? -1: left side, 0: around center of width, 1: right side.")
73 (grob-property-description 'alignment-done boolean? "boolean to administrate whether we've done the alignment already (to ensure that the process is done only once).")
74 (grob-property-description 'all-elements grob-list? "list of all grobs in this line. Needed for protecting grobs from GC.")
75 (grob-property-description 'arch-angle number? "turning angle of the hook of a system brace" )
76 (grob-property-description 'arch-height number? "height of the hook of a system brace.")
77 (grob-property-description 'arch-thick number? "thickness of the hook of system brace.")
78 (grob-property-description 'arch-width number? "width of the hook of a system brace.")
79 (grob-property-description 'arpeggio ly-grob? "pointer to arpeggio object.") 
80 (grob-property-description 'arpeggio-direction dir? "If set, put an
81 arrow on the arpeggio squiggly line.")
82 (grob-property-description 'attachment pair? "cons of symbols
83 indicating how a slur should be attached at the ends. The format is
84 '(LEFT-TYPE . RIGHT-TYPE), where both TYPEs are symbols. The values of
85 these symbols may be alongside-stem, stem, head or loose-end.")
86 (grob-property-description 'attachment-offset pair? "cons of offsets,
87 '(LEFT-offset . RIGHT-offset).  This offset is added to the
88 attachments to prevent ugly slurs.  [fixme: we need more documentation here].
89 .")
90 (grob-property-description 'auto-properties boolean? "if true, as many properties of this grob as possible will be determined automatically from the musical context.")
91 (grob-property-description 'auto-knee-gap number-or-boolean? "the minimal smallest gap between two adjacent beamed chords for which beam will create auto-knees.  Set to false for no auto knees." )
92 (grob-property-description 'axes list? "list of axis numbers.
93 In the case of alignment grobs, this should contain only one number.")
94 (grob-property-description 'bar-size number? "size of a bar line.")
95 (grob-property-description 'bars grob-list? "list of barline pointers.")
96 (grob-property-description 'bar-size-procedure procedure? "Procedure that computes the size of a bar line.")
97 (grob-property-description 'base-shortest-duration moment?
98                            "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.")
99 (grob-property-description 'baseline-skip number? "Baseline skip to use for multiple lines of text.")
100 (grob-property-description 'bass list? " musical-pitch, optional.")
101 (grob-property-description 'beam ly-grob? "pointer to the beam, if applicable.")
102 (grob-property-description 'beam-thickness number? "thickness, measured in staffspace.")
103 (grob-property-description 'beam-width number? "width of the tremolo sign.")
104 (grob-property-description 'beamed-lengths list? "list of stem lengths given beam multiplicity .")
105 (grob-property-description 'beamed-minimum-lengths list? "list of minimum stem lengths given beam multiplicity.")
106 (grob-property-description 'beamed-stem-shorten list? "shorten beamed stems in forced direction.")
107 (grob-property-description 'beaming number-pair? "number of beams extending to left and right.")
108 (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.")
109 (grob-property-description 'before-line-breaking-callback procedure? "Procedure taking grob as argument.
110 This procedure is called (using dependency resolution) before line breaking, but after generating discretionary items. Return value is ignored.")
111 (grob-property-description 'between-cols pair? "Where to attach a loose column to")
112 (grob-property-description 'between-system-string string? "string
113  to dump between two systems. Useful for forcing pagebreaks.")
114 (grob-property-description 'bounded-by-me grob-list? "list of spanners that have this
115 column as start/begin point. Only columns that have grobs or act as bounds are spaced.")
116 (grob-property-description 'bracket-thick number? "width of a system start bracket. .")
117 (grob-property-description 'break-align-symbol symbol? "the index in the spacing table (symbol) of the to be aligned item.")
118 (grob-property-description 'break-glyph-function procedure? "function taking glyph and break-direction, returning the glyph at a line break.")
119 (grob-property-description 'breakable boolean? "boolean indicating if this is a breakable item (clef, barline, key sig, etc.).")
120 (grob-property-description 'c0-position integer? "integer indicating the position of central C.")
121 (grob-property-description 'cautionary-style symbol? "style  of cautionary accidentals. Choices are 'smaller (one size smaller) or 'parentheses.")
122 (grob-property-description 'center-element ly-grob? "grob which will
123 be at the center of the group after aligning (when using
124 Align_interface::center_on_element). .")
125 (grob-property-description 'concaveness-gap number? "A beam is
126 considered to be concave if the distance of an inner notehead to the
127 line between two outer noteheads is bigger than this gap.")
128 (grob-property-description 'concaveness-threshold number? "A beam is
129 considered to be concave is concaveness is bigger than this threshold.
130 Concaveness is calculated as the sum of the vertical distances of
131 inner noteheads that fall outside the interval of the two outer
132 noteheads, to the vertically nearest outer notehead, divided by the
133 square of the inner notes involved.")
134 (grob-property-description 'collapse-height number? "Minimum height of system start delimiter.  If equal or smaller, the bracket is removed.")
135
136 (grob-property-description 'columns grob-list? "list of grobs, typically containing paper-columns.")
137 (grob-property-description 'control-points list? "List of 4 offsets (number-pairs) that form control points for the  tie/slur shape.")
138 (grob-property-description 'damping integer? "amount of beam slope damping should beam slope be damped? 0: no, 1: yes, 100000: horizontal beams .")
139 (grob-property-description 'dash-length number? "the length of a dash.")
140 (grob-property-description 'dash-period number? "the length of one dash + white space.")
141 (grob-property-description 'dashed number? "[FIXME: use dash-period/dash length; see text-spanner] number representing the length of the dashes.")
142 (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.")
143
144 (grob-property-description 'neutral-direction 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.")
145 (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.)")
146 (grob-property-description 'dependencies grob-list? "list of score-grob pointers that indicate who to compute first for certain global passes.")
147 (grob-property-description 'details list? "alist of parameters for detailed grob behavior.")
148 (grob-property-description 'dir-forced boolean? "set if direction has been forced; read by Beam.")
149 (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.
150
151 The ways to calculate the direction of a beam work as follows:
152 @table @code
153 @item majority
154 number count of up or down notes
155 @item mean
156 mean center distance of all notes
157 @item median
158 mean centre distance weighted per note
159 @end table
160
161 ")
162 (grob-property-description 'direction dir? "up or down, left or right?.")
163 (grob-property-description 'direction-source ly-grob? "in case side-relative-direction is set, which grob  to get the direction from .")
164 (grob-property-description 'dot ly-grob? "reference to Dots object.")
165 (grob-property-description 'dot-count integer? "number of dots.")
166 (grob-property-description 'duration-log integer? "2-log of the notehead duration, i.e. 0=whole note, 1 = half note, etc.")
167 (grob-property-description 'edge-height pair? "a cons that specifies the heights of the vertical edges '(LEFT-height . RIGHT-height).")
168 (grob-property-description 'edge-widen pair? "a cons that specifies the widths of the slanted edges '(LEFT-width . RIGHT-width).")
169 (grob-property-description 'edge-text pair? "a cons that specifies the texts to be set at the edges '(LEFT-text . RIGHT-text).")
170 (grob-property-description 'elements grob-list? "list of grobs, type depending on the Grob where this is set in.")
171 (grob-property-description 'expand-limit integer? "maximum number of measures expanded in church rests.")
172 (grob-property-description 'extra-extent-X number-pair? "enlarge in X dimension by this much, measured in staff space.")
173 (grob-property-description 'extra-extent-Y number-pair? "see @code{extra-extent-Y}.")
174 (grob-property-description 'extra-offset number-pair? "pair of reals
175 (a cons) forcing an extra offset before outputting.
176 @code{extra-offset} is added just before `printing' the grob, so the
177 typesetting engine is completely oblivious to it.
178 ")
179 (grob-property-description 'extra-space number-pair? "pair of distances (cons LEFT RIGHT).")
180 (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.")
181
182 (grob-property-description 'extremity-rules list? "an alist (procedure
183 slur dir) -> attachment to determine the attachment (see above).  If
184 procedure returns #t, attachment is used.  Otherwise, the next
185 procedure is tried.")
186 (grob-property-description 'flag-style string? "turn stroke through stem on/off.")
187 (grob-property-description 'flag-width-function procedure? "Procedure that computes the width of a half-beam (a non-connecting beam.).")
188 (grob-property-description 'flexa-width number? "width of a flexa shape in a ligature grob.")
189 (grob-property-description 'font-family symbol? "partial font
190 definition: music roman braces dynamic math ...")
191 (grob-property-description 'font-name string? "file name for the font to load.
192 Overrides all other font-X qualifiers.")
193 (grob-property-description 'font-design-size number? "partial font definition: exact font size in points FIXME: should override font-relative-size.")
194 (grob-property-description 'font-magnification number? "Magnification
195   of the font. If undefined, the default is @code{1.0}.")
196 (grob-property-description 'font-relative-size number? "partial font definition: the relative size compared the `normal' size.
197  0 is style-sheet's normal size, -1 is smaller, +1 is bigger, -1 is smaller.")
198 (grob-property-description 'font-series symbol? "partial font definition: medium, bold.")
199 (grob-property-description 'font-shape symbol? "partial font definition: upright or italic.")
200
201 (grob-property-description 'font-style symbol? "a precooked set of font
202 definitions, eg. finger volta timesig mark script large Large
203 dynamic.")
204
205 (grob-property-description 'force-hshift number? "amount of
206 collision_note_width that overides automatic collision settings. This
207 is used by @ref{note-collision-interface}.")
208
209 (grob-property-description 'fraction number-pair? "fraction of a time signature.")
210 (grob-property-description 'full-size-change boolean? "if set, don't make a change clef smaller.")
211
212 (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. .")
213 (grob-property-description 'glyph-name string? "a name of character within font.")
214
215 (grob-property-description 'gap number? "Size of a gap in a variable symbol.")
216
217 (grob-property-description 'grow-direction dir? "crescendo or decrescendo?.")
218 (grob-property-description 'hair-thickness number? "thickness, measured in stafflinethickness.")
219 (grob-property-description 'heads pair? "Pair of grob pointers, pointing to the two heads of the  tie.")
220 (grob-property-description 'height number? "in staffspace.")
221 (grob-property-description 'horizontal-shift integer? "integer that identifies ranking of note-column for horizontal shifting. This is used by @ref{note-collision-interface}.")
222 (grob-property-description 'ideal-distances list? "(OBJ . (DIST . STRENGTH)) pairs.")
223 (grob-property-description 'interfaces list? "list of symbols indicating the interfaces supported by this object. Is initialized from the @code{meta} field.")
224 (grob-property-description 'inversion list? " musical-pitch, optional.")
225 (grob-property-description 'items-worth-living grob-list? "list of interesting items. If empty in a particular system, clear that system.")
226 (grob-property-description 'join-heads boolean? "Whether to join the noteheads of an ambitus grob with a vertical line.")
227 (grob-property-description 'kern number? "amount of extra white space to add.
228
229 For text,  this is `relative'(?) to the current alignment.
230
231 For barline, space after a thick line.")
232 (grob-property-description 'layer number? "The output layer [0..2].  The default is 1.")
233
234 (grob-property-description 'left-position number? "position of left part of spanner.")
235 (grob-property-description 'right-position number? "position of right part of spanner.")
236 (grob-property-description 'left-padding number? "space left of accs.")
237 (grob-property-description 'right-head ly-grob? "")
238 (grob-property-description 'left-head ly-grob? "")
239
240 (grob-property-description 'left-widen boolean? "Whether the left edge of a piano pedal bracket should be widened by the first element of edge-widen.")
241
242 (grob-property-description 'length number? "Stem length for unbeamed stems, only for user override.")
243 (grob-property-description 'lengths list? "Stem length given multiplicity of flag.")
244 (grob-property-description 'line-count integer? "Number of staff
245 lines.  If you want to override this for staffs individually, you must
246 use @code{\outputproperty}. @code{\property .. \override} will not
247 work: @code{\override} is processed after the StaffSymbol is created,
248 and will have no effect.
249 ")
250 (grob-property-description 'lookup symbol? "lookup method: 'value for plain text, 'name for character-name.")
251 (grob-property-description 'magnify number? "the magnification factor.  FIXME: doesn't work for feta fonts.")
252 (grob-property-description 'maximum-length number? "don't make Grob longer than this")
253 (grob-property-description 'maximum-rest-count integer? "kill off rests so we don't more than this number left.")
254 (grob-property-description 'measure-length moment? "Length of a
255 measure. Used in some spacing situations.")
256 (grob-property-description 'measure-count integer? "number of measures for a multimeasure rest.")
257
258 (grob-property-description 'merge-differently-headed boolean? "Merge
259 noteheads in collisions, even if they have different note heads. The
260 smaller of the two heads will be rendered invisible. This used
261 polyphonic guitar notation. The value of this setting is used by
262 @ref{note-collision-interface} .")
263
264 (grob-property-description 'merge-differently-dotted boolean? " Merge
265 noteheads in collisions, even if they have a different number of
266 dots. This normal notation for some types of polyphonic music. The
267 value of this setting is used by @ref{note-collision-interface} .")
268
269 (grob-property-description 'meta list? "Alist of meta information of this grob.
270
271 The alist contains the following entries: name, interfaces.
272
273
274
275 ")
276 (grob-property-description 'minimum-distance number? "minimum distance between notes and rests.")
277 (grob-property-description 'minimum-distances list? "list of rods (ie. (OBJ . DIST) pairs).")
278 (grob-property-description 'minimum-extent-X number-pair? "minimum size in X dimension, measured in staff space.")
279 (grob-property-description 'minimum-extent-Y number-pair? "see @code{minimum-extent-Y}.")
280 (grob-property-description 'minimum-length number? "try to make the
281 Grob at least this long.
282
283 Also works as a scaling parameter for the length of hyphen. .")
284
285 ;; FIXME.
286 (grob-property-description 'minimum-space number? "minimum distance that the victim should move (after padding).
287
288 FIXME: also pair? (cons LEFT RIGHT)
289
290 ")
291 (grob-property-description 'minimum-space-pair number-pair? "
292
293 ? (cons LEFT RIGHT)
294
295 ")
296 (grob-property-description 'molecule-callback procedure? "Function
297 taking grob as argument, returning a smobbed Molecule.
298
299 All visible, i.e. non-transparent, grobs have a callback to create a
300 Molecule. The callback should be a Scheme function taking one argument
301 (the grob) and returning a Molecule.  Most molecule callbacks are
302 written in C++, but you can also write them in Scheme. An example is
303 provided in @code{input/regression/molecule-hacking.ly}.
304 ")
305
306 (grob-property-description 'molecule molecule? "Cached output of the molecule-callback.")
307
308 (grob-property-description 'new-accidentals list? "list of (pitch, accidental) pairs.")
309 (grob-property-description 'no-spacing-rods boolean? "read from grobs: boolean that makes Separation_item ignore this item (MOVE ME TO ITEM).")
310 (grob-property-description 'no-stem-extend boolean? "should stem not be extended to middle staff line?.")
311 (grob-property-description 'non-default boolean? "not set because of existence of a bar?.")
312 (grob-property-description 'note-head-style string? "name of the font character to be used as note heads in the ambitus grob.")
313 (grob-property-description 'note-heads grob-list? "List of note head grobs")
314 (grob-property-description 'number-threshold number? "only put numbers bigger than this threshold over multi measure rest.")
315 (grob-property-description 'old-accidentals list? "list of (pitch, accidental) pairs.")
316 (grob-property-description 'outer boolean? "whether a text spanner should extend to the outer edge of the spanned notes")
317 (grob-property-description 'padding number? "add this much extra space between objects that are next to each other.")
318 (grob-property-description 'pedal-type symbol? "Style of piano pedal: text, bracket or mixed.")
319 (grob-property-description 'pedal-text ly-grob? "Pointer to the text of a mixed-style piano pedal.")
320 (grob-property-description 'penalty number? "Penalty for breaking at
321 this column. 10000 or more means forbid linebreak, -10000 or less
322 means force linebreak.  Other values influence linebreaking decisions
323 as a real penalty.")
324
325 (grob-property-description 'pitches list? "list of musical-pitch.")
326 (grob-property-description 'positions pair? "cons of staff positions (LEFT . RIGHT")
327 (grob-property-description 'ragged-right boolean? "In ragged alignment mode (i.e. if paper variable @code{raggedright} is set), rag staff symbols only if this staff symbol grob property is also set.")
328 (grob-property-description 'raise number? "height for text to be raised (a negative value lowers the text.")
329 (grob-property-description 'right-padding number? "space right of accs.")
330 (grob-property-description 'right-trim-amount number? "shortening of the lyric extender on the right.")
331 (grob-property-description 'right-widen boolean? "Whether the right edge of a piano pedal bracket should be widened by the second element of edge-widen")
332 (grob-property-description 'script-priority number? "A sorting key that determines in what order a script is within a stack of scripts.")
333 (grob-property-description 'self-alignment-X number-or-grob? "real number: -1 =
334 left aligned, 0 = center, 1 right-aligned in X direction.
335
336  Set to an grob pointer, if you want that grob to be the center.
337 In this case, the center grob should have this object as a
338 reference point.
339
340 TODO: revise typing.")
341 (grob-property-description 'self-alignment-Y number? "like self-alignment-X but for Y axis.")
342 (grob-property-description 'shorten number? "the amount of space that a stem should be shortened (DOCME!)")
343 (grob-property-description 'shorten-pair number-pair? "the length on each side to shorten a text-spanner, for example a pedal bracket")
344 (grob-property-description 'shortest-duration-space number? "Start
345 with this much space for the shortest duration. This is explessed in @code{spacing-increment} as unit. See also
346 @ref{spacing-spanner-interface}.")
347 (grob-property-description 'shortest-playing-duration moment? "duration of the shortest playing in that column.")
348 (grob-property-description 'shortest-starter-duration moment? "duration of the shortest notes that starts exactly in this column.")
349 (grob-property-description 'side-relative-direction dir? "if set: get the direction from a different object, and multiply by this.")
350 (grob-property-description 'side-support-elements grob-list? "the support, a list of grobs.")
351 (grob-property-description 'slope number? "some kind of slope")
352 (grob-property-description 'slope-limit number? "set slope to zero if slope is running away steeper than this.")
353 (grob-property-description 'solid boolean? "should porrectus be solidly filled?.")
354
355 (grob-property-description 'space-alist list? "Alist of break align
356 spacing tuples: format = (SYMBOL . (TYPE . DISTANCE)), where TYPE can be
357 minimum-space or extra-space.")
358 (grob-property-description 'space-function procedure? "return interbeam space given Beam grob and multiplicity.")
359 (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}.")
360
361 (grob-property-description 'spacing-procedure procedure? "procedure
362 taking grob as argument. This is called after
363 before-line-breaking-callback, but before the actual line breaking
364 itself.  Return value is ignored.")
365 (grob-property-description 'stacking-dir dir? "stack contents of grobs in which direction ?.")
366 (grob-property-description 'staff-space number? "Amount of line leading relative to global staffspace.")
367 (grob-property-description 'staff-position number? "vertical position in staff spaces, counted from the middle line.")
368
369 (grob-property-description 'staffline-clearance number? "don't get closer than this to stafflines.")
370 (grob-property-description 'stem ly-grob? "pointer to Stem object.")
371 (grob-property-description 'stem-attachment-function procedure? "Where
372 does the stem attach to the notehead? Function takes a symbol argument
373 being the style. It returns a (X . Y) pair, specifying location in
374 terms of note head bounding box.")
375 (grob-property-description 'stem-end-position number? "Where does the stem end (the end is opposite to the support-head.")
376
377 (grob-property-description 'stem-shorten list? "shorten stems in forced directions given flag multiplicity.")
378 (grob-property-description 'stem-spacing-correction number? "optical correction amount.  [TODO: doco] ")
379 (grob-property-description 'stems grob-list? "list of stem objects, corresponding to the notes that the arpeggio has to be before.")
380 (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. .")
381 (grob-property-description 'support-head ly-grob? "the note head at
382 one end of the stem.")
383 (grob-property-description 'text markup? "
384 Scheme markup text.  It is defined as follows:
385
386 @example
387 text: string | (head? text+)
388 head: markup | (markup+)
389 markup-item: property | abbrev
390 property: (@var{key} . @var{value})
391 abbrev: @code{columns lines roman music bold italic named super sub overstrike text}
392         @code{finger volta timesig mmrest mark script large Large dynamic}
393 @end example
394
395
396 The following abbreviations are currently defined:
397 @table @samp
398 @item columns
399  horizontal mode: set all text on one line (default)
400 @item lines
401  vertical mode: set every text on new line
402 @item roman
403  select roman font
404 @item music
405  select feta font, and lookup by character name
406 @item bold
407  select bold series
408 @item italic
409  select italic shape
410 @item named
411  lookup by character name
412 @item text
413  plain text lookup (by character value)
414 @item super
415  superscript
416 @item sub
417  subscript
418 @item overstrike
419  the next text or character overstrikes this one
420 @item finger
421  select fingering number fontstyle
422 @item volta
423  select volta number fontstyle
424 @item timesig
425  select time signature number fontstyle
426 @item mmrest
427  select multi measure rest number fontstyle
428 @item mark
429  select mark number fontstyle
430 @item script
431  select scriptsize roman fontstyle
432 @item large
433  select large roman fontstyle
434 @item Large
435  select Large roman fontstyle
436 @item dynamic
437  select dynamics fontstyle
438 @end table
439 .")
440 (grob-property-description 'text-start boolean? "Indicator for whether a piano pedal bracket has leading text, such as Ped.")
441 (grob-property-description 'thick-thickness number? "thickness, measured in stafflinethickness.")
442 (grob-property-description 'thickness number? "thickness, measured in stafflinethickness.")
443 (grob-property-description 'thin-kern number? "space after a hair-line.")
444 (grob-property-description 'forced-distance number? "forced distance for an alignment.")
445
446 (grob-property-description 'threshold number-pair? "(cons MIN MAX), where MIN and MAX are dimensions in staffspace.")
447 (grob-property-description 'transparent boolean? "This is almost the
448 same as setting molecule-callback to #f, but this retains the
449 dimensions of this grob, which means that you can erase grobs
450 individually. .")
451 (grob-property-description 'bracket-visibility boolean-or-symbol? "
452 This controls the visibility of the tuplet bracket.
453 Setting it to false will prevent printing of the
454 bracket. Setting the property to #'if-no-beam will make it
455 print only if there is no beam associated with this tuplet bracket.")
456 (grob-property-description 'number-visibility boolean-or-symbol? "
457 Like @code{bracket-visibility}, but for the number.")
458 (grob-property-description 'tie ly-grob? "") 
459 (grob-property-description 'type symbol? " 
460
461 one of: line, dashed-line, trill or dotted-line.
462
463 [FIXME: type is too generic for this doc, move doco to intefrace] 
464 ")
465
466 (grob-property-description 'break-visibility procedure? "a function that takes the break direction and returns a  cons of booleans containing (TRANSPARENT . EMPTY).
467
468
469 Some items need special treatment for line breaking. For example, a
470 clef is normally only printed at the start of a line (i.e. after a line
471 break).  To model this, `breakable' items (clef, key signature, bar lines,
472 etc.) are copied twice. Then we have three versions of each breakable
473 item: one version if there is no line break, one version that is printed
474 before the line break (at the end of a system), one version that is
475 printed after the line break.
476
477 Whether these versions are visible and take up space, is determined by
478 the outcome of the @code{break-visibility}. This grob property is a
479 function taking a direction (-1, 0 or 1) as argument. It returns a cons
480 of booleans, signifying whether this grob should be transparent and have
481 no extent.
482
483 ")
484 (grob-property-description 'when moment? "when does this column happen?.")
485 (grob-property-description 'word-space number? "elongate left by this much (FIXME: cumbersome semantics).")
486 (grob-property-description 'alignment number? "alignment of lyrics on notehead, -1 is LEFT, 0 is CENTRE, 1 is RIGHT .")
487 (grob-property-description 'ignore-length-mismatch boolean? "if #t, stanzas with shorter lyrics can be moved away from their respective note-head by the lyric alignment code.")
488 (grob-property-description 'begin-alignment number? "proportion of lyric length from beginning to align with note-head for left-aligned lyrics.")
489 (grob-property-description 'end-alignment number? "proportion of lyric length from end to align with note-head for right-aligned lyrics.")
490 (grob-property-description 'width number? "width of a grob measured in staff space.")
491 (grob-property-description 'width-correct number? "width correction for (de)cresc. text spanners.")
492 (grob-property-description 'x-gap number? "horizontal gap between notehead and tie.")
493 (grob-property-description 'y-free number? "minimal vertical gap between slur and noteheads or stems.")
494 (grob-property-description 'y-offset number? "extra vertical offset for ties away from the center line.")
495
496 ;;;;;;;;;;;;;;;;;;;;
497 ;;;;;;;;;;;;;;;; INTERNAL
498
499 (grob-property-description 'left-neighbors grob-list? " List of
500 spacing-wish grobs that are close to the current column.
501
502 The closest spacing-wishes determine the actual distances between the
503 columns.
504 ")
505 (grob-property-description 'right-neighbors grob-list? "see left-neighbors")
506 (grob-property-description 'left-items grob-list? "")
507 (grob-property-description 'right-items grob-list? "")
508
509 (grob-property-description 'cause scheme? "Any kind of causation objects (i.e. music, or perhaps translator) that was the cause for this grob.  ")
510 (grob-property-description 'font font-metric? "Cached font metric object")
511 (grob-property-description 'break-alignment-done boolean? "mark flag to signal we've done alignment already.")
512 (grob-property-description 'staff-symbol ly-grob? "the staff symbol grob that we're in.")
513 (grob-property-description 'collision-done boolean? "")
514 (grob-property-description 'rest ly-grob? "the staff symbol grob that we're in.")
515 (grob-property-description 'rest-collision ly-grob? "rest collision that a rest is in.")
516
517 (grob-property-description 'staff-support boolean? " JUNKME.")
518 (grob-property-description 'script-molecule pair? "index code for script.")
519
520 (grob-property-description 'accidental-grob ly-grob? "Accidental for this note.")
521
522 (grob-property-description 'causes list? "list of cause objects; these can be music objects or grobs.")
523 (grob-property-description 'flag-count number? "")
524 (grob-property-description 'chord-tremolo boolean? "if set, this beam is a tremolo. TODO: use interface for this!")
525 (grob-property-description 'chord pair? "?")
526 (grob-property-description 'begin-of-line-visible boolean? "?")
527
528 (grob-property-description 'quant-score number? "Beam quanting score
529 -- can be stored for debugging")
530 (grob-property-description 'least-squares-dy number? 
531  "ideal beam slope, without damping.")
532 (grob-property-description 'stem-info pair? "caching of stem parameters")
533 (grob-property-description 'note-columns pair? "list of NoteColumn grobs.")
534
535 (grob-property-description 'if-text-padding number? "padding in case texts are there.")
536 (grob-property-description 'grace-space-factor number? "space grace at this fraction of the increment.")
537 (grob-property-description 'position-callbacks list? "list of
538 functions set spanner positions.")
539 (grob-property-description 'chord-name-function procedure? "DOCME")
540 (grob-property-description 'minimum-beam-collision-distance number?
541 "Minimum distance to beam for a rest collision.")
542
543 (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.")
544 (grob-property-description 'up-to-staff boolean? "if set, stems' lengths are set so as stems end out of the staff. Used by tablature.")