]> git.donarmstrong.com Git - lilypond.git/blob - scm/grob-description.scm
(warning): better robustness fix.
[lilypond.git] / scm / grob-description.scm
1 ;;;; grob-description.scm -- part of generated backend documentation
2 ;;;;
3 ;;;;  source file of the GNU LilyPond music typesetter
4 ;;;; 
5 ;;;; (c) 1998--2002  Han-Wen Nienhuys <hanwen@cs.uu.nl>
6 ;;;;                 Jan Nieuwenhuizen <janneke@gnu.org>
7
8 ;;;; distances are given in stafflinethickness (thicknesses) and
9 ;;;; staffspace (distances)
10
11 ;;;; WARNING: the meta field should be the last one.
12 ;;;; WARNING: don't use anonymous functions for initialization. 
13
14 ;; TODO: junk the meta field in favor of something more compact?
15 (define-public all-grob-descriptions
16   `(
17     (Accidental
18      . (
19         (molecule-callback . ,Accidental_interface::brew_molecule)
20         (font-family . music)
21         (cautionary-style . parentheses)
22         (after-line-breaking-callback . ,Accidental_interface::after_line_breaking)             (meta . ((interfaces . (item-interface accidental-interface font-interface))))
23         ))
24     (AccidentalPlacement
25      . (
26         (X-extent-callback . ,Axis_group_interface::group_extent_callback)
27         (left-padding . 0.3)
28
29         ;; this is quite small, but it is very ugly to have
30         ;; accs closer to the previous note than to the next one.
31         (right-padding . 0.15)
32         (meta . ((interfaces . (item-interface accidental-placement-interface))))
33         ))
34
35     (Ambitus
36      . (
37        (breakable . #t)
38        (break-align-symbol . ambitus)
39        (molecule-callback . ,Ambitus::brew_molecule)
40        (font-family . music)
41        (note-head-style . "noteheads-2")
42        (visibility-lambda . ,begin-of-line-visible)
43        (join-heads . #t)
44        (space-alist . (
45                        (clef . (extra-space . 0.0))
46                        (key-signature . (extra-space . 0.0))
47                        (staff-bar . (extra-space . 0.0))
48                        (time-signature . (extra-space . 0.0)) 
49                        (first-note . (extra-space . 0.0))
50                        ))
51        (meta . ((interfaces . (ambitus-interface staff-symbol-referencer-interface break-aligned-interface item-interface  font-interface))))
52        ))
53
54     (Arpeggio
55      . (
56         (X-extent-callback . ,Arpeggio::width_callback)
57         (Y-extent-callback . #f)               
58         (molecule-callback . ,Arpeggio::brew_molecule)
59         (Y-offset-callbacks . (,Staff_symbol_referencer::callback))
60         (X-offset-callbacks . (,Side_position_interface::aligned_side))
61         (direction . -1)
62         (staff-position . 0.0)
63         (meta . ((interfaces . (arpeggio-interface staff-symbol-referencer-interface side-position-interface item-interface font-interface))))
64         ))
65
66     (BarLine
67      . (
68         (break-align-symbol . staff-bar)
69         (glyph . "|")
70         (break-glyph-function . ,default-break-barline)
71         (bar-size-procedure . ,Bar_line::get_staff_bar_size)
72         (molecule-callback . ,Bar_line::brew_molecule)     
73         (break-visibility . ,all-visible)
74         (breakable . #t)
75         (before-line-breaking-callback . ,Bar_line::before_line_breaking)
76         (space-alist . (
77                         (time-signature . (extra-space . 0.75)) 
78                         (custos . (minimum-space . 2.0))
79                         (clef .   (minimum-space . 1.0))
80                         (first-note . (extra-space . 1.3))
81                         (right-edge . (extra-space . 0.0))
82                         ))
83
84         ;;
85         ;; Ross. page 151 lists other values, we opt for a leaner look
86         ;; 
87         (kern . 3.0)
88         (thin-kern . 3.0)
89         (hair-thickness . 1.6)
90         (thick-thickness . 6.0)
91         (meta . ((interfaces . (bar-line-interface item-interface   break-aligned-interface font-interface))))
92         ))
93
94     
95     (BarNumber
96      . (
97         (molecule-callback . ,Text_item::brew_molecule)
98         (breakable . #t)
99         (break-visibility . ,begin-of-line-visible)
100         (padding . 1.0)
101         (direction . 1)
102         (font-family . roman)
103         (font-relative-size . -1)
104         (Y-offset-callbacks . (,Side_position_interface::aligned_side))
105         (X-offset-callbacks . (,Self_alignment_interface::aligned_on_self))
106         (self-alignment-X . 1)
107         (extra-offset . (1.3 . 0))
108         (meta .
109               ((interfaces . (side-position-interface
110                               text-interface
111                               self-alignment-interface
112                               font-interface item-interface  break-aligned-interface))))
113
114              ))
115
116     (BassFigure
117      . (
118         (molecule-callback . ,brew-bass-figure)
119         (Y-offset-callbacks . (,Self_alignment_interface::aligned_on_self))
120         (direction . 0)
121         (font-family . number)
122         (font-relative-size . -1)
123         (padding . 0.1)
124         (kern . 0.2)
125         (thickness . 1.0)
126         (meta . ((interfaces . (text-interface bass-figure-interface item-interface self-alignment-interface font-interface))))
127         ))
128     (Beam
129      . (
130         ;; todo: clean this up a bit: the list is getting
131         ;; rather long.
132         (molecule-callback . ,Beam::brew_molecule)
133         (concaveness-gap . 2.0)
134         (concaveness-threshold . 0.08)
135         (positions . (#f . #f))
136         (position-callbacks . (,Beam::least_squares
137                                ,Beam::check_concave
138                                ,Beam::slope_damping
139                                ,Beam::shift_region_to_valid
140                                ,Beam::quanting
141                               ))
142
143         ;; TODO: should be in SLT.
144         (thickness . 0.48) ; in staff-space
145         (before-line-breaking-callback . ,Beam::before_line_breaking)
146         (after-line-breaking-callback . ,Beam::after_line_breaking)
147         (neutral-direction . -1)
148         (dir-function . ,beam-dir-majority-median)
149         
150         ;; Whe have some unreferenced problems here.
151         ;;
152         ;; If we shorten beamed stems less than normal stems (1 staffspace),
153         ;; or high order less than 8th beams, patterns like
154         ;;     c''4 [c''8 c''] c''4 [c''16 c]
155         ;; are ugly (different stem lengths).
156         ;;
157         ;; But if we shorten 16th beams as much as 8th beams, a single
158         ;; forced 16th beam looks *very* short.
159
160         ;; We choose to shorten 8th beams the same as single stems,
161         ;; and high order beams less than 8th beams, so that all
162         ;; isolated shortened beams look nice and a bit shortened,
163         ;; sadly possibly breaking patterns with high order beams.
164         (beamed-stem-shorten . (1.0 0.5 0.25))
165         
166         (outer-stem-length-limit . 0.2)
167         (slope-limit . 0.2)
168         (flag-width-function . ,beam-flag-width-function)
169         (damping . 1)
170         (auto-knee-gap . 5.5)
171         (font-name . "cmr10")
172         (space-function . ,Beam::space_function)
173         (meta . ((interfaces . (staff-symbol-referencer-interface beam-interface spanner-interface))))
174         ))
175
176     (BreakAlignment
177      . (
178         (breakable . #t)
179         (stacking-dir . 1)
180         (axes . (0))
181         (X-extent-callback . ,Axis_group_interface::group_extent_callback)
182         (meta . ((interfaces . (break-alignment-interface item-interface axis-group-interface)))))
183         )
184
185     (BreakAlignGroup
186      . (
187         (axes  . (0))
188         (X-offset-callbacks . (,Break_align_interface::alignment_callback))
189         (X-extent-callback . ,Axis_group_interface::group_extent_callback)
190         (meta . ((interfaces . (break-aligned-interface item-interface axis-group-interface item-interface ))))
191         ))
192
193     (BreathingSign
194      . (
195         (break-align-symbol . breathing-sign)
196         (breakable . #t)
197         (space-alist . (
198                         (ambitus . (extra-space . 2.0))
199                         (key-signature . (minimum-space . 1.5))
200                         (staff-bar . (minimum-space . 1.5))
201                         (clef . (minimum-space . 2.0))
202                         (first-note . (minimum-space . 1.0))
203                         ))
204         (molecule-callback . ,Text_item::brew_molecule)
205         (lookup . name)
206         (font-family . music)
207         (text . "scripts-rcomma")
208         (Y-offset-callbacks . (,Breathing_sign::offset_callback))
209         (break-visibility . ,begin-of-line-invisible)
210         (meta . ((interfaces . (break-aligned-interface breathing-sign-interface text-interface font-interface item-interface ))))
211         ))
212
213     (Clef
214      . (
215         (molecule-callback . ,Clef::brew_molecule)
216         (before-line-breaking-callback . ,Clef::before_line_breaking)
217         (breakable . #t)
218         (font-family . music)      
219         (break-align-symbol . clef)
220         (break-visibility . ,begin-of-line-visible)
221         (space-alist . (
222                         (ambitus . (extra-space . 2.0))
223                         (staff-bar . (minimum-space .  3.7))
224                         (key-signature . (minimum-space . 4.0))
225                         (time-signature . (minimum-space . 4.2))
226                         (first-note . (minimum-space . 5.0))
227                         (next-note . (extra-space . 0.5))
228                         (right-edge . (extra-space . 0.5))
229                         ))
230         (Y-offset-callbacks  . (,Staff_symbol_referencer::callback)) 
231         (meta . ((interfaces . (clef-interface staff-symbol-referencer-interface font-interface break-aligned-interface item-interface ))))
232         ))
233
234     (Cluster
235      . (
236         (molecule-callback . ,Cluster::brew_molecule)
237         (spacing-procedure . ,Spanner::set_spacing_rods)                
238         (minimum-length . 0.0)
239         (padding . 0.25)
240         (shape . leftsided-stairs)
241         (meta . ((interfaces . (cluster-interface spanner-interface))))
242         ))
243
244     (ChordName
245      . (
246         (molecule-callback . ,Chord_name::brew_molecule)
247         (after-line-breaking-callback . ,Chord_name::after_line_breaking)
248         (chord-name-function . ,default-chord-name-function)
249         (font-family . roman)
250         (meta . ((interfaces . (font-interface text-interface chord-name-interface item-interface ))))
251         ))
252
253     (Custos
254      . (
255         (break-align-symbol . custos)
256         (breakable . #t)
257         (molecule-callback . ,Custos::brew_molecule)
258         (break-visibility . ,end-of-line-visible)
259         (style . vaticana)
260         (neutral-position . 0)
261         (neutral-direction . -1)
262         (adjust-if-on-staffline . #t)
263         (Y-offset-callbacks . (,Staff_symbol_referencer::callback))
264         (font-family . ancient)
265         (space-alist . (
266                         (first-note . (minimum-space . 0.0))
267                         (right-edge . (extra-space . 0.1))
268                         ))
269         (meta . ((interfaces
270                   . (custos-interface staff-symbol-referencer-interface
271                                       font-interface
272                                       break-aligned-interface item-interface ))))
273         ))
274
275
276     (DotColumn
277      . (
278         (axes . (0))
279         (direction . 1)
280         (X-extent-callback . ,Axis_group_interface::group_extent_callback)
281         (X-offset-callbacks . (,Dot_column::side_position))
282         (meta . ((interfaces . (dot-column-interface axis-group-interface item-interface ))))
283         ))
284
285     (Dots
286      . (
287         (molecule-callback . ,Dots::brew_molecule)
288         (dot-count . 1)
289         (Y-offset-callbacks  . (,Dots::quantised_position_callback ,Staff_symbol_referencer::callback))
290         (meta . ((interfaces . (font-interface staff-symbol-referencer-interface dots-interface item-interface ))))
291         ))
292
293     (DoublePercentRepeat .
294                          (
295                           (molecule-callback . ,Percent_repeat_item_interface::double_percent)
296                           (breakable . #t)
297                           (slope . 1.0)
298                           (font-family . music)
299                           (width . 2.0)
300                           (thickness . 0.48)
301                           (break-align-symbol . staff-bar)
302                           (break-visibility . ,begin-of-line-invisible)
303                           (meta . ((interfaces . (font-interface
304                                                   break-aligned-interface
305                                                   percent-repeat-interface item-interface ))))
306                          ))
307
308     (DynamicText
309      . (
310         (Y-offset-callbacks . (,Self_alignment_interface::aligned_on_self))
311         (molecule-callback . ,Text_item::brew_molecule)
312         (X-offset-callbacks . (,Self_alignment_interface::aligned_on_self
313                                ,Self_alignment_interface::centered_on_parent))
314         (self-alignment-X . 0)
315         (no-spacing-rods . #t)
316         (script-priority . 100)
317         (font-series . bold)
318         (font-family . dynamic)
319         (font-shape . italic)
320         (self-alignment-Y . 0)
321         (meta . ((interfaces . (font-interface text-interface self-alignment-interface  dynamic-interface script-interface item-interface ))))
322         ))
323
324     (DynamicLineSpanner
325      . (
326         (axes . (1))
327         (Y-extent-callback . ,Axis_group_interface::group_extent_callback)      
328         (Y-offset-callbacks . (,Side_position_interface::aligned_side))
329         (padding . 0.6)
330         (minimum-space . 1.2)
331         (direction . -1)
332         (meta . ((interfaces . (dynamic-interface axis-group-interface side-position-interface spanner-interface))))
333         ))
334
335     (LeftEdge
336      . (
337         (break-align-symbol . left-edge)
338         (X-extent-callback . ,Grob::point_dimension_callback)
339         (breakable . #t)
340         (space-alist . (
341                         (custos . (extra-space . 0.0))
342                         (ambitus . (extra-space . 2.0))
343                         (time-signature . (extra-space . 0.0)) 
344                         (staff-bar . (extra-space . 0.0))
345                         (breathing-sign . (minimum-space  . 0.0))
346                         (clef . (extra-space . 1.0))
347                         (first-note . (extra-space . 1.0))
348                         (right-edge . (extra-space . 0.0))
349                         (key-signature . (extra-space . 0.0))
350                         ))
351         (meta . ((interfaces . (break-aligned-interface item-interface ))))
352         ))
353
354     (Fingering
355      . (
356         (molecule-callback . ,Text_item::brew_molecule)
357         (padding . 0.6)
358         ;;              (direction . -1)
359         (self-alignment-X . 0)
360         (self-alignment-Y . 0)
361         (script-priority . 100)
362         (font-family . number)
363         (font-relative-size . -3)
364         (font-shape . upright)
365         (meta . ((interfaces . (finger-interface font-interface text-script-interface text-interface side-position-interface self-alignment-interface item-interface ))))
366         ))
367
368
369     (HaraKiriVerticalGroup
370      . (
371         (Y-offset-callbacks . (,Hara_kiri_group_spanner::force_hara_kiri_callback))
372         (Y-extent-callback . ,Hara_kiri_group_spanner::y_extent)
373         (axes . (1))
374         (meta . ((interfaces . (axis-group-interface hara-kiri-group-interface item-interface  spanner-interface))))
375         ))
376
377     (Hairpin
378      . (
379         (molecule-callback . ,Hairpin::brew_molecule)
380         (thickness . 1.0)
381         (height . 0.6666)
382         (spacing-procedure . ,Spanner::set_spacing_rods)
383         (minimum-length . 2.0)
384         (if-text-padding . 1.0)
385         (width-correct . -1.0)
386
387         (dash-thickness . 1.2)
388         (dash-length . 4.0)
389         (self-alignment-Y . 0)
390         (Y-offset-callbacks . (,Self_alignment_interface::aligned_on_self))
391         (meta . ((interfaces . (hairpin-interface self-alignment-interface dynamic-interface spanner-interface))))
392         ))
393
394     (HorizontalBracket
395      . (
396         (thickness . 1.0)
397         (molecule-callback . ,Horizontal_bracket::brew_molecule)
398         (Y-offset-callbacks . (,Side_position_interface::aligned_side))
399         (padding . 0.2)
400         (direction . -1)
401         (meta . ((interfaces . (horizontal-bracket-interface side-position-interface spanner-interface))))
402         ))
403     (InstrumentName
404      . (
405         (breakable . #t)
406         (Y-offset-callbacks . (,Self_alignment_interface::aligned_on_self
407                                ,Side_position_interface::aligned_on_support_refpoints))
408         ;; huh? what's this for?
409         (direction . 0)
410         (space-alist . (
411                         (left-edge . (extra-space . 1.0))
412                         ))
413
414         (self-alignment-Y . 0)
415         (molecule-callback . ,Text_item::brew_molecule)         
416         (break-align-symbol . instrument-name)
417         (break-visibility . ,begin-of-line-visible)
418         (baseline-skip . 2)
419         (font-family . roman)
420         (meta . ((interfaces . (font-interface self-alignment-interface side-position-interface text-interface break-aligned-interface item-interface ))))
421         ))
422
423     (KeySignature
424      . (
425         (molecule-callback . ,Key_signature_interface::brew_molecule)
426         (space-alist . (
427                         (time-signature . (extra-space . 1.25))
428                         (staff-bar .  (extra-space . 1.1))
429                         (right-edge . (extra-space . 0.5))
430                         (first-note . (extra-space . 2.5))
431                         ))
432         (Y-offset-callbacks . (,Staff_symbol_referencer::callback))
433         (break-align-symbol . key-signature)
434         (break-visibility . ,begin-of-line-visible)
435         (breakable . #t)
436         (meta . ((interfaces . (key-signature-interface  font-interface  break-aligned-interface item-interface ))))
437         ))
438
439     (Ligature
440      . (
441         (molecule-callback . ,Ligature_bracket::brew_molecule)
442         (meta . ((interfaces . (ligature-interface))))
443         ))
444
445     (LigatureBracket
446      . (
447         (ligature-primitive-callback . ,Note_head::brew_molecule)
448         (direction . 1)
449         (gap . 0.0)
450         (padding . 2.0)
451         (thickness . 1.6)
452         (edge-widen . (0.0 . 0.0))
453         (edge-height . (0.7 . 0.7))
454         (shorten-pair . (-0.2 . -0.2))
455         (before-line-breaking-callback . ,Tuplet_bracket::before_line_breaking)
456         (after-line-breaking-callback . ,Tuplet_bracket::after_line_breaking)
457         (molecule-callback . ,Tuplet_bracket::brew_molecule)
458         (meta .  ((interfaces . (tuplet-bracket-interface spanner-interface))))
459         ))
460
461     (LigatureHead
462      . (
463         (ligature-primitive-callback . ,Note_head::brew_molecule)
464         (molecule-callback . ,Ligature_head::brew_molecule)
465         (Y-offset-callbacks  . (,Staff_symbol_referencer::callback))
466         (stem-attachment-function . ,note-head-style->attachment-coordinates)
467         (font-family . ancient)
468         (style . default)
469         (glyph-name-procedure . ,find-notehead-symbol)
470         (meta . ((interfaces . (ligature-head-interface rhythmic-head-interface
471                                                         font-interface
472                                                         note-head-interface staff-symbol-referencer-interface))))
473         ))
474
475     (LyricHyphen
476      . (
477         (thickness . 1.0)
478         (height . 0.4)
479         (minimum-length .  0.5) 
480         (maximum-length .  100)
481         (molecule-callback . ,Hyphen_spanner::brew_molecule)
482         (Y-extent-callback . ,Grob::point_dimension_callback)
483         (meta . ((interfaces . (lyric-hyphen-interface spanner-interface))))
484         ))
485
486     (LyricExtender
487      . (
488         (molecule-callback . ,Lyric_extender::brew_molecule)
489         (height . 0.8) ; stafflinethickness;
490         (right-trim-amount . 0.5)
491         (Y-extent-callback . ,Grob::point_dimension_callback)
492         (meta . ((interfaces . (lyric-extender-interface spanner-interface))))
493         ))
494
495     (LyricText
496      . (
497         (molecule-callback . ,Text_item::brew_molecule)
498         (X-offset-callbacks . (,Self_alignment_interface::centered_on_parent
499                                ,Self_alignment_interface::aligned_on_self))
500         (self-alignment-X . 0)
501         (word-space . 0.6)
502         (ignore-length-mismatch . #f)
503         (begin-alignment . 4)
504         (end-alignment . 2)
505         (font-family . roman)
506         (font-shape . upright)
507         
508         ;; duh, side-position-interface?
509         (meta . ((interfaces . (lyric-syllable-interface self-alignment-interface text-interface font-interface item-interface ))))
510         ))
511
512     (MensuralLigature
513      . (
514         (thickness . 1.4)
515         (flexa-width . 2.0)
516         (ligature-primitive-callback . ,Mensural_ligature::brew_ligature_primitive)
517         (molecule-callback . ,Mensural_ligature::brew_molecule)
518         (font-family . ancient)
519         (meta . ((interfaces . (mensural-ligature-interface font-interface))))
520         ))
521
522     (Porrectus
523      . (
524         (style . mensural)
525         (auto-properties . #f)
526         (solid . #f)
527         (width . 2.4)
528         (thickness . 1.0)
529         (add-stem . #t)
530         (direction . 1)
531         (molecule-callback . ,Porrectus::brew_molecule)
532         (meta . ((interfaces . (porrectus-interface))))
533         ))
534
535     (RehearsalMark
536      . (
537         (molecule-callback . ,Text_item::brew_molecule)
538         (X-offset-callbacks . (,Self_alignment_interface::aligned_on_self))
539         (Y-offset-callbacks . (,Side_position_interface::aligned_side)) 
540         (self-alignment-X . 0)
541
542         (direction . 1)
543         (breakable . #t)
544         (font-family . roman)
545         (baseline-skip . 2)
546         (break-visibility . ,end-of-line-invisible)
547         (padding . 0.8)
548         (meta . ((interfaces . (text-interface side-position-interface font-interface mark-interface self-alignment-interface item-interface ))))
549         ))
550     
551     (MeasureGrouping
552      . (
553         (Y-offset-callbacks . (,Side_position_interface::out_of_staff 
554                                ,Side_position_interface::aligned_side))
555         (molecule-callback . ,Measure_grouping::brew_molecule)
556         (padding . 2)
557         (direction . 1)
558         (thickness . 1)
559         (height . 2.0)
560         (staff-padding . 3)
561         (meta . ((interfaces . (spanner-interface side-position-interface measure-grouping-interface))))
562         ))
563     (MultiMeasureRest
564      . (
565         (spacing-procedure . ,Multi_measure_rest::set_spacing_rods)
566         (molecule-callback . ,Multi_measure_rest::brew_molecule)
567         (Y-offset-callbacks . (,Staff_symbol_referencer::callback))
568         (staff-position . 0)
569         (expand-limit . 10)
570         (thick-thickness . 6.6)
571         (hair-thickness . 2.0)
572         (padding . 1)
573         (meta . ((interfaces . (multi-measure-rest-interface rest-interface font-interface staff-symbol-referencer-interface spanner-interface))))
574         ))
575     
576     (MultiMeasureRestNumber
577      . (
578         (molecule-callback . ,Text_item::brew_molecule)
579         (X-offset-callbacks . (,Self_alignment_interface::aligned_on_self
580                                ,Self_alignment_interface::centered_on_other_axis_parent))
581         (Y-offset-callbacks . (,Side_position_interface::aligned_side))
582         (self-alignment-X . 0)
583         (direction . 1)
584         (padding . 2)
585         (font-family . number)
586         (meta . ((interfaces . (side-position-interface self-alignment-interface font-interface spanner-interface text-interface))))
587         ))
588
589
590     (NoteCollision
591      . (
592         (axes . (0 1))
593         ;; Ugh, should not be hard-coded. 
594         (note-width . 1.321)
595         (X-extent-callback . ,Axis_group_interface::group_extent_callback)
596         (Y-extent-callback . ,Axis_group_interface::group_extent_callback)      
597         (meta . ((interfaces . (note-collision-interface axis-group-interface item-interface ))))
598         ))
599
600     (NoteColumn
601      . (
602         (axes . (0 1))
603         (X-extent-callback . ,Axis_group_interface::group_extent_callback)
604         (Y-extent-callback . ,Axis_group_interface::group_extent_callback)      
605         (meta . ((interfaces . (axis-group-interface note-column-interface item-interface ))))
606         ))
607
608     (NoteHead
609      . (
610         (style . default)
611         (molecule-callback . ,Note_head::brew_molecule)
612         (glyph-name-procedure . ,find-notehead-symbol)
613         (Y-offset-callbacks  . (,Staff_symbol_referencer::callback))
614         (stem-attachment-function . ,note-head-style->attachment-coordinates)
615         (meta . ((interfaces . (rhythmic-head-interface font-interface note-head-interface staff-symbol-referencer-interface item-interface ))))
616         ))
617
618     (Glissando
619      . (
620         (type . line)
621         (gap . 0.5)
622         (zigzag-width . 0.75)
623         (breakable . #t)
624         (X-extent-callback . #f)
625         (Y-extent-callback . #f)                         
626         (molecule-callback . ,Line_spanner::brew_molecule)
627         (meta . ((interfaces . (line-spanner-interface spanner-interface))))
628         ))
629
630     (VoiceFollower
631      . (
632         (type . line)
633         (gap . 0.5)
634         (breakable . #t)
635         (X-extent-callback . #f)
636         (Y-extent-callback . #f)                         
637         (molecule-callback . ,Line_spanner::brew_molecule)
638         (meta . ((interfaces . (line-spanner-interface spanner-interface))))
639         ))
640
641     (NoteName
642      . (
643         (molecule-callback . ,Text_item::brew_molecule)
644         (font-family . roman)
645         (meta . ((interfaces . (note-name-interface text-interface font-interface item-interface ))))
646         ))
647
648     (OctavateEight
649      . (
650         (self-alignment-X . 0)
651         (text . "8")
652         (break-visibility . ,begin-of-line-visible)
653         (X-offset-callbacks . (,Self_alignment_interface::centered_on_parent ,Self_alignment_interface::aligned_on_self))
654         (Y-offset-callbacks . (,Side_position_interface::aligned_side))
655         (molecule-callback . ,Text_item::brew_molecule)
656         (font-shape . italic)
657         (padding . 0.4)
658         (font-relative-size . -2)
659         (font-family . roman)
660         (meta . ((interfaces . (text-interface self-alignment-interface side-position-interface font-interface item-interface ))))
661         ))
662
663     (PaperColumn
664      . (
665         (axes . (0))
666         (before-line-breaking-callback . ,Paper_column::before_line_breaking)
667         (X-extent-callback . ,Axis_group_interface::group_extent_callback)
668
669 ;               (molecule-callback . ,Paper_column::brew_molecule) (font-name . "cmr8") (Y-extent-callback . #f)
670         (meta . ((interfaces . (paper-column-interface axis-group-interface spaceable-grob-interface item-interface ))))
671         ))
672
673     (PhrasingSlur
674      . (
675         (molecule-callback . ,Slur::brew_molecule)
676         (thickness . 1.2)               
677         (spacing-procedure . ,Spanner::set_spacing_rods)                
678         (minimum-length . 1.5)
679         (after-line-breaking-callback . ,Slur::after_line_breaking)
680         (extremity-rules . ,default-slur-extremity-rules)
681         (extremity-offset-alist . ,default-phrasing-slur-extremity-offset-alist)
682         (de-uglify-parameters . (1.5  0.8  -2.0))
683         (Y-extent-callback . ,Slur::height)
684         (height-limit . 2.0)
685         (ratio . 0.333)
686         (beautiful . 0.5)
687         (y-free . 0.75)
688         (attachment . (#f . #f))
689         (attachment-offset . ((0 . 0) . (0 . 0)))
690         (slope-limit . 0.8)
691         (details . ((force-blowfit . 0.5)
692                     (bezier-pct-c0 . -0.2) (bezier-pct-c3 . 0.000006)
693                     (bezier-pct-out-max . 0.8) (bezier-pct-in-max . 1.2)
694                     (bezier-area-steps . 1.0)))
695         (meta . ((interfaces . (slur-interface spanner-interface))))
696         ))
697
698     (NonMusicalPaperColumn
699      . (
700         (axes . (0))
701         (X-extent-callback . ,Axis_group_interface::group_extent_callback)
702         (before-line-breaking-callback . ,Paper_column::before_line_breaking)
703         ;; debugging stuff: print column number.
704 ;       (molecule-callback . ,Paper_column::brew_molecule) (font-name . "cmr8") (Y-extent-callback . #f)
705
706
707         (meta .  ((interfaces . (paper-column-interface axis-group-interface spaceable-grob-interface item-interface ))))
708         ))
709
710     (PercentRepeat
711      . (
712         (spacing-procedure . ,Multi_measure_rest::set_spacing_rods)
713         (molecule-callback . ,Multi_measure_rest::percent)
714         (slope . 1.0)
715         (thickness . 0.48)
716         (minimum-width . 12.5) ; staffspace
717         (font-family . music)
718         (meta . ((interfaces . (multi-measure-rest-interface  spanner-interface font-interface percent-repeat-interface))))
719         ))
720
721     (PianoPedalBracket   ;; an example of a text spanner
722      . (
723         (molecule-callback . ,Text_spanner::brew_molecule)
724         (font-family . roman)
725         (type . line)
726         (if-text-padding . 1.0)
727         (width-correct . 0)
728         (outer . #t)
729         (direction . -1)
730         (edge-widen . (0.5 . 0.5))
731         (edge-height . (1.0 . 1.0))
732         (shorten-pair . (0.0 . 0.0))
733         (thickness .  1.0)
734         (meta . ((interfaces . (text-spanner-interface piano-pedal-interface spanner-interface))))
735         ))
736
737     (RepeatSlash
738      . (
739         (molecule-callback . , Percent_repeat_item_interface::beat_slash)
740         (thickness . 0.48)
741         (slope . 1.7)
742         (meta . ((interfaces . (percent-repeat-interface item-interface ))))
743         ))
744     (Rest
745      . (
746         (after-line-breaking-callback . ,Rest::after_line_breaking)
747         (X-extent-callback . ,Rest::extent_callback)
748         (Y-extent-callback . ,Rest::extent_callback)            
749         (molecule-callback . ,Rest::brew_molecule)
750         (Y-offset-callbacks . (,Staff_symbol_referencer::callback)) 
751         (minimum-beam-collision-distance . 0.75)
752         (meta . (
753                  (interfaces . (font-interface
754                                 rhythmic-head-interface
755                                 staff-symbol-referencer-interface
756                                 rest-interface item-interface ))
757                 ))))
758
759     (RestCollision
760      . (
761         (minimum-distance . 0.75)
762         (meta . ((interfaces . (rest-collision-interface item-interface ))))
763         ))
764
765     (Script
766      . (
767         ;; don't set direction here: it breaks staccato.
768         (molecule-callback . ,Script_interface::brew_molecule)
769
770         ;; This value is sensitive: if too large, staccato dots will move a
771         ;; space a away.
772         (padding . 0.25)
773         ;; (script-priority . 0) priorities for scripts, see script.scm
774         (X-offset-callbacks . (,Self_alignment_interface::centered_on_parent))
775         (before-line-breaking-callback . ,Script_interface::before_line_breaking)
776         (font-family . music)
777         (meta . ((interfaces . (script-interface side-position-interface font-interface item-interface ))))
778         ))
779
780     (ScriptColumn
781      . (
782         (before-line-breaking-callback . ,Script_column::before_line_breaking)
783         (meta . ((interfaces . (script-column-interface item-interface ))))
784         ))
785
786     (Slur
787      . (
788         (molecule-callback . ,Slur::brew_molecule)
789         (thickness . 1.2)               
790         (spacing-procedure . ,Spanner::set_spacing_rods)                
791         (minimum-length . 1.5)
792         (after-line-breaking-callback . ,Slur::after_line_breaking)
793         (extremity-rules . ,default-slur-extremity-rules)
794         (extremity-offset-alist . ,default-slur-extremity-offset-alist)
795         (de-uglify-parameters . (1.5  0.8  -2.0))
796         (Y-extent-callback . ,Slur::height)
797         (height-limit . 2.0)
798         (ratio . 0.333)
799         (beautiful . 0.5)
800         (y-free . 0.75)
801         (attachment . (#f . #f))
802         (attachment-offset . ((0 . 0) . (0 . 0)))
803         (slope-limit . 0.8)
804         (details . ((force-blowfit . 0.5)
805                     (bezier-pct-c0 . -0.2) (bezier-pct-c3 . 0.000006)
806                     (bezier-pct-out-max . 0.8) (bezier-pct-in-max . 1.2)
807                     (bezier-area-steps . 1.0)))
808         (meta . ((interfaces . (slur-interface spanner-interface))))
809         ))
810
811     (SpacingSpanner
812      . (
813         (spacing-procedure .  ,Spacing_spanner::set_springs)
814         (grace-space-factor . 0.6)
815         (shortest-duration-space . 2.0)
816         (spacing-increment . 1.2)
817         (base-shortest-duration . ,(ly:make-moment 1 8))
818         (meta . ((interfaces . (spacing-interface spacing-spanner-interface spanner-interface))))
819         ))
820
821     (SpanBar
822      . (
823         (break-align-symbol . staff-bar)
824         (bar-size-procedure . ,Span_bar::get_bar_size) 
825         (molecule-callback . ,Span_bar::brew_molecule)
826         (break-visibility . ,begin-of-line-invisible)
827         (X-extent-callback . ,Span_bar::width_callback)
828         (Y-extent-callback . ())
829         (breakable . #t)
830         (glyph . "|")
831         (before-line-breaking-callback . ,Span_bar::before_line_breaking)
832         ;; ugh duplication! 
833
834         ;;
835         ;; Ross. page 151 lists other values, we opt for a leaner look
836         ;; 
837         (kern . 3.0)
838         (thin-kern . 3.0)
839         (hair-thickness . 1.6)
840         (thick-thickness . 6.0)
841         (meta . ((interfaces . (span-bar-interface font-interface
842                                                    bar-line-interface item-interface ))))
843         ))
844
845     (StanzaNumber
846      . (
847         (breakable . #t)
848         (molecule-callback . ,Text_item::brew_molecule)         
849         (break-align-symbol . clef)
850         (break-visibility . ,begin-of-line-visible)
851         (font-family . roman)
852         (meta . ((interfaces . (break-aligned-interface text-interface font-interface item-interface ))))               
853         ))
854
855     (StaffSpacing
856      . (
857         (breakable . #t)
858         (stem-spacing-correction . 0.4)
859         (knee-spacing-correction . 0.75)
860         (meta . ((interfaces . (spacing-interface staff-spacing-interface item-interface ))))
861         ))
862     (NoteSpacing
863      . (
864         (stem-spacing-correction . 0.5)
865         (knee-spacing-correction . 0.75)
866         (meta . ((interfaces . (spacing-interface note-spacing-interface item-interface ))))
867         ))
868
869     (StaffSymbol
870      . (
871         (molecule-callback . ,Staff_symbol::brew_molecule)
872         (line-count . 5)
873         (layer . 0)
874         (meta . ((interfaces . (staff-symbol-interface spanner-interface))))
875         ))
876
877     (SostenutoPedal
878      . (
879         (molecule-callback . ,Text_item::brew_molecule)
880         (direction . 1)
881         (X-offset-callbacks . (,Self_alignment_interface::aligned_on_self))
882         (no-spacing-rods . #t)
883         (padding . 0.0) ;; padding relative to SostenutoPedalLineSpanner
884         (pedal-type . mixed)
885         (font-family . roman)
886         (font-shape . italic)
887         (self-alignment-X . 0)
888         (meta . ((interfaces . (text-interface  self-alignment-interface font-interface item-interface))))
889         ))
890
891     (SostenutoPedalLineSpanner 
892      . (
893         (axes . (1))
894         (Y-extent-callback . ,Axis_group_interface::group_extent_callback)      
895         (Y-offset-callbacks . (,Side_position_interface::aligned_side))
896         
897
898         (padding . 1.2)
899         (minimum-space . 1.0)
900         (direction . -1)
901         (meta . ((interfaces . (piano-pedal-interface axis-group-interface side-position-interface  spanner-interface))))
902         ))
903         
904     (Stem
905      . (
906         (before-line-breaking-callback . ,Stem::before_line_breaking)
907         (molecule-callback . ,Stem::brew_molecule)
908         (thickness . 1.3)
909
910         ;; 3.5 (or 3 measured from note head) is standar length
911         ;; 32nd, 64th flagged stems should be longer
912         (lengths . (3.5 3.5 3.5 4.5 5.0))
913         
914         ;; Stems in unnatural (forced) direction should be shortened by
915         ;; one staff space, according to [Roush & Gourlay].
916         ;; Flagged stems we shorten only half a staff space.
917         (stem-shorten . (1.0 0.5))
918
919         ;; default stem direction for note on middle line
920         (neutral-direction . -1)
921         
922         ;; [Wanske]: standard length (but no shorter than minimum).
923         ;; (beamed-lengths . (3.5))
924         
925         ;; FIXME.  3.5 yields too long beams (according to Ross and
926         ;; looking at Baerenreiter examples) for a number of common
927         ;; boundary cases.  Subtracting half a beam thickness fixes
928         ;; this, but the bug may well be somewhere else.
929         (beamed-lengths . (3.26))
930
931         ;; [Wanske] lists three sets of minimum lengths.  One
932         ;; set for the nomal case, and one set for beams with `der
933         ;; Balkenendpunkt weiter "uber bzw. unter die Systemgrenze
934         ;; hinaus (bei Gruppen mit grossem Tonumfang)' and the extreme
935         ;; case.
936
937         ;; Note that Wanske lists numbers lengths starting from top of
938         ;; head, so we must add half a staff space.
939         
940         ;; We use the normal minima as minimum for the ideal lengths,
941         ;; and the extreme minima as abolute minimum length.
942         
943         ;; The 'normal' minima
944         (beamed-minimum-free-lengths . (2.5 2.0 1.5))
945         
946         ;; The 'far outside staff' minima, not used
947         ;(beamed-far-minimum-free-lengths . (1.83))
948         
949         ;; The 'extreme case' minima
950         (beamed-extreme-minimum-free-lengths . (1.83 1.5))
951
952         (X-offset-callbacks . (,Stem::off_callback))
953         (X-extent-callback . ,Stem::dim_callback)       
954         (Y-extent-callback . ,Stem::height)
955         (Y-offset-callbacks . (,Staff_symbol_referencer::callback))
956         (adjust-if-on-staffline . #t)
957         (font-family . music)      
958         (avoid-note-head . #f)
959         (up-to-staff . #f)
960         (meta . ((interfaces . (stem-interface  font-interface item-interface ))))
961         ))
962
963     (StemTremolo
964      . (
965         (molecule-callback . ,Stem_tremolo::brew_molecule)
966         (Y-extent-callback . ,Stem_tremolo::height)
967         (X-extent-callback . #f)
968
969         (beam-width . 1.6) ; staff-space
970         (beam-thickness . 0.48) ; staff-space
971         (meta . ((interfaces . (stem-tremolo-interface item-interface ))))
972         ))
973
974     (SeparationItem
975      . (
976         (meta . ((interfaces . (spacing-interface separation-item-interface item-interface ))))
977         ))
978
979     (SeparatingGroupSpanner
980      . (
981         (spacing-procedure . ,Separating_group_spanner::set_spacing_rods)
982         (meta . ((interfaces . (spacing-interface separation-spanner-interface spanner-interface))))
983         ))
984
985     (SustainPedal
986      . (
987         (no-spacing-rods . #t)
988         (molecule-callback . ,Sustain_pedal::brew_molecule)
989         (self-alignment-X . 0)
990         (direction . 1)
991         (padding . 0.0)  ;; padding relative to SustainPedalLineSpanner
992         (pedal-type . text)
993         (X-offset-callbacks . (,Self_alignment_interface::aligned_on_self))
994         (meta . ((interfaces . (piano-pedal-interface text-spanner-interface text-interface self-alignment-interface font-interface item-interface))))
995         ))
996
997     (SustainPedalLineSpanner 
998      . (
999         (axes . (1))
1000         (Y-extent-callback . ,Axis_group_interface::group_extent_callback)
1001         (Y-offset-callbacks . (,Side_position_interface::aligned_side))
1002         
1003         (padding . 1.2)
1004         (minimum-space . 1.0)
1005         (direction . -1)
1006         (meta . ((interfaces . (piano-pedal-interface axis-group-interface side-position-interface spanner-interface))))
1007         ))
1008
1009     (System
1010      . (
1011         (axes . (0 1))
1012         (X-extent-callback . ,Axis_group_interface::group_extent_callback)
1013         (Y-extent-callback . ,Axis_group_interface::group_extent_callback)      
1014         (meta . ((interfaces . (system-interface axis-group-interface spanner-interface))))
1015         ))
1016
1017     (SystemStartBrace
1018      . (
1019         (glyph . "brace")
1020         (molecule-callback . ,System_start_delimiter::brew_molecule)
1021         (collapse-height . 5.0)
1022         (font-family . braces)
1023         (Y-extent-callback . #f)
1024         (meta . ((interfaces . (system-start-delimiter-interface font-interface))))
1025         ))
1026
1027     (SystemStartBracket
1028      . (
1029         (Y-extent-callback . #f)
1030         (molecule-callback . ,System_start_delimiter::brew_molecule)
1031         (glyph . "bracket")
1032         (arch-height . 1.5)
1033         (arch-angle . 50.0)
1034         (arch-thick . 0.25)
1035         (arch-width . 1.5)
1036         (bracket-collapse-height . 1)
1037         (thickness . 0.25)
1038         (meta . ((interfaces . (system-start-delimiter-interface spanner-interface))))
1039         ))
1040
1041     (SystemStartBar
1042      . (
1043         (Y-extent-callback . #f)
1044         (molecule-callback . ,System_start_delimiter::brew_molecule)
1045         (glyph . "bar-line")
1046         (thickness . 1.6)
1047         (after-line-breaking-callback . ,System_start_delimiter::after_line_breaking)
1048         (meta . ((interfaces . (system-start-delimiter-interface spanner-interface))))
1049         ))
1050
1051     (TextScript
1052      . (
1053         (molecule-callback . ,Text_item::brew_molecule)
1054         (no-spacing-rods . #t)
1055         (X-offset-callbacks . (,Self_alignment_interface::aligned_on_self))
1056         (direction . -1)
1057         (padding . 0.5)
1058         (script-priority . 200)
1059         ;; todo: add X self alignment?
1060         (baseline-skip . 2)
1061         (font-family . roman)
1062         (meta . ((interfaces . (text-script-interface text-interface side-position-interface font-interface item-interface ))))
1063         ))
1064
1065     (TextSpanner
1066      . (
1067         (molecule-callback . ,Text_spanner::brew_molecule)
1068         (font-family . roman)
1069         (type . line)
1070
1071         ;; urg, only for (de)cresc. text spanners
1072         (if-text-padding . 1.0)
1073         (width-correct . -1)
1074
1075         (direction . 1)
1076         (meta . ((interfaces . (text-spanner-interface side-position-interface font-interface spanner-interface))))             
1077         ))
1078     
1079     (TabNoteHead
1080      . (
1081         (font-family . roman)
1082         (style . default)
1083         (molecule-callback . ,tablature-molecule-callback)
1084         (Y-offset-callbacks  . (,Staff_symbol_referencer::callback))
1085         (extra-offset . (0 . -0.65)) ;; UGH! TODO: Clean this up!
1086         (stem-attachment-function . ,tablature-stem-attachment-function)
1087         (meta . ((interfaces
1088                   . (rhythmic-head-interface
1089                      font-interface
1090                      note-head-interface staff-symbol-referencer-interface
1091                      text-interface item-interface ))))
1092         ))
1093
1094
1095     (Tie
1096      . (
1097         (molecule-callback . ,Tie::brew_molecule)
1098         (spacing-procedure . ,Spanner::set_spacing_rods)
1099         (staffline-clearance . 0.35)
1100         (details . ((ratio . 0.333) (height-limit . 1.0)))
1101         (thickness . 1.2)
1102         (x-gap . -0.1)
1103         (y-offset . 0.6)
1104         (minimum-length  . 2.5)
1105         (meta . ((interfaces . (tie-interface spanner-interface))))
1106         ))
1107
1108     (TieColumn
1109      . (
1110         (after-line-breaking-callback . ,Tie_column::after_line_breaking)
1111         (X-extent-callback . ())
1112         (Yoo-extent-callback . ())      
1113         (meta . ((interfaces . (tie-column-interface spanner-interface))))
1114         ))
1115
1116     (TimeSignature
1117      . (
1118         (molecule-callback . ,Time_signature::brew_molecule)
1119         (break-align-symbol . time-signature)
1120         (break-visibility . ,all-visible)
1121         (space-alist . (
1122                         (first-note . (extra-space . 2.0))
1123                         (right-edge . (extra-space . 0.5))
1124                         (staff-bar .  (minimum-space . 2.0))
1125                         ))
1126         (breakable . #t)
1127         (style . C)
1128         (font-family . number)
1129         (meta . ((interfaces . (time-signature-interface break-aligned-interface font-interface item-interface ))))
1130         ))
1131
1132     (TupletBracket
1133      . (
1134         (gap . 2.0)
1135         (padding . 0.9)
1136         (thickness . 1.6)
1137         (edge-widen . (0.0 . 0.0))
1138         (edge-height . (0.7 . 0.7))
1139         (shorten-pair . (-0.2 . -0.2))
1140         (before-line-breaking-callback . ,Tuplet_bracket::before_line_breaking)
1141         (after-line-breaking-callback . ,Tuplet_bracket::after_line_breaking)
1142         (molecule-callback . ,Tuplet_bracket::brew_molecule)
1143         (font-family . roman)
1144         (font-shape . italic)
1145
1146         (font-relative-size . -1)
1147         (meta .  ((interfaces . (text-interface tuplet-bracket-interface font-interface spanner-interface))))
1148         ))
1149
1150     (UnaCordaPedal
1151      . (
1152         (molecule-callback . ,Text_item::brew_molecule)
1153         (font-family . roman)
1154         (font-shape . italic)
1155         (no-spacing-rods . #t)
1156         (self-alignment-X . 0)
1157         (direction . 1)
1158         (pedal-type . text)
1159         (padding . 0.0)  ;; padding relative to UnaCordaPedalLineSpanner
1160         (X-offset-callbacks . (,Self_alignment_interface::aligned_on_self))
1161         (meta . ((interfaces . (text-interface self-alignment-interface font-interface item-interface ))))
1162         ))
1163
1164     (UnaCordaPedalLineSpanner 
1165      . (
1166         (axes . (1))
1167         (Y-extent-callback . ,Axis_group_interface::group_extent_callback)      
1168         (Y-offset-callbacks . (,Side_position_interface::aligned_side))
1169         
1170         (padding . 1.2)
1171         (minimum-space . 1.0)
1172         (direction . -1)
1173         (meta . ((interfaces . (piano-pedal-interface axis-group-interface side-position-interface spanner-interface))))
1174         ))
1175
1176     (VoltaBracket
1177      . (
1178         (molecule-callback . ,Volta_bracket_interface::brew_molecule)
1179         (direction . 1)
1180         (padding . 1)
1181         (font-style . volta)
1182         (Y-offset-callbacks . (,Side_position_interface::aligned_side))
1183         (thickness . 1.6)  ;  stafflinethickness
1184         (height . 2.0) ; staffspace;
1185         (minimum-space . 5)
1186         (font-family . number)
1187         (font-relative-size . -2)
1188         (meta . ((interfaces . (volta-bracket-interface text-interface side-position-interface font-interface spanner-interface))))
1189         ))
1190     
1191     (VerticalAlignment
1192      . (
1193         (axes . (1))
1194         (Y-extent-callback . ,Axis_group_interface::group_extent_callback)
1195         (stacking-dir . -1)
1196         (meta . ((interfaces . (align-interface axis-group-interface spanner-interface))))
1197         ))
1198
1199     (VerticalAxisGroup
1200      . (
1201         (axes . (1))
1202         (Y-extent-callback . ,Axis_group_interface::group_extent_callback)      
1203         
1204         (meta . ((interfaces . (axis-group-interface spanner-interface))))
1205         ))
1206    )
1207  )
1208
1209
1210
1211
1212 (define (completize-grob-entry x)
1213   "transplant assoc key into 'name entry of 'meta of X
1214 "
1215   (let* ((name-sym  (car x))
1216          (grob-entry (cdr x))
1217          (metaentry (cdr (assoc 'meta grob-entry)))
1218          (ifaces-entry
1219           (cdr (assoc 'interfaces metaentry)))
1220
1221         )
1222     (set! metaentry (assoc-set! metaentry 'name name-sym))
1223     (set! metaentry (assoc-set! metaentry 'interfaces
1224                                 (cons 'grob-interface ifaces-entry)))
1225     (set! grob-entry (assoc-set! grob-entry 'meta metaentry))
1226     (cons name-sym grob-entry)))
1227
1228 (set! all-grob-descriptions (map completize-grob-entry all-grob-descriptions))
1229
1230
1231
1232                                         ;  (display  (map pair? all-grob-descriptions))
1233
1234
1235 ;; make sure that \property Foo.Bar =\turnOff doesn't complain
1236
1237 (map (lambda (x)
1238                                         ; (display (car x)) (newline)
1239
1240        (set-object-property! (car x) 'translation-type? list?)
1241        (set-object-property! (car x) 'is-grob? #t))
1242      all-grob-descriptions)
1243
1244
1245 (set! all-grob-descriptions (sort all-grob-descriptions alist<?))