]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/translator.hh
patch::: 1.3.108.jcn3
[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 creation_processing ();
55   void process_music();
56   void announces();
57   void post_move_processing();
58   void removal_processing();
59   /**
60     ask daddy for a feature
61     */
62   Music_output_def *output_def_l () const;
63
64   SCM get_property (const char *) const;
65   SCM get_property (SCM symbol) const;
66   
67   virtual Moment now_mom () const;  
68
69   /*
70     ugh: bubbled up from Translator_group. 
71    */
72   SCM simple_trans_list_;
73   SCM trans_group_list_;
74   SCM definition_;
75   
76   SCM properties_scm_;
77   DECLARE_SMOBS(Translator, dummy);
78 public:
79   /*
80     UGH. Clean this up.
81    */
82    enum { 
83     ORPHAN,
84     VIRGIN,
85     CREATION_INITED,
86     MOVE_INITED,
87     ACCEPTED_REQS,
88     PROCESSED_REQS,
89     ACKED_REQS,
90     MOVE_DONE
91   } status_;                    // junkme
92 protected:
93
94   /*    
95         @see{try_request}
96         Default: always return false
97         */
98   virtual void do_add_processing ();
99   virtual bool do_try_music (Music *req_l);
100   virtual void do_pre_move_processing();
101   virtual void do_post_move_processing();
102   void deprecated_process_music () ;
103   virtual void do_announces () ;
104   virtual void do_creation_processing() ;
105   virtual void do_removal_processing();
106 };
107
108
109 /**
110   A macro to automate administration of translators.
111  */
112 #define ADD_THIS_TRANSLATOR(T)                          \
113 static void  _ ## T ## _adder () {\
114       T *t = new T;\
115       t->type_str_ = classname (t);\
116       add_translator (t);\
117 }\
118 ADD_GLOBAL_CTOR(_ ## T ## _adder);
119
120
121
122 extern Dictionary<Translator*> *global_translator_dict_p;
123 void add_translator (Translator*trans_p);
124
125 Translator*get_translator_l (String s);
126 Translator *unsmob_translator (SCM);
127 #endif // TRANSLATOR_HH