]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/accidental-interface.hh
beeda174d0a2ed9015e9512514280f984add27e9
[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--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7
8  */
9
10 #ifndef ACCIDENTAL_INTERFACE_HH
11 #define ACCIDENTAL_INTERFACE_HH
12
13 #include "box.hh"
14 #include "lily-guile.hh"
15 #include "lily-proto.hh"
16
17
18 class Accidental_interface
19 {
20 public:
21   DECLARE_SCHEME_CALLBACK (print, (SCM));
22   DECLARE_SCHEME_CALLBACK (after_line_breaking, (SCM));  
23   static bool has_interface (Grob*);
24   
25   static String get_fontcharname(String style, int alteration);
26   static Array<Box> Accidental_interface::accurate_boxes (Grob *me,Grob**common);
27 };
28
29
30 #endif