]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/align-interface.hh
release: 1.3.109
[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 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   static void do_side_processing (Grob*,Axis a);
20   static void set_axis (Grob*,Axis);
21   static Axis axis (Grob*) ;
22   static void add_element (Grob*,Grob*);
23   static int get_count (Grob*,Grob*);
24   static void set_interface (Grob*);
25   static bool has_interface (Grob*);
26   DECLARE_SCHEME_CALLBACK(center_on_element, (SCM element, SCM axis));
27 };
28
29 #endif /* ALIGN_INTERFACE_HH */
30