]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/axis-group-interface.hh
* lily/include/translator.icc: new file.
[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 "lily-proto.hh"
13 #include "lily-guile.hh"
14
15 /**
16  */
17 struct Axis_group_interface
18 {
19   DECLARE_SCHEME_CALLBACK (group_extent_callback, (SCM smob, SCM axis));
20   static Interval relative_group_extent (Link_array<Grob> const &list,
21                                          Grob *common, Axis);
22
23   static void add_element (Grob *me, Grob *);
24   static void set_axes (Grob *, Axis, Axis);
25   static bool has_axis (Grob *, Axis);
26   static void get_children (Grob *, Link_array<Grob> *);
27   static bool has_interface (Grob *);
28 };
29
30 #endif /* AXIS_GROUP_INTERFACE_HH */
31