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