]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/axis-group-interface.hh
* lily/system.cc (do_derived_mark): don't mark from object_alist_
[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 "pointer-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 (Link_array<Grob> const &list,
20                                          Grob *common, Axis);
21
22   static void add_element (Grob *me, Grob *);
23   static void set_axes (Grob *, Axis, Axis);
24   static bool has_axis (Grob *, Axis);
25   static void get_children (Grob *, Link_array<Grob> *);
26   static bool has_interface (Grob *);
27 };
28
29 #endif /* AXIS_GROUP_INTERFACE_HH */
30