]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/side-position-interface.hh
6d8563d434dfb656603e1cf5419c7059b085004f
[lilypond.git] / lily / include / side-position-interface.hh
1 /*   
2   side-position-interface.hh -- declare Side_position_interface
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1999--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef SIDE_POSITION_INTERFACE_HH
11 #define SIDE_POSITION_INTERFACE_HH
12
13 #include "spanner.hh"
14 #include "item.hh"
15
16
17 /**
18    Position victim object (ELT_L_) next to other objects (the support).
19
20    side-support -- list of score elements
21
22    direction -- where to put the victim object (left or right?)
23
24    side-relative-direction -- if set: get the direction from a different object, and multiply by this.
25    
26    direction-source -- in case side-relative-direction is set, where
27    to get the direction
28
29    minimum-space -- minimum distance that the victim should move
30    (after padding)
31
32    padding -- add this much extra space between victim and support
33
34    self-alignment-X -- real number: -1 = left aligned, 0 = center, 1
35      right-aligned in X direction.
36      
37    self-alignment-Y -- like self-alignment-X but for Y axis
38    
39    TODO: move  out unrelated callbacks.
40
41    TODO: reduce number of methods.
42
43 */
44 struct Side_position
45 {
46 public:
47   static Real side_position (Score_element *, Axis);
48   static Real aligned_on_self (Score_element *, Axis);
49   static Real aligned_side (Score_element *, Axis);  
50   static Real quantised_position (Score_element *, Axis);
51   static Real centered_on_parent (Score_element *, Axis);
52   static void set_axis (Score_element*,Axis);
53   static void set_minimum_space (Score_element*,Real);
54   static void set_padding (Score_element*,Real);
55   static Axis get_axis (Score_element*) ;
56   static bool supported_b (Score_element*) ;
57   static bool has_interface (Score_element*) ;
58   static void add_support (Score_element*,Score_element*);
59   static void add_staff_support (Score_element*);
60   static Direction get_direction (Score_element*);
61   static void set_direction (Score_element*,Direction);
62 };
63
64
65 #endif /* SIDE_POSITION_INTERFACE_HH */
66