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