]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/accidental-interface.hh
* The grand 2005-2006 replace.
[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--2006 Han-Wen Nienhuys <hanwen@xs4all.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 class Accidental_interface
17 {
18 public:
19   DECLARE_SCHEME_CALLBACK (print, (SCM));
20   DECLARE_SCHEME_CALLBACK (after_line_breaking, (SCM));
21   
22   static bool has_interface (Grob *);
23   static String get_fontcharname (String style, int alteration);
24   static Array<Box> Accidental_interface::accurate_boxes (Grob *me,
25                                                           Grob **common);
26 };
27
28 #endif