lilypond-1.3.68
[lilypond.git] / lily / include / tie.hh
blob347c0be237a9f484fef722f3fb053eb69ef6c759
1 /*
2 tie.hh -- declare Tie
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
10 #ifndef TIE_HH
11 #define TIE_HH
13 #include "spanner.hh"
14 #include "rod.hh"
16 /**
17 Connect two noteheads.
19 class Tie : public Spanner
21 public:
22 Tie (SCM);
23 static void set_head (Score_element*,Direction, Item*head_l);
24 static void set_interface (Score_element*);
25 VIRTUAL_COPY_CONS(Score_element);
26 static Rhythmic_head* head (Score_element*,Direction) ;
27 static Real position_f (Score_element*) ;
28 static SCM brew_molecule (SCM);
29 static Direction get_default_dir(Score_element*) ;
30 static SCM after_line_breaking (SCM);
34 JUNKME
36 Array<Offset> get_encompass_offset_arr () const;
37 Bezier get_curve () const;
38 Drul_array<Real> dy_f_drul_;
39 Drul_array<Real> dx_f_drul_;
40 virtual Array<Rod> get_rods () const;
41 Array<Offset> get_controls () const;
44 #endif // TIE_HH