]> git.donarmstrong.com Git - lilypond.git/blob - lily/axis-group-interface.cc
* scm/define-grobs.scm (all-grob-descriptions): reorganize in
[lilypond.git] / lily / axis-group-interface.cc
1 /*
2   axis-group-interface.cc -- implement Axis_group_interface
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2000--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "axis-group-interface.hh"
10
11 #include "hara-kiri-group-spanner.hh"
12 #include "warn.hh"
13
14 void
15 Axis_group_interface::add_element (Grob *me, Grob *e)
16 {
17   SCM axes = me->get_property ("axes");
18   if (!scm_is_pair (axes))
19     programming_error ("axes should be nonempty");
20   
21   for (SCM ax = axes; ax != SCM_EOL; ax = scm_cdr (ax))
22     {
23       Axis a = (Axis) scm_to_int (scm_car (ax));
24
25       if (!e->get_parent (a))
26         e->set_parent (me, a);
27
28       e->internal_set_property ((a == X_AXIS)
29                                 ? ly_symbol2scm ("axis-group-parent-X")
30                                 : ly_symbol2scm ("axis-group-parent-Y"),
31                                 me->self_scm ());
32     }
33
34   Pointer_group_interface::add_grob (me, ly_symbol2scm ("elements"), e);
35   me->add_dependency (e);
36 }
37
38 bool
39 Axis_group_interface::has_axis (Grob *me, Axis a)
40 {
41   /*
42     urg. FIXME, check for Hara_kiri_group_spanner shouldn't be necessary?
43   */
44   return me->has_extent_callback (group_extent_callback_proc, a)
45     || (me->has_extent_callback (Hara_kiri_group_spanner::y_extent_proc, a));
46 }
47
48 Interval
49 Axis_group_interface::relative_group_extent (SCM elts, Grob *common, Axis a)
50 {
51   Interval r;
52   for (SCM s = elts; scm_is_pair (s); s = scm_cdr (s))
53     {
54       Grob *se = unsmob_grob (scm_car (s));
55       Interval dims = se->extent (common, a);
56       if (!dims.is_empty ())
57         r.unite (dims);
58     }
59   return r;
60 }
61
62
63
64 MAKE_SCHEME_CALLBACK (Axis_group_interface, group_extent_callback, 2);
65 SCM
66 Axis_group_interface::group_extent_callback (SCM element_smob, SCM scm_axis)
67 {
68   Grob *me = unsmob_grob (element_smob);
69   Axis a = (Axis) scm_to_int (scm_axis);
70
71   SCM elts = me->get_property ("elements");
72   Grob *common = common_refpoint_of_list (elts, me, a);
73
74   Real my_coord = me->relative_coordinate (common, a);
75   Interval r (relative_group_extent (elts, common, a));
76
77   return ly_interval2scm (r - my_coord);
78 }
79
80 void
81 Axis_group_interface::set_axes (Grob *me, Axis a1, Axis a2)
82 {
83   SCM sa1 = scm_int2num (a1);
84   SCM sa2 = scm_int2num (a2);
85
86   SCM axes = me->get_property ("axes");
87
88   if (!scm_is_pair (axes)
89       || scm_c_memq (sa1, axes) == SCM_BOOL_F
90       || scm_c_memq (sa2, axes) == SCM_BOOL_F)
91     {
92       SCM ax = scm_cons (sa1, SCM_EOL);
93       if (a1 != a2)
94         ax = scm_cons (sa2, ax);
95       me->set_property ("axes", ax);
96     }
97
98   if (a1 != X_AXIS && a2 != X_AXIS)
99     me->set_extent (SCM_EOL, X_AXIS);
100   if (a1 != Y_AXIS && a2 != Y_AXIS)
101     me->set_extent (SCM_EOL, Y_AXIS);
102
103   /*
104     why so convoluted ? (fixme/documentme?)
105   */
106   if (me->has_extent_callback (Grob::stencil_extent_proc, a1))
107     me->set_extent_callback (Axis_group_interface::group_extent_callback_proc, a1);
108   if (me->has_extent_callback (Grob::stencil_extent_proc, a2))
109     me->set_extent_callback (Axis_group_interface::group_extent_callback_proc, a2);
110 }
111
112 Link_array<Grob>
113 Axis_group_interface::get_children (Grob *me)
114 {
115   Link_array<Grob> childs;
116   childs.push (me);
117
118   if (!has_interface (me))
119     return childs;
120
121   for (SCM ep = me->get_property ("elements"); scm_is_pair (ep); ep = scm_cdr (ep))
122     {
123       Grob *e = unsmob_grob (scm_car (ep));
124       if (e)
125         childs.concat (Axis_group_interface::get_children (e));
126     }
127
128   return childs;
129 }
130
131 ADD_INTERFACE (Axis_group_interface, "axis-group-interface",
132                "An object that groups other layout objects.",
133                "axes elements");