]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/accidental-interface.hh
48091e3106a441b455e556c53e88f1f34b594367
[lilypond.git] / lily / include / accidental-interface.hh
1 /*   
2 accidental-interface.hh -- declare  Accidental_interface
3
4 source file of the GNU LilyPond music typesetter
5
6 (c)  2002--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7
8  */
9
10 #ifndef ACCIDENTAL_INTERFACE_HH
11 #define ACCIDENTAL_INTERFACE_HH
12
13 #include "grob.hh"
14
15 class Accidental_interface
16 {
17 public:
18   DECLARE_SCHEME_CALLBACK (brew_molecule, (SCM));
19   DECLARE_SCHEME_CALLBACK (after_line_breaking, (SCM));  
20   static bool has_interface (Grob*);
21   
22   static String get_fontcharname(String style, int alteration);
23   static Array<Box> Accidental_interface::accurate_boxes (Grob *me,Grob**common);
24 };
25
26
27 #endif