]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/text-interface.hh
Run `make grand-replace'.
[lilypond.git] / lily / include / text-interface.hh
1 /*
2   text-interface.hh -- declare markup functions
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1998--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
7   Jan Nieuwenhuizen <janneke@gnu.org>
8 */
9
10 #ifndef TEXT_ITEM
11 #define TEXT_ITEM
12
13 #include "stencil.hh"
14 #include "grob-interface.hh"
15
16
17 class Text_interface
18 {
19 public:
20   DECLARE_SCHEME_CALLBACK (print, (SCM));
21   DECLARE_SCHEME_CALLBACK (interpret_markup, (SCM, SCM, SCM));
22   DECLARE_SCHEME_CALLBACK (interpret_string, (SCM, SCM, SCM));
23   DECLARE_GROB_INTERFACE();
24   static bool is_markup (SCM);
25   static bool is_markup_list (SCM);
26 };
27
28 #endif /* TEXT_ITEM */