]> git.donarmstrong.com Git - lilypond.git/blob - lily/grob.cc
3f35eb86b8edd66ee21dad151c9429ddb7e42bc3
[lilypond.git] / lily / grob.cc
1 /*
2   score-elem.cc -- implement Grob
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #include <string.h>
11 #include <math.h>
12
13 #include "input-smob.hh"
14 #include "libc-extension.hh"
15 #include "group-interface.hh"
16 #include "misc.hh"
17 #include "paper-score.hh"
18 #include "paper-def.hh"
19 #include "molecule.hh"
20 #include "grob.hh"
21 #include "debug.hh"
22 #include "spanner.hh"
23 #include "line-of-score.hh"
24 #include "item.hh"
25 #include "paper-column.hh"
26 #include "molecule.hh"
27 #include "misc.hh"
28 #include "paper-outputter.hh"
29 #include "dimension-cache.hh"
30 #include "side-position-interface.hh"
31 #include "item.hh"
32
33 #include "ly-smobs.icc"
34
35 /*
36 TODO:
37
38 remove dynamic_cast<Spanner,Item> and put this code into respective
39   subclass.
40 */
41
42
43 #define INFINITY_MSG "Infinity or NaN encountered"
44
45 Grob::Grob (SCM basicprops)
46 {
47   /*
48     fixme: default should be no callback.
49    */
50
51   pscore_l_=0;
52   status_c_ = 0;
53   original_l_ = 0;
54   immutable_property_alist_ =  basicprops;
55   mutable_property_alist_ = SCM_EOL;
56
57   smobify_self ();
58
59   /*
60     TODO:
61
62     destill this into a function, so we can re-init the immutable
63     properties with a new BASICPROPS value after creation. Convenient
64     eg. when using \override with StaffSymbol.  */
65   
66   char const*onames[] = {"X-offset-callbacks", "Y-offset-callbacks"};
67   char const*enames[] = {"X-extent-callback", "Y-extent-callback"};
68   
69   for (int a = X_AXIS; a <= Y_AXIS; a++)
70     {
71       SCM l = get_grob_property (onames[a]);
72
73       if (scm_ilength (l) >=0)
74         {
75           dim_cache_[a].offset_callbacks_ = l;
76           dim_cache_[a].offsets_left_ = scm_ilength (l);
77         }
78       else
79         {
80           programming_error ("[XY]-offset-callbacks must be a list");
81         }
82
83       SCM cb = get_grob_property (enames[a]);
84
85       /*
86         Should change default to be empty? 
87       */
88       if (cb != SCM_BOOL_F && !gh_procedure_p (cb) && !gh_pair_p (cb))
89         cb = molecule_extent_proc;
90     
91       dim_cache_[a].dimension_ = cb;
92     }
93
94   SCM meta = get_grob_property ("meta");
95   if (gh_pair_p (meta))
96     {
97       SCM ifs = scm_assoc (ly_symbol2scm ("interfaces"), meta);
98   
99       set_grob_property ("interfaces",ly_cdr (ifs));
100     }
101 }
102
103 Grob::Grob (Grob const&s)
104    : dim_cache_ (s.dim_cache_)
105 {
106   original_l_ = (Grob*) &s;
107   immutable_property_alist_ = s.immutable_property_alist_;
108   mutable_property_alist_ = SCM_EOL;
109   
110   status_c_ = s.status_c_;
111   pscore_l_ = s.pscore_l_;
112
113   smobify_self ();
114 }
115
116 Grob::~Grob ()
117 {
118   /*
119     do nothing scm-ish and no unprotecting here.
120    */
121 }
122
123
124 SCM
125 Grob::internal_get_grob_property (SCM sym) const
126 {
127   SCM s = scm_sloppy_assq (sym, mutable_property_alist_);
128   if (s != SCM_BOOL_F)
129     return ly_cdr (s);
130
131   s = scm_sloppy_assq (sym, immutable_property_alist_);
132   return (s == SCM_BOOL_F) ? SCM_EOL : ly_cdr (s); 
133 }
134
135 /*
136   Remove the value associated with KEY, and return it. The result is
137   that a next call will yield SCM_EOL (and not the underlying
138   `basic' property.
139 */
140 SCM
141 Grob::remove_grob_property (const char* key)
142 {
143   SCM val = get_grob_property (key);
144   if (val != SCM_EOL)
145     set_grob_property (key, SCM_EOL);
146   return val;
147 }
148
149
150 #if 0
151 /*
152   Puts the k, v in the immutable_property_alist_, which is convenient for
153   storing variables that are needed during the breaking process. (eg.
154   Line_of_score::rank : int)
155  */
156 void
157 Grob::set_immutable_grob_property (const char*k, SCM v)
158 {
159   SCM s = ly_symbol2scm (k);
160   set_immutable_grob_property (s, v);
161 }
162
163 void
164 Grob::set_immutable_grob_property (SCM s, SCM v)
165 {
166   immutable_property_alist_ = gh_cons (gh_cons (s,v), mutable_property_alist_);
167   mutable_property_alist_ = scm_assq_remove_x (mutable_property_alist_, s);
168 }
169 #endif
170
171
172 void
173 Grob::internal_set_grob_property (SCM s, SCM v)
174 {
175   mutable_property_alist_ = scm_assq_set_x (mutable_property_alist_, s, v);
176 }
177
178
179 MAKE_SCHEME_CALLBACK (Grob,molecule_extent,2);
180 SCM
181 Grob::molecule_extent (SCM element_smob, SCM scm_axis)
182 {
183   Grob *s = unsmob_grob (element_smob);
184   Axis a = (Axis) gh_scm2int (scm_axis);
185
186   Molecule *m = s->get_molecule ();
187   Interval e ;
188   if (m)
189     e = m->extent (a);
190   return ly_interval2scm (e);
191 }
192
193 MAKE_SCHEME_CALLBACK (Grob,preset_extent,2);
194
195 SCM
196 Grob::preset_extent (SCM element_smob, SCM scm_axis)
197 {
198   Grob *s = unsmob_grob (element_smob);
199   Axis a = (Axis) gh_scm2int (scm_axis);
200
201   SCM ext = s->get_grob_property ((a == X_AXIS)
202                                  ? "extent-X"
203                                  : "extent-Y");
204   
205   if (gh_pair_p (ext))
206     {
207       Real l = gh_scm2double (ly_car (ext));
208       Real r = gh_scm2double (ly_cdr (ext));
209       return ly_interval2scm (Interval (l, r));
210     }
211   
212   return ly_interval2scm (Interval ());
213 }
214
215
216
217 Paper_def*
218 Grob::paper_l ()  const
219 {
220  return pscore_l_ ? pscore_l_->paper_l_ : 0;
221 }
222
223 void
224 Grob::calculate_dependencies (int final, int busy, SCM funcname)
225 {
226   if (status_c_ >= final)
227     return;
228
229   if (status_c_== busy)
230     {
231       programming_error ("Element is busy, come back later");
232       return;
233     }
234   
235   status_c_= busy;
236
237   for (SCM d=  get_grob_property ("dependencies"); gh_pair_p (d); d = ly_cdr (d))
238     {
239       unsmob_grob (ly_car (d))
240         ->calculate_dependencies (final, busy, funcname);
241     }
242
243   // ughugh.
244   String s = ly_symbol2string (funcname);
245   SCM proc = get_grob_property (s.ch_C ());
246   if (gh_procedure_p (proc))
247     gh_call1 (proc, this->self_scm ());
248   
249   status_c_= final;
250
251 }
252
253 Molecule *
254 Grob::get_molecule ()  const
255 {
256   SCM mol = get_grob_property ("molecule");
257   if (unsmob_molecule (mol))
258     return unsmob_molecule (mol);
259
260   mol =  get_uncached_molecule ();
261   
262   Grob *me = (Grob*)this;
263   me->set_grob_property ("molecule", mol);
264   
265   return unsmob_molecule (mol);  
266 }
267 SCM
268 Grob::get_uncached_molecule ()const
269 {
270   SCM proc = get_grob_property ("molecule-callback");
271
272   SCM  mol = SCM_EOL;
273   if (gh_procedure_p (proc)) 
274     mol = gh_apply (proc, scm_list_n (this->self_scm (), SCM_UNDEFINED));
275
276   
277   Molecule *m = unsmob_molecule (mol);
278   
279   if (unsmob_molecule (mol))
280     {
281       /*
282         TODO: add option for not copying origin info. 
283       */
284       SCM origin =get_grob_property ("origin");
285       if (!unsmob_input (origin))
286         origin =ly_symbol2scm ("no-origin");
287       
288       
289       // ugr.
290       
291       mol = Molecule (m->extent_box (),
292                       scm_list_n (origin, m->get_expr (), SCM_UNDEFINED)
293                       ). smobbed_copy ();
294
295       m = unsmob_molecule (mol);
296     }
297   
298   /*
299     transparent retains dimensions of element.
300    */
301   if (m && to_boolean (get_grob_property ("transparent")))
302     mol = Molecule (m->extent_box (), SCM_EOL).smobbed_copy ();
303
304   return mol;
305 }
306
307 /*
308   
309   VIRTUAL STUBS
310
311  */
312 void
313 Grob::do_break_processing ()
314 {
315 }
316
317
318
319
320
321
322 Line_of_score *
323 Grob::line_l () const
324 {
325   return 0;
326 }
327
328 void
329 Grob::add_dependency (Grob*e)
330 {
331   if (e)
332     {
333       Pointer_group_interface ::add_element (this, "dependencies",e);
334
335     }
336   else
337     programming_error ("Null dependency added");
338 }
339
340
341
342
343 /**
344       Do break substitution in S, using CRITERION. Return new value.
345       CRITERION is either a SMOB pointer to the desired line, or a number
346       representing the break direction. Do not modify SRC.
347
348       It is rather tightly coded, since it takes a lot of time; it is
349       one of the top functions in the profile.
350
351 */
352 SCM
353 Grob::handle_broken_grobs (SCM src, SCM criterion)
354 {
355  again:
356   Grob *sc = unsmob_grob (src);
357   if (sc)
358     {
359       if (SCM_INUMP (criterion))
360         {
361           Item * i = dynamic_cast<Item*> (sc);
362           Direction d = to_dir (criterion);
363           if (i && i->break_status_dir () != d)
364             {
365               Item *br = i->find_prebroken_piece (d);
366               return (br) ? br->self_scm () : SCM_UNDEFINED;
367             }
368         }
369       else
370         {
371           Line_of_score * line
372             = dynamic_cast<Line_of_score*> (unsmob_grob (criterion));
373           if (sc->line_l () != line)
374             {
375               sc = sc->find_broken_piece (line);
376
377             }
378
379           /* now: !sc || (sc && sc->line_l () == line) */
380           if (!sc)
381             return SCM_UNDEFINED;
382
383           /* now: sc && sc->line_l () == line */
384           if (!line)
385             return sc->self_scm();
386               /*
387                 This was introduced in 1.3.49 as a measure to prevent
388                 programming errors. It looks expensive (?). TODO:
389                 benchmark , document when (what kind of programming
390                 errors) this happens.
391                */
392           if (sc->common_refpoint (line, X_AXIS)
393                && sc->common_refpoint (line, Y_AXIS))
394             {
395               return sc->self_scm ();
396             }
397           return SCM_UNDEFINED;
398         }
399     }
400   else if (SCM_CONSP (src))
401     {
402       SCM oldcar =ly_car (src);
403       /*
404         UGH! breaks on circular lists.
405       */
406       SCM newcar = handle_broken_grobs (oldcar, criterion);
407       SCM oldcdr = ly_cdr (src);
408       
409       if (newcar == SCM_UNDEFINED
410           && (gh_pair_p (oldcdr) || oldcdr == SCM_EOL))
411         {
412           /*
413             This is tail-recursion, ie. 
414             
415             return handle_broken_grobs (cdr, criterion);
416
417             We don't want to rely on the compiler to do this.  Without
418             tail-recursion, this easily crashes with a stack overflow.  */
419           src =  oldcdr;
420           goto again;
421         }
422
423       SCM newcdr = handle_broken_grobs (oldcdr, criterion);
424       return scm_cons (newcar, newcdr);
425     }
426   else
427     return src;
428
429   return src;
430 }
431
432 void
433 Grob::handle_broken_dependencies ()
434 {
435   Spanner * s= dynamic_cast<Spanner*> (this);
436   if (original_l_ && s)
437     return;
438
439   if (s)
440     {
441       for (int i = 0;  i< s->broken_into_l_arr_ .size (); i++)
442         {
443           Grob * sc = s->broken_into_l_arr_[i];
444           Line_of_score * l = sc->line_l ();
445           sc->mutable_property_alist_ =
446             handle_broken_grobs (mutable_property_alist_,
447                                  l ? l->self_scm () : SCM_UNDEFINED);
448         }
449     }
450
451
452   Line_of_score *line = line_l ();
453
454   if (line && common_refpoint (line, X_AXIS) && common_refpoint (line, Y_AXIS))
455     {
456       mutable_property_alist_
457         = handle_broken_grobs (mutable_property_alist_,
458                                line ? line->self_scm () : SCM_UNDEFINED);
459     }
460   else if (dynamic_cast <Line_of_score*> (this))
461     {
462       mutable_property_alist_ = handle_broken_grobs (mutable_property_alist_,
463                                             SCM_UNDEFINED);
464     }
465   else
466     {
467       /*
468         This element is `invalid'; it has been removed from all
469         dependencies, so let's junk the element itself.
470
471         do not do this for Line_of_score, since that would remove
472         references to the originals of score-elts, which get then GC'd
473  (a bad thing.)
474       */
475       suicide ();
476     }
477 }
478
479 /*
480  Note that we still want references to this element to be
481  rearranged, and not silently thrown away, so we keep pointers
482  like {broken_into_{drul,array}, original}
483 */
484 void
485 Grob::suicide ()
486 {
487   mutable_property_alist_ = SCM_EOL;
488   immutable_property_alist_ = SCM_EOL;
489
490   set_extent_callback (SCM_EOL, Y_AXIS);
491   set_extent_callback (SCM_EOL, X_AXIS);
492
493   for (int a= X_AXIS; a <= Y_AXIS; a++)
494     {
495       dim_cache_[a].offset_callbacks_ = SCM_EOL;
496       dim_cache_[a].offsets_left_ = 0;
497     }
498 }
499
500 void
501 Grob::handle_prebroken_dependencies ()
502 {
503 }
504
505 Grob*
506 Grob::find_broken_piece (Line_of_score*) const
507 {
508   return 0;
509 }
510
511 void
512 Grob::translate_axis (Real y, Axis a)
513 {
514   if (isinf (y) || isnan (y))
515     programming_error (_ (INFINITY_MSG));
516   else
517     {
518       dim_cache_[a].offset_ += y;
519     }
520 }  
521
522 Real
523 Grob::relative_coordinate (Grob const*refp, Axis a) const
524 {
525   if (refp == this)
526     return 0.0;
527
528   /*
529     We catch PARENT_L_ == nil case with this, but we crash if we did
530     not ask for the absolute coordinate (ie. REFP == nil.)
531     
532    */
533   if (refp == dim_cache_[a].parent_l_)
534     return get_offset (a);
535   else
536     return get_offset (a) + dim_cache_[a].parent_l_->relative_coordinate (refp, a);
537 }
538
539 Real
540 Grob::get_offset (Axis a) const
541 {
542   Grob *me = (Grob*) this;
543   while (dim_cache_[a].offsets_left_)
544     {
545       int l = --me->dim_cache_[a].offsets_left_;
546       SCM cb = scm_list_ref (dim_cache_[a].offset_callbacks_,  gh_int2scm (l));
547       SCM retval = gh_call2 (cb, self_scm (), gh_int2scm (a));
548
549       Real r =  gh_scm2double (retval);
550       if (isinf (r) || isnan (r))
551         {
552           programming_error (INFINITY_MSG);
553           r = 0.0;
554         }
555       me->dim_cache_[a].offset_ +=r;
556     }
557   return dim_cache_[a].offset_;
558 }
559
560
561 MAKE_SCHEME_CALLBACK (Grob,point_dimension_callback,2);
562 SCM
563 Grob::point_dimension_callback (SCM , SCM)
564 {
565   return ly_interval2scm (Interval (0,0));
566 }
567
568 bool
569 Grob::empty_b (Axis a)const
570 {
571   return ! (gh_pair_p (dim_cache_[a].dimension_) ||
572             gh_procedure_p (dim_cache_[a].dimension_));
573 }
574
575 /*
576   TODO: add
577
578     Grob *refpoint
579
580   to arguments?
581  */
582 Interval
583 Grob::extent (Grob * refp, Axis a) const
584 {
585   Real x = relative_coordinate (refp, a);
586
587   
588   Dimension_cache * d = (Dimension_cache *)&dim_cache_[a];
589   Interval ext ;   
590   if (gh_pair_p (d->dimension_))
591     ;
592   else if (gh_procedure_p (d->dimension_))
593     {
594       /*
595         FIXME: add doco on types, and should typecheck maybe? 
596        */
597       d->dimension_= gh_call2 (d->dimension_, self_scm (), gh_int2scm (a));
598     }
599   else
600     return ext;
601
602   if (!gh_pair_p (d->dimension_))
603     return ext;
604   
605   ext = ly_scm2interval (d->dimension_);
606
607   SCM extra = get_grob_property (a == X_AXIS
608                                 ? "extra-extent-X"
609                                 : "extra-extent-Y");
610
611   /*
612     signs ?
613    */
614   if (gh_pair_p (extra))
615     {
616       ext[BIGGER] +=  gh_scm2double (ly_cdr (extra));
617       ext[SMALLER] +=   gh_scm2double (ly_car (extra));
618     }
619   
620   extra = get_grob_property (a == X_AXIS
621                                 ? "minimum-extent-X"
622                                 : "minimum-extent-Y");
623   if (gh_pair_p (extra))
624     {
625       ext.unite (Interval (gh_scm2double (ly_car (extra)),
626                            gh_scm2double (ly_cdr (extra))));
627     }
628
629   ext.translate (x);
630   
631   return ext;
632 }
633
634 Grob * 
635 Grob::common_refpoint (Grob const* s, Axis a) const
636 {
637   /*
638     I don't like the quadratic aspect of this code, but I see no other
639     way. The largest chain of parents might be 10 high or so, so
640     it shouldn't be a real issue. */
641   for (Grob const *c = this; c; c = c->dim_cache_[a].parent_l_)
642     for (Grob const * d = s; d; d = d->dim_cache_[a].parent_l_)
643       if (d == c)
644         return (Grob*)d;
645
646   return 0;
647 }
648
649
650 Grob *
651 Grob::common_refpoint (SCM elist, Axis a) const
652 {
653   Grob * common = (Grob*) this;
654   for (; gh_pair_p (elist); elist = ly_cdr (elist))
655     {
656       Grob * s = unsmob_grob (ly_car (elist));
657       if (s)
658         common = common->common_refpoint (s, a);
659     }
660
661   return common;
662 }
663
664 String
665 Grob::name () const
666 {
667   SCM meta = get_grob_property ("meta");
668   SCM nm = scm_assoc (ly_symbol2scm ("name"), meta);
669   nm = (gh_pair_p (nm)) ? ly_cdr (nm) : SCM_EOL;
670   return  gh_symbol_p (nm) ? ly_symbol2string (nm) :  classname (this);  
671 }
672
673 void
674 Grob::add_offset_callback (SCM cb, Axis a)
675 {
676   if (!has_offset_callback_b (cb, a))
677   {
678     dim_cache_[a].offset_callbacks_ = gh_cons (cb, dim_cache_[a].offset_callbacks_);
679     dim_cache_[a].offsets_left_ ++;
680   }
681 }
682
683 bool
684 Grob::has_extent_callback_b (SCM cb, Axis a)const
685 {
686   return scm_equal_p (cb, dim_cache_[a].dimension_) == SCM_BOOL_T;
687 }
688
689
690 bool
691 Grob::has_extent_callback_b (Axis a) const
692 {
693   return gh_procedure_p (dim_cache_[a].dimension_);
694 }
695
696 bool
697 Grob::has_offset_callback_b (SCM cb, Axis a)const
698 {
699   return scm_memq (cb, dim_cache_[a].offset_callbacks_) != SCM_BOOL_F;
700 }
701
702 void
703 Grob::set_extent_callback (SCM dc, Axis a)
704 {
705   dim_cache_[a].dimension_ =dc;
706 }
707
708 void
709 Grob::set_parent (Grob *g, Axis a)
710 {
711   dim_cache_[a].parent_l_ = g;
712 }
713
714 MAKE_SCHEME_CALLBACK (Grob,fixup_refpoint,1);
715 SCM
716 Grob::fixup_refpoint (SCM smob)
717 {
718   Grob *me = unsmob_grob (smob);
719   for (int a = X_AXIS; a < NO_AXES; a ++)
720     {
721       Axis ax = (Axis)a;
722       Grob * parent = me->parent_l (ax);
723
724       if (!parent)
725         continue;
726       
727       if (parent->line_l () != me->line_l () && me->line_l ())
728         {
729           Grob * newparent = parent->find_broken_piece (me->line_l ());
730           me->set_parent (newparent, ax);
731         }
732
733       if (Item * i  = dynamic_cast<Item*> (me))
734         {
735           Item *parenti = dynamic_cast<Item*> (parent);
736
737           if (parenti && i)
738             {
739               Direction  my_dir = i->break_status_dir () ;
740               if (my_dir!= parenti->break_status_dir ())
741                 {
742                   Item *newparent =  parenti->find_prebroken_piece (my_dir);
743                   me->set_parent (newparent, ax);
744                 }
745             }
746         }
747     }
748   return smob;
749 }
750
751
752
753 /****************************************************
754   SMOB funcs
755  ****************************************************/
756
757
758
759 IMPLEMENT_SMOBS (Grob);
760 IMPLEMENT_DEFAULT_EQUAL_P (Grob);
761
762 SCM
763 Grob::mark_smob (SCM ses)
764 {
765   Grob * s = (Grob*) SCM_CELL_WORD_1 (ses);
766   scm_gc_mark (s->immutable_property_alist_);
767   scm_gc_mark (s->mutable_property_alist_);
768
769   for (int a =0 ; a < 2; a++)
770     {
771       scm_gc_mark (s->dim_cache_[a].offset_callbacks_);
772       scm_gc_mark (s->dim_cache_[a].dimension_);
773       Grob *p = s->parent_l (Y_AXIS);
774       if (p)
775         scm_gc_mark (p->self_scm ());
776     }
777   
778   if (s->original_l_)
779     scm_gc_mark (s->original_l_->self_scm ());
780
781   return s->do_derived_mark ();
782 }
783
784 int
785 Grob::print_smob (SCM s, SCM port, scm_print_state *)
786 {
787   Grob *sc = (Grob *) ly_cdr (s);
788      
789   scm_puts ("#<Grob ", port);
790   scm_puts ((char *)sc->name ().ch_C (), port);
791
792   /*
793     don't try to print properties, that is too much hassle.
794    */
795   scm_puts (" >", port);
796   return 1;
797 }
798
799 SCM
800 Grob::do_derived_mark ()
801 {
802   return SCM_EOL;
803 }
804
805
806 SCM
807 ly_set_grob_property (SCM elt, SCM sym, SCM val)
808 {
809   Grob * sc = unsmob_grob (elt);
810
811   if (!gh_symbol_p (sym))
812     {
813       error ("Not a symbol");
814       ly_display_scm (sym);
815       return SCM_UNSPECIFIED;
816     }
817
818   if (sc)
819     {
820       sc->internal_set_grob_property (sym, val);
821     }
822   else
823     {
824       error ("Not a score element");
825       ly_display_scm (elt);
826     }
827
828   return SCM_UNSPECIFIED;
829 }
830
831
832 SCM
833 ly_get_grob_property (SCM elt, SCM sym)
834 {
835   Grob * sc = unsmob_grob (elt);
836   
837   if (sc)
838     {
839       return sc->internal_get_grob_property (sym);
840     }
841   else
842     {
843       error ("Not a score element");
844       ly_display_scm (elt);
845     }
846   return SCM_UNSPECIFIED;
847 }
848
849
850 void
851 Grob::discretionary_processing ()
852 {
853 }
854
855
856
857 SCM
858 spanner_get_bound (SCM slur, SCM dir)
859 {
860   return dynamic_cast<Spanner*> (unsmob_grob (slur))->get_bound (to_dir (dir))->self_scm ();
861 }
862
863
864
865
866 static void
867 init_functions ()
868 {
869   scm_c_define_gsubr ("ly-get-grob-property", 2, 0, 0,
870                       (Scheme_function_unknown)ly_get_grob_property);
871   scm_c_define_gsubr ("ly-set-grob-property", 3, 0, 0,
872                       (Scheme_function_unknown)ly_set_grob_property);
873   scm_c_define_gsubr ("ly-get-spanner-bound", 2 , 0, 0,
874                       (Scheme_function_unknown) spanner_get_bound);
875 }
876
877 bool
878 Grob::has_interface (SCM k)
879 {
880   SCM ifs = get_grob_property ("interfaces");
881
882   return scm_memq (k, ifs) != SCM_BOOL_F;
883 }
884
885 void
886 Grob::set_interface (SCM k)
887 {
888   if (has_interface (k))
889     return ;
890   else
891     {
892       set_grob_property ("interfaces",
893                          gh_cons (k, get_grob_property ("interfaces")));
894     }
895 }
896
897
898 ADD_SCM_INIT_FUNC (scoreelt, init_functions);
899 IMPLEMENT_TYPE_P (Grob, "ly-grob?");