]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/context.hh
* lily/include/context.hh (class Context): make members protected.
[lilypond.git] / lily / include / context.hh
1 /*   
2      context.hh -- declare  Context
3
4      source file of the GNU LilyPond music typesetter
5
6      (c) 2004 Han-Wen Nienhuys <hanwen@xs4all.nl>
7  */
8
9 #ifndef CONTEXT_HH
10 #define CONTEXT_HH
11
12 #include "moment.hh"
13 #include "lily-proto.hh"
14
15
16 class Context
17 {
18   Scheme_hash_table *properties_dict () const;
19   Context (Context const &src);
20   
21   DECLARE_SMOBS (Context, dummy);
22
23   void terminate ();
24
25 private:
26   friend class Interpretation_context_handle;
27   int iterator_count_;
28   bool init_;
29   
30 protected:
31   Context * daddy_context_;
32   SCM definition_;
33   SCM properties_scm_;
34   SCM context_list_;
35   SCM accepts_list_;
36   SCM aliases_;
37   SCM implementation_;
38
39   friend class Context_def;
40 public:
41   SCM children_contexts () const { return context_list_; }
42   SCM default_child_context_name () const;
43
44   Translator_group* implementation () const;
45   Context * get_parent_context () const;
46   Context ();
47
48   /*
49     properties:
50    */
51   void execute_pushpop_property (SCM prop, SCM sym, SCM val);
52   SCM internal_get_property (SCM name_sym) const;
53   SCM properties_as_alist () const;
54   void internal_set_property (SCM var_sym, SCM value);  
55   Context *where_defined (SCM name_sym) const;
56   void unset_property (SCM var_sym);
57
58   
59   Context *remove_context (Context*trans);
60   void check_removal ();
61   String context_name () const;
62   Global_context * get_global_context () const;
63   
64   virtual Score_context * get_score_context () const;  
65   virtual Music_output_def *get_output_def () const;
66   virtual Moment now_mom () const;
67   virtual Context *get_default_interpreter ();
68
69   bool is_alias (SCM) const;
70   void add_alias (SCM); 
71   void add_context (Context *trans);
72   bool is_bottom_context () const;
73   bool is_removable () const;
74   bool try_music (Music *);
75
76   Context *find_create_context (SCM context_name,
77                                 String id, SCM ops);
78   Link_array<Context> path_to_acceptable_context (SCM alias,
79                                                   Music_output_def*) const;
80
81   String id_string_;
82 };
83
84 /*
85   Context arg? 
86  */
87
88 void apply_property_operations (Context*tg, SCM pre_init_ops);
89 void execute_pushpop_property (Context * trg, SCM prop, SCM eltprop, SCM val);
90 SCM updated_grob_properties (Context* tg, SCM sym);
91 Context * find_context_below (Context * where,
92                               SCM type_sym, String id);
93 bool melisma_busy (Context*);
94
95 Context *get_voice_to_lyrics (Context *lyrics);
96 Grob *get_current_note_head (Context * voice);
97 Context *unsmob_context (SCM);
98
99 DECLARE_UNSMOB(Context,context);
100
101 #endif /* CONTEXT_HH */
102