]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/engraver.hh
update for the lily-wins.py script.
[lilypond.git] / lily / include / engraver.hh
1 /*
2   engraver.hh -- declare Engraver
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1996--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef ENGRAVER_HH
11 #define ENGRAVER_HH
12
13 #include "lily-proto.hh"
14 #include "array.hh"
15 #include "event.hh"
16 #include "grob-info.hh"
17 #include "translator.hh"
18
19
20 /**
21   a struct which processes events, and creates the #Grob#s.
22   It may use derived classes. 
23   */
24 class Engraver : public virtual Translator {
25     
26   friend class Engraver_group_engraver;
27 protected:
28   /*
29     Call this when you're finished with ELEM_P.
30    */
31   virtual void typeset_grob (Grob*elem);
32   /*
33     take note of item/spanner
34     put item in spanner. Adjust local key; etc.
35
36     Default: ignore the info
37     */
38   virtual void acknowledge_grob (Grob_info) {}
39
40   /** Do things with stuff found in acknowledge_grob. Ugh. Should
41      be looped with acknowledge_grob.
42      
43    */
44   virtual void process_acknowledged_grobs () {}
45
46   virtual void announce_grob (Grob_info);
47   Engraver_group_engraver*get_daddy_engraver () const;
48
49 public:
50   /**
51     Announce element. Default: pass on to daddy. Utility
52     */
53   void announce_grob (Grob*, SCM cause);
54   
55   Score_engraver * get_score_engraver () const;
56   /**
57     override other ctor
58    */
59   TRANSLATOR_DECLARATIONS(Engraver);
60 };
61
62 #define make_item(x,cause) make_item_from_properties (this, ly_symbol2scm (x), cause)
63 #define make_spanner(x,cause) make_spanner_from_properties (this, ly_symbol2scm (x), cause)
64 Item* make_item_from_properties (Translator * tg, SCM x, SCM cause);
65 Spanner* make_spanner_from_properties (Translator * tg, SCM x, SCM cause);
66
67
68
69
70 #endif // ENGRAVER_HH