]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/axis-group-interface.hh
* flower
[lilypond.git] / lily / include / axis-group-interface.hh
1 /*
2   axis-group-interface.hh -- declare 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 #ifndef AXIS_GROUP_INTERFACE_HH
10 #define AXIS_GROUP_INTERFACE_HH
11
12 #include "group-interface.hh"
13
14 /**
15  */
16 struct Axis_group_interface
17 {
18   DECLARE_SCHEME_CALLBACK (group_extent_callback, (SCM smob, SCM axis));
19   static Interval relative_group_extent (Axis, Grob *common, SCM list);
20
21   static void add_element (Grob *me, Grob *);
22   static void set_axes (Grob *, Axis, Axis);
23   static bool has_axis (Grob *, Axis);
24   static Link_array<Grob> get_children (Grob *);
25   static bool has_interface (Grob *);
26
27 };
28
29 #endif /* AXIS_GROUP_INTERFACE_HH */
30