]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/text-grav.hh
80540bae26a2d1f7deb36938767560fa9a8fe055
[lilypond.git] / lily / include / text-grav.hh
1 /*
2   text-grav.hh -- part of GNU LilyPond
3
4   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
5 */
6
7
8 #ifndef TEXTGRAV_HH
9 #define TEXTGRAV_HH
10 #include "engraver.hh"
11
12 class Text_engraver : public Engraver{
13     Text_item * text_p_;
14     Text_req * text_req_l_;
15     int dir_i_;
16     /* *************** */
17 protected:
18     virtual void set_feature (Feature);
19     virtual bool do_try_request (Request*);
20     virtual void do_process_requests();
21     virtual void do_pre_move_processing();
22     virtual void do_post_move_processing();
23     virtual void acknowledge_element (Score_elem_info);
24 public:
25     Text_engraver();
26     DECLARE_MY_RUNTIME_TYPEINFO;
27 };
28
29 #endif // TEXTGRAV_HH