]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/accidental-placement.hh
5b59783ff0aa1856bcd8542a40f818c3539d9e30
[lilypond.git] / lily / include / accidental-placement.hh
1 /*   
2 accidental-placement.hh -- declare  Accidental_placement
3
4 source file of the GNU LilyPond music typesetter
5
6 (c) 2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7
8  */
9
10 #ifndef ACCIDENTAL_PLACEMENT_HH
11 #define ACCIDENTAL_PLACEMENT_HH
12
13 #include "grob.hh"
14
15 class Accidental_placement
16 {
17 public:
18   DECLARE_SCHEME_CALLBACK (alignment_callback, (SCM element, SCM axis));
19   DECLARE_SCHEME_CALLBACK (extent_callback, (SCM element, SCM axis));  
20   static void add_accidental (Grob *,Grob* );
21
22   
23   static SCM position_accidentals (Grob* );
24   static bool has_interface (Grob*);
25 };
26 #endif /* ACCIDENTAL_PLACEMENT_HH */
27