]> git.donarmstrong.com Git - lilypond.git/blob - lily/axis-group-element.cc
0bce567acaaaf952045d94141c0d6f69903ef693
[lilypond.git] / lily / axis-group-element.cc
1 /*
2   axis-group-element.cc -- implement Axis_group_element
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "axis-group-element.hh"
10 #include "graphical-axis-group.hh"
11
12
13
14 Link_array<Score_element>
15 Axis_group_element::get_extra_dependencies() const
16 {
17   return elem_l_arr ();
18 }
19
20 Link_array<Score_element>
21 Axis_group_element::elem_l_arr () const
22 {  
23   /*
24     ugh. I know
25   */
26   Link_array<Score_element> r;
27   for (int i=0; i < elem_l_arr_.size (); i++)
28     r.push (dynamic_cast<Score_element*>(elem_l_arr_[i]));
29       
30   return r;
31 }
32
33 Link_array<Score_element> 
34 Axis_group_element::get_children ()
35 {
36   Link_array<Score_element> childs;
37   Link_array<Score_element> elems = elem_l_arr ();
38   for (int i=0; i < elems.size (); i++) 
39     {
40       Score_element* e = elems[i];
41       childs.push (e) ;
42       Axis_group_element * axis_group= dynamic_cast <Axis_group_element *> (e);
43       if (axis_group)
44         childs.concat (axis_group->get_children ());      
45     }
46   
47   return childs;
48 }
49
50 void
51 Axis_group_element::do_print() const
52 {
53   Graphical_axis_group::do_print();
54 }
55
56 Axis_group_element::Axis_group_element(Axis a1, Axis a2)
57   : Graphical_axis_group (a1,a2)
58 {
59   set_elt_property (transparent_scm_sym, SCM_BOOL_T);
60 }
61
62 Axis_group_element::Axis_group_element ()
63   : Graphical_axis_group (X_AXIS, Y_AXIS)
64 {
65   set_elt_property (transparent_scm_sym, SCM_BOOL_T);
66 }
67
68
69