]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/accidental-interface.hh
use classnames for interface naming; remove inclusion of
[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-guile.hh"
16 #include "lily-proto.hh"
17 #include "grob-interface.hh"
18
19 class Accidental_interface
20 {
21 public:
22   DECLARE_SCHEME_CALLBACK (print, (SCM));
23   DECLARE_SCHEME_CALLBACK (after_line_breaking, (SCM));
24   
25   DECLARE_GROB_INTERFACE();
26   static string get_fontcharname (string style, int alteration);
27   static vector<Box> accurate_boxes (Grob *me,
28                                                           Grob **common);
29 };
30
31 #endif