]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/tie-grav.hh
dc118c96e073fef0706212c786b5878e2f273618
[lilypond.git] / lily / include / tie-grav.hh
1 /*
2   tie-grav.hh -- declare Tie_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9
10 #ifndef TIE_GRAV_HH
11 #define TIE_GRAV_HH
12
13 #include "engraver.hh"
14
15 class Tie_engraver : public Engraver {
16     Tie * end_tie_p_;
17     Tie * tie_p_;
18     Moment end_mom_;
19     Tie_req * req_l_;
20     Direction dir_;
21     Tie_req *end_req_l_;
22     Melodic_req * end_melodic_req_l_;
23     Melodic_req  * melodic_req_l_;
24     
25 protected:
26     virtual void do_removal_processing ();
27     virtual void acknowledge_element (Score_elem_info);
28     virtual bool do_try_request (Request*);
29     virtual bool acceptable_request_b (Request*);
30     virtual void do_process_requests();
31     virtual void do_post_move_processing();
32     virtual void do_pre_move_processing();
33 public:
34 TRANSLATOR_CLONE(Tie_engraver);
35     Tie_engraver();
36     DECLARE_MY_RUNTIME_TYPEINFO;
37 };
38
39 #endif // TIE_GRAV_HH