2 group-interface.hh -- declare Group_interface
4 source file of the GNU LilyPond music typesetter
6 (c) 1999--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
10 #ifndef GROUP_INTERFACE_HH
11 #define GROUP_INTERFACE_HH
13 #include "lily-proto.hh"
15 #include "lily-guile.hh"
19 Look at Score element ELT as thing which has a list property called
20 NAME_. Normally the list would contain Grobs, but
21 sometimes it can be different things.
23 todo: reename as list_interface?
26 struct Group_interface
29 static int count (Grob* , String);
30 static void add_thing (Grob*, SCM, SCM);
31 static void add_thing (Grob*, String nm, SCM);
34 struct Pointer_group_interface : public Group_interface {
36 static void add_grob (Grob*, SCM nm, Grob*e);
41 Pointer_group_interface__extract_grobs (Grob const *elt, T *, const char* name)
45 for (SCM s = elt->get_grob_property (name); gh_pair_p (s); s = gh_cdr (s))
48 arr.push (dynamic_cast<T*> (unsmob_grob (e)));
58 #endif /* GROUP_INTERFACE_HH */