lilypond-1.3.16
[lilypond.git] / lily / include / engraver.hh
bloba073d808ac5fa300ee018ab3ded0bac738a5940f
1 /*
2 engraver.hh -- declare Engraver
4 source file of the GNU LilyPond music typesetter
6 (c) 1996, 1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
10 #ifndef ENGRAVER_HH
11 #define ENGRAVER_HH
13 #include "lily-proto.hh"
14 #include "array.hh"
15 #include "request.hh"
16 #include "score-element-info.hh"
17 #include "staff-info.hh"
18 #include "translator.hh"
21 /**
22 a struct which processes requests, and creates the #Score_element#s.
23 It may use derived classes. Hungarian postfix: grav
26 class Engraver : public virtual Translator {
28 friend class Engraver_group_engraver;
30 protected:
33 /// utility
34 Paper_def * paper_l() const;
35 /**
36 Invoke walker method to typeset element. Default: pass on to daddy.
38 virtual void typeset_element (Score_element*elem_p);
41 /**
42 take note of item/spanner
43 put item in spanner. Adjust local key; etc.
45 Default: ignore the info
47 virtual void acknowledge_element (Score_element_info) {}
49 /** Do things with stuff found in acknowledge_element. Ugh. Should
50 be looped with acknowledge_element.
53 virtual void process_acknowledged () {}
54 /**
55 Announce element. Default: pass on to daddy. Utility
57 virtual void announce_element (Score_element_info);
59 /**
60 Get information on the staff. Default: ask daddy.
62 virtual Staff_info get_staff_info() const;
63 virtual void fill_staff_info (Staff_info&);
65 public:
66 VIRTUAL_COPY_CONS(Translator);
67 Engraver_group_engraver * daddy_grav_l() const;
68 /**
69 override other ctor
71 Engraver () {}
77 #endif // ENGRAVER_HH