]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/horizontal-bracket.hh
dea58a3cccfc375d5eebe9632da1933e77d51350
[lilypond.git] / lily / include / horizontal-bracket.hh
1 /*
2   horizontal-bracket.hh -- declare Horizontal_bracket
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2005--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #ifndef HORIZONTAL_BRACKET_HH
10 #define HORIZONTAL_BRACKET_HH
11
12 #include "lily-guile.hh"
13 #include "lily-proto.hh"
14 #include "std-vector.hh"
15 #include "grob-interface.hh"
16
17 struct Horizontal_bracket
18 {
19   DECLARE_SCHEME_CALLBACK (print, (SCM));
20   static Stencil make_bracket (Grob *, Real, Axis, Direction);
21   static Stencil make_enclosing_bracket (Grob *me, Grob *refpoint,
22                                          vector<Grob*> grobs,
23                                          Axis a, Direction dir);
24   DECLARE_GROB_INTERFACE();
25 };
26
27 #endif /* HORIZONTAL_BRACKET_HH */