]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/group-interface.hh
e2303633dcac15232bcba3950b7ac65a6b9bb8e5
[lilypond.git] / lily / include / group-interface.hh
1 /*   
2   group-interface.hh -- declare Group_interface
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1999--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef GROUP_INTERFACE_HH
11 #define GROUP_INTERFACE_HH
12
13 #include "lily-proto.hh"
14 #include "string.hh"
15 #include "lily-guile.hh"
16 #include "smobs.hh"
17
18 /**
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.
22
23    todo: reename as list_interface?
24 */
25
26 struct Group_interface
27 {
28 public:
29   static int count (Grob*  , String);
30   static void add_thing (Grob*, String nm, SCM);
31 };
32
33 struct Pointer_group_interface : public Group_interface {
34 public:
35   static void add_element (Grob*, String nm, Grob*e);
36 };
37 /** 
38   Put all score elements of ELT's property called NAME into an array,
39   and return it.  */
40 template<class T>
41 Link_array<T>
42 Pointer_group_interface__extract_elements (Grob const *elt, T *, const char* name)
43 {
44   Link_array<T> arr;
45
46   for (SCM s = elt->get_grob_property (name); gh_pair_p (s); s = gh_cdr (s))
47     {
48       SCM e = gh_car (s);
49       arr.push (dynamic_cast<T*> (unsmob_grob (e)));
50     }
51
52   arr.reverse ();
53   return arr;
54 }
55
56
57
58
59 #endif /* GROUP_INTERFACE_HH */
60