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