]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/translator.hh
patch::: 1.3.108.jcn4
[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 #include "smobs.hh"
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   void init ();
27 public:
28   Music_output_def * output_def_l_;
29   String type_str_;
30   
31   virtual const char *name() const;
32   bool is_alias_b (String) const;
33     
34   VIRTUAL_COPY_CONS(Translator);
35   Translator (Translator const &);
36   Translator ();
37   
38   Translator_group * daddy_trans_l_ ;
39  
40
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 announces();
55   void post_move_processing();
56   void removal_processing();
57   /**
58     ask daddy for a feature
59     */
60   Music_output_def *output_def_l () const;
61
62   SCM get_property (const char *) const;
63   SCM get_property (SCM symbol) const;
64   
65   virtual Moment now_mom () const;  
66
67   /*
68     ugh: bubbled up from Translator_group. 
69    */
70   SCM simple_trans_list_;
71   SCM trans_group_list_;
72   SCM definition_;
73   
74   SCM properties_scm_;
75   DECLARE_SMOBS(Translator, dummy);
76 public:
77
78   virtual void do_add_processing ();
79   virtual bool do_try_music (Music *req_l);
80   virtual void do_pre_move_processing();
81   virtual void do_post_move_processing();
82   virtual void do_announces () ;
83   virtual void do_creation_processing() ;
84   virtual void do_removal_processing();
85 };
86
87
88 /**
89   A macro to automate administration of translators.
90  */
91 #define ADD_THIS_TRANSLATOR(T)                          \
92 static void  _ ## T ## _adder () {\
93       T *t = new T;\
94       t->type_str_ = classname (t);\
95       add_translator (t);\
96 }\
97 ADD_GLOBAL_CTOR(_ ## T ## _adder);
98
99
100
101 extern Dictionary<Translator*> *global_translator_dict_p;
102 void add_translator (Translator*trans_p);
103
104 Translator*get_translator_l (String s);
105 Translator *unsmob_translator (SCM);
106 #endif // TRANSLATOR_HH