]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/translator-group.hh
release: 1.5.19
[lilypond.git] / lily / include / translator-group.hh
1 /*
2   translator-group.hh -- declare Translator_group
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef TRANSLATOR_GROUP_HH
11 #define TRANSLATOR_GROUP_HH
12
13 #include "string.hh"
14 #include "lily-proto.hh"
15 #include "virtual-methods.hh"
16 #include "translator.hh"
17 #include "parray.hh"
18 #include "smobs.hh"
19
20 // egcs
21 typedef void (Translator::*Method_pointer) (void);
22 #define set_property(x,y) internal_set_property(ly_symbol2scm(x),y)
23
24 class Scheme_hash_table;
25
26
27 /** Make some kind of Elements from Requests. Elements are made by
28   hierarchically grouped Translators
29   */
30 class Translator_group : public virtual Translator {
31
32   Scheme_hash_table *properties_dict () const;
33   int iterator_count_;
34
35   friend class Interpretation_context_handle;
36 protected:
37   ~Translator_group ();
38 public:
39   SCM add_translator (SCM, Translator*);
40   void execute_single_pushpop_property (SCM prop, SCM sym, SCM val);
41   SCM internal_get_property (SCM name_sym) const;
42
43   void unset_property (SCM var_sym);
44   void internal_set_property (SCM var_sym, SCM value);  
45   Translator_group *where_defined (SCM name_sym) const;
46
47   String id_str_;
48
49   VIRTUAL_COPY_CONS (Translator);
50   Translator_group (Translator_group const &);
51   Translator_group ();
52   void add_group_translator (Translator *trans_p);
53   
54   /// Score_register = 0, Staff_registers = 1, etc)
55   Translator_group* ancestor_l (int l=1);
56   int depth_i () const;
57   bool is_bottom_translator_b () const;
58   bool removable_b () const;
59   void terminate_translator (Translator*r_l);
60   Translator *remove_translator_p (Translator*trans_l);
61   void check_removal ();
62   // Translator *get_simple_translator (String) const;
63   Translator_group *find_existing_translator_l (String n, String id);
64   Translator_group *find_create_translator_l (String n, String id);
65   Link_array<Translator_group> path_to_acceptable_translator (String alias, Music_output_def*) const;
66   Translator_group*get_default_interpreter ();
67
68 public:
69   bool try_music_on_nongroup_children (Music *m);
70   
71   virtual void do_announces ();
72   virtual bool try_music (Music* req_l);       
73   virtual void stop_translation_timestep ();
74   virtual void start_translation_timestep ();   
75   virtual void initialize ();
76   virtual void finalize ();
77   virtual void each (Method_pointer);
78 };
79
80 #endif // TRANSLATOR_GROUP_HH