]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/align-interface.hh
* Another grand 2003 update.
[lilypond.git] / lily / include / align-interface.hh
1 /*
2   align-interface.hh -- declare Align_interface
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c)  2000--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef ALIGN_INTERFACE_HH
11 #define ALIGN_INTERFACE_HH
12
13 #include "axes.hh"
14 #include "lily-proto.hh"
15 #include "lily-guile.hh"
16
17 struct Align_interface {
18   DECLARE_SCHEME_CALLBACK (alignment_callback, (SCM element, SCM axis));
19   DECLARE_SCHEME_CALLBACK (fixed_distance_alignment_callback, (SCM element, SCM axis));
20   static void align_to_fixed_distance (Grob*,Axis a);
21   static void align_elements_to_extents (Grob*,Axis a);
22   static void set_axis (Grob*,Axis);
23   static Axis axis (Grob*) ;
24   static void add_element (Grob*,Grob*, SCM callback);
25   static int get_count (Grob*,Grob*);
26
27   static bool has_interface (Grob*);
28 };
29
30 #endif /* ALIGN_INTERFACE_HH */
31