2 self-alignment-interface.cc -- implement Self_alignment_interface
4 source file of the GNU LilyPond music typesetter
6 (c) 2004--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
9 #include "self-alignment-interface.hh"
12 #include "paper-column.hh"
15 MAKE_SCHEME_CALLBACK (Self_alignment_interface, y_aligned_on_self, 1);
17 Self_alignment_interface::y_aligned_on_self (SCM element)
19 return aligned_on_self (unsmob_grob (element), Y_AXIS);
22 MAKE_SCHEME_CALLBACK (Self_alignment_interface, x_aligned_on_self, 1);
24 Self_alignment_interface::x_aligned_on_self (SCM element)
26 return aligned_on_self (unsmob_grob (element), X_AXIS);
30 Self_alignment_interface::aligned_on_self (Grob *me, Axis a)
32 SCM sym = (a == X_AXIS) ? ly_symbol2scm ("self-alignment-X")
33 : ly_symbol2scm ("self-alignment-Y");
35 SCM align (me->internal_get_property (sym));
36 if (scm_is_number (align))
38 Interval ext (me->extent (me, a));
40 programming_error ("cannot align on self: empty element");
42 return scm_from_double (- ext.linear_combination (scm_to_double (align)));
44 return scm_from_double (0.0);
50 Self_alignment_interface::centered_on_object (Grob *him, Axis a)
52 return scm_from_double (robust_relative_extent (him, him, a).center ());
56 MAKE_SCHEME_CALLBACK (Self_alignment_interface, centered_on_x_parent, 1);
58 Self_alignment_interface::centered_on_x_parent (SCM smob)
60 return centered_on_object (unsmob_grob (smob)->get_parent (X_AXIS), X_AXIS);
64 MAKE_SCHEME_CALLBACK (Self_alignment_interface, centered_on_y_parent, 1);
66 Self_alignment_interface::centered_on_y_parent (SCM smob)
68 return centered_on_object (unsmob_grob (smob)->get_parent (Y_AXIS), Y_AXIS);
72 MAKE_SCHEME_CALLBACK (Self_alignment_interface, x_centered_on_y_parent, 1);
74 Self_alignment_interface::x_centered_on_y_parent (SCM smob)
76 return centered_on_object (unsmob_grob (smob)->get_parent (Y_AXIS), X_AXIS);
79 MAKE_SCHEME_CALLBACK (Self_alignment_interface, aligned_on_x_parent,1);
81 Self_alignment_interface::aligned_on_x_parent (SCM smob)
83 return aligned_on_parent (unsmob_grob (smob), X_AXIS);
86 MAKE_SCHEME_CALLBACK (Self_alignment_interface, aligned_on_y_parent,1);
88 Self_alignment_interface::aligned_on_y_parent (SCM smob)
90 return aligned_on_parent (unsmob_grob (smob), Y_AXIS);
94 Self_alignment_interface::aligned_on_parent (Grob *me, Axis a)
96 Grob *him = me->get_parent (a);
97 if (Paper_column::has_interface (him))
98 return scm_from_double (0.0);
100 Interval he = him->extent (him, a);
102 SCM sym = (a == X_AXIS) ? ly_symbol2scm ("self-alignment-X")
103 : ly_symbol2scm ("self-alignment-Y");
104 SCM align_prop (me->internal_get_property (sym));
106 if (!scm_is_number (align_prop))
107 return scm_from_int (0);
110 Real align = scm_to_double (align_prop);
112 Interval ext (me->extent (me, a));
114 programming_error ("cannot align on self: empty element");
116 x -= ext.linear_combination (align);
119 x += he.linear_combination (align);
121 return scm_from_double (x);
125 Self_alignment_interface::set_center_parent (Grob *me, Axis a)
127 add_offset_callback (me,
128 (a==X_AXIS) ? centered_on_x_parent_proc : centered_on_y_parent_proc,
133 Self_alignment_interface::set_align_self (Grob *me, Axis a)
135 add_offset_callback (me,
136 (a==X_AXIS) ? x_aligned_on_self_proc : y_aligned_on_self_proc,
140 ADD_INTERFACE (Self_alignment_interface,
141 "Position this object on itself and/or on its parent. To this"
142 " end, the following functions are provided:\n"
145 "@item Self_alignment_interface::[xy]_aligned_on_self\n"
146 "Align self on reference point, using"
147 " @code{self-alignment-X} and @code{self-alignment-Y}."
148 "@item Self_alignment_interface::aligned_on_[xy]_parent\n"
149 "@item Self_alignment_interface::centered_on_[xy]_parent\n"
150 "Shift the object so its own reference point is centered on"
151 " the extent of the parent\n"