2 context-def.hh -- declare Context_def
4 source file of the GNU LilyPond music typesetter
6 (c) 2000--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
10 #define CONTEXT_DEF_HH
12 #include "std-vector.hh"
13 #include "lily-proto.hh"
16 #include "virtual-methods.hh"
20 The definition of a interpretation context as given in the
21 input. The lists are stored in order of definition.
27 these lists store the definition, in opposite order of entry
35 SCM translator_group_type_;
39 Input *origin () const;
40 void add_context_mod (SCM);
41 SCM get_default_child (SCM user_mods) const;
42 SCM get_context_name () const { return context_name_; }
43 SCM get_accepted (SCM user_mods) const;
44 SCM get_property_ops () const { return property_ops_; }
45 SCM get_translator_names (SCM) const;
46 SCM get_translator_group_type () const { return translator_group_type_; }
47 void set_acceptor (SCM accepts, bool add);
49 VIRTUAL_COPY_CONSTRUCTOR(Context_def, Context_def);
51 vector<Context_def*> path_to_acceptable_context (SCM type_string,
52 Output_def *, SCM) const;
53 Context *instantiate (SCM extra_ops);
55 SCM to_alist () const;
56 static SCM make_scm ();
58 void apply_default_property_operations (Context *);
61 DECLARE_SMOBS (Context_def);
63 Context_def (Context_def const &);
66 DECLARE_UNSMOB (Context_def, context_def);
68 #endif /* CONTEXT_DEF_HH */