]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/tie.hh
a5553555a9fb2d5211b4319e358b98335d0f7d0f
[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--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef TIE_HH
11 #define TIE_HH
12
13 #include "lily-guile.hh"
14 #include "lily-proto.hh"
15
16
17 /*
18   heads -- pair of element pointers, pointing to the two heads of the
19   tie.  */
20 class Tie
21 {
22 public:
23   static void set_head (Score_element*,Direction, Item*head_l);
24   static void set_interface (Score_element*);
25   static bool has_interface (Score_element*);
26   static Score_element * head (Score_element*,Direction) ;
27   static Real position_f (Score_element*) ;
28   DECLARE_SCHEME_CALLBACK(brew_molecule, (SCM ));
29   static Direction get_default_dir(Score_element*) ;
30   static SCM get_control_points (SCM);
31   DECLARE_SCHEME_CALLBACK(set_spacing_rods, (SCM ));
32 };
33
34 #endif // TIE_HH