]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/tie.hh
* lily/include/tie.hh (struct Tie_details): add x_gap_
[lilypond.git] / lily / include / tie.hh
1 /*
2   tie.hh -- declare Tie
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #ifndef TIE_HH
10 #define TIE_HH
11
12 #include "lily-guile.hh"
13 #include "lily-proto.hh"
14 #include "skyline.hh"
15
16
17
18 Interval
19 get_skyline_attachment (Drul_array< Array < Skyline_entry > > const &skylines,
20                         Real y1);
21
22 struct Tie_details
23 {
24   Real height_limit_;
25   Real ratio_;
26   Real staff_space_;
27   Real x_gap_;
28   
29   Tie_details ();
30   void init (Grob *);
31 };
32   
33 struct Tie_configuration
34 {
35   int head_position_;
36   int position_;
37   
38   Direction dir_;
39   Interval attachment_x_;
40   Real delta_y_;
41   
42   Tie_configuration ();
43   void center_tie_vertically (Tie_details const &);
44   Bezier get_bezier (Tie_details const &) const;
45   Real height (Tie_details const&) const;
46   
47   static int compare (Tie_configuration const &a,
48                       Tie_configuration const &b);
49   static Real distance (Tie_configuration const &a,
50                        Tie_configuration const &b);
51 };
52
53 INSTANTIATE_COMPARE (Tie_configuration, Tie_configuration::compare);
54
55 class Tie
56 {
57 public:
58   static void set_head (Grob *, Direction, Grob *head);
59   static bool has_interface (Grob *);
60   static void set_direction (Grob *);
61   static Grob *head (Grob *, Direction);
62   static int get_column_rank (Grob *, Direction);
63   static int get_position (Grob *);
64   static Direction get_default_dir (Grob *);
65   static void get_configuration (Grob *, Grob *, Tie_configuration *,
66                                  Drul_array< Array<Skyline_entry> > const *,
67                                  Tie_details const & 
68                                  );
69   static void set_control_points (Grob *, Grob *,Tie_configuration const&,
70                                   Tie_details const&
71                                   );
72   static void set_default_control_points (Grob *);
73   DECLARE_SCHEME_CALLBACK (print, (SCM));
74   DECLARE_SCHEME_CALLBACK (set_spacing_rods, (SCM));
75   static int compare (Grob *const &s1,
76                       Grob *const &s2);
77
78   static
79   Interval get_default_attachments (Spanner *me, Grob *common, Real gap,
80                                     int *staff_position, bool *in_between);
81   
82 };
83
84
85 #endif // TIE_HH