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