]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/translator.hh
release: 1.3.71
[lilypond.git] / lily / include / translator.hh
1 /*
2   translator.hh -- declare Translator
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef TRANSLATOR_HH
11 #define TRANSLATOR_HH
12
13 #include "global-ctor.hh"
14 #include "string.hh"
15 #include "lily-proto.hh"
16 #include "virtual-methods.hh"
17 #include "lily-guile.hh"
18 #include "parray.hh"
19 #include "input.hh"
20
21
22 /** Make some kind of #Element#s from Requests. Elements are made by
23   hierarchically grouped #Translator#s
24   */
25 class Translator : public Input {
26 public:
27   Music_output_def * output_def_l_;
28   String type_str_;
29   
30   virtual const char *name() const;
31   bool is_alias_b (String) const;
32     
33   VIRTUAL_COPY_CONS(Translator);
34   Translator (Translator const &);
35   Translator ();
36   virtual ~Translator ();
37   
38   Translator_group * daddy_trans_l_ ;
39  
40   void print () const;
41   
42   /**
43     try to fit the request in this engraver
44
45     @return
46     false: not noted,  not taken.
47
48     true: request swallowed. Don't try to put the request elsewhere.
49
50     */
51   bool try_music (Music*);
52   void pre_move_processing();
53   void add_processing ();
54   void creation_processing ();
55   void process_music();
56   void post_move_processing();
57   void removal_processing();
58   /**
59     ask daddy for a feature
60     */
61   Music_output_def *output_def_l () const;
62
63   SCM get_property (const char *) const;
64   SCM get_property (SCM symbol) const;
65   
66   virtual Moment now_mom () const;  
67
68 protected:
69   /*
70     UGH. Clean this up.
71    */
72    enum { 
73     ORPHAN,
74     VIRGIN,
75     CREATION_INITED,
76     MOVE_INITED,
77     ACCEPTED_REQS,
78     PROCESSED_REQS,
79     ACKED_REQS,
80     MOVE_DONE
81   } status;
82
83   /*    
84         @see{try_request}
85         Default: always return false
86         */
87   virtual void do_add_processing ();
88   virtual bool do_try_music (Music *req_l);
89   virtual void do_print () const;
90   virtual void do_pre_move_processing();
91   virtual void do_post_move_processing();
92   virtual void do_process_music () ;
93   virtual void do_creation_processing() ;
94   virtual void do_removal_processing();
95 };
96
97
98 /**
99   A macro to automate administration of translators.
100  */
101 #define ADD_THIS_TRANSLATOR(T)                          \
102 static void  _ ## T ## _adder () {\
103       T *t = new T;\
104       t->type_str_ = classname (t);\
105       add_translator (t);\
106 }\
107 ADD_GLOBAL_CTOR(_ ## T ## _adder);
108
109
110
111 extern Dictionary<Translator*> *global_translator_dict_p;
112 void add_translator (Translator*trans_p);
113
114 Translator*get_translator_l (String s);
115
116 #endif // TRANSLATOR_HH