]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/context.hh
* lily/lyric-phrasing-engraver.cc: remove
[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 public:
25   SCM definition_;
26   SCM properties_scm_;
27   SCM context_list_;
28   SCM accepts_list_;
29   Context * daddy_context_;
30   
31   Context ();
32   void execute_pushpop_property (SCM prop, SCM sym, SCM val);
33   SCM internal_get_property (SCM name_sym) const;
34
35   Context *remove_context (Context*trans);
36   void check_removal ();
37
38   SCM properties_as_alist () const;
39   void unset_property (SCM var_sym);
40   void internal_set_property (SCM var_sym, SCM value);  
41
42   Context *where_defined (SCM name_sym) const;
43   String context_name () const;
44   Global_context * get_global_context () const;
45   
46   virtual Score_context * get_score_context () const;  
47   bool is_alias (SCM) const;
48   void add_context (Context *trans);
49   bool is_bottom_context () const;
50   bool is_removable () const;
51   bool try_music (Music *);
52   
53   virtual Music_output_def *get_output_def () const;
54   virtual Moment now_mom () const;
55   Context *find_existing_context (SCM context_name, String id);
56   Context *find_create_context (SCM context_name,
57                                             String id, SCM ops);
58   Link_array<Context> path_to_acceptable_context (SCM alias,
59                                                   Music_output_def*) const;
60   Context *get_default_interpreter ();
61   String id_string_;
62
63   SCM implementation_;
64 private:
65   friend class Interpretation_context_handle;
66   int iterator_count_;
67   bool init_;
68 };
69
70 /*
71   Context arg? 
72  */
73
74 void apply_property_operations (Context*tg, SCM pre_init_ops);
75 void execute_pushpop_property (Context * trg, SCM prop, SCM eltprop, SCM val);
76 SCM updated_grob_properties (Context* tg, SCM sym);
77 Context * find_context_below (Context * where,
78                     String type, String id);
79 bool melisma_busy (Context*);
80
81 Context *get_voice_to_lyrics (Context *lyrics);
82 Grob *get_current_note_head (Context * voice);
83 Context *unsmob_context (SCM);
84
85 DECLARE_UNSMOB(Context,context);
86
87 #endif /* CONTEXT_HH */
88