]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/accidental-interface.hh
Merge branch 'jneeman' of git+ssh://jneem@git.sv.gnu.org/srv/git/lilypond into jneeman
[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 "std-vector.hh"
13
14 #include "box.hh"
15 #include "lily-proto.hh"
16 #include "grob-interface.hh"
17
18 class Accidental_interface
19 {
20 public:
21   DECLARE_SCHEME_CALLBACK (print, (SCM));
22   DECLARE_SCHEME_CALLBACK (after_line_breaking, (SCM));
23   
24   DECLARE_GROB_INTERFACE();
25   static string get_fontcharname (string style, int alteration);
26   static vector<Box> accurate_boxes (Grob *me,
27                                                           Grob **common);
28 };
29
30 #endif