]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/span-bar.hh
Merge branch 'master' of ssh+git://hanwen@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / lily / include / span-bar.hh
1 /*
2   span-bar.hh -- declare Span_bar
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #ifndef SPAN_BAR_HH
10 #define SPAN_BAR_HH
11
12 #include "lily-guile.hh"
13 #include "lily-proto.hh"
14 #include "grob-interface.hh"
15
16 /**
17    This is a barline that is spanned across other bar lines.  This is
18    the implementation of the long barlines that occur in orchestral
19    score and other multi-staff music.
20 */
21 class Span_bar
22 {
23 public:
24
25   DECLARE_GROB_INTERFACE();
26   static Interval get_spanned_interval (Grob *);
27   static void add_bar (Grob *, Grob *);
28   static void evaluate_glyph (Grob *);
29   DECLARE_SCHEME_CALLBACK (width, (SCM smob));
30   DECLARE_SCHEME_CALLBACK (calc_bar_size, (SCM));
31   DECLARE_SCHEME_CALLBACK (print, (SCM));
32   DECLARE_SCHEME_CALLBACK (calc_glyph_name, (SCM));
33   DECLARE_SCHEME_CALLBACK (before_line_breaking, (SCM));
34   DECLARE_SCHEME_CALLBACK (center_on_spanned_callback, (SCM element));
35 };
36
37 #endif // SPAN_BAR_HH