]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/group-interface.hh
72bc892258ac1aa104e9ee398352dcb0a94727cf
[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--2000 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 Score_elements, but
21    sometimes it can be different things.
22
23    todo: reename as list_interface?
24 */
25
26 struct Group_interface
27 {
28   Score_element * elt_l_;
29   String name_;
30 public:
31   Group_interface (Score_element const*);
32   Group_interface (Score_element const*, String);
33   int count ();
34   void add_thing (SCM);
35   bool has_interface_b ();
36   void set_interface ();
37   void add_element (Score_element*);
38 };
39
40 Group_interface group (Score_element*);
41 Group_interface group (Score_element*, String);
42
43 /** 
44   Put all score elements of ELT's property called NAME into an array,
45   and return it.  */
46 template<class T>
47 Link_array<T>
48 Group_interface__extract_elements (Score_element const *elt, T *, String name)
49 {
50   Link_array<T> arr;
51
52   for (SCM s = elt->get_elt_property (name); gh_pair_p (s); s = gh_cdr (s))
53     {
54       SCM e = gh_car (s);
55       assert (SMOB_IS_TYPE_B(Score_element,e));
56       Score_element* se = SMOB_TO_TYPE(Score_element, e);
57       arr.push (dynamic_cast<T*> (se));
58     }
59
60   arr.reverse ();
61   return arr;
62 }
63
64
65
66
67 #endif /* GROUP_INTERFACE_HH */
68