]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/align-interface.hh
273dbc660ccb18dec8cd388c205f9c0298b4eeaa
[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--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #ifndef ALIGN_INTERFACE_HH
10 #define ALIGN_INTERFACE_HH
11
12 #include "lily-proto.hh"
13 #include "lily-guile.hh"
14 #include "std-vector.hh"
15
16 struct Align_interface
17 {
18   DECLARE_SCHEME_CALLBACK (calc_positioning_done, (SCM));
19   DECLARE_SCHEME_CALLBACK (stretch_after_break, (SCM element));
20   static void align_to_fixed_distance (Grob *, Axis a);
21   static void align_elements_to_extents (Grob *, Axis a);
22   static vector<Real> get_extents_aligned_translates (Grob *, vector<Grob*> const&,
23                                                       Axis a,
24                                                       bool safe, int start, int end);
25   static void set_ordered (Grob *);
26   static Axis axis (Grob *);
27   static void add_element (Grob *, Grob *);
28   static int get_count (Grob *, Grob *);
29
30   static bool has_interface (Grob *);
31
32   static Real get_pure_child_y_translation (Grob *, Grob *child, int start, int end);
33 };
34
35 Grob *find_fixed_alignment_parent (Grob *g);
36
37 #endif /* ALIGN_INTERFACE_HH */
38