]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/system-start-delimiter.hh
Merge branch 'master' of ssh+git://hanwen@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / lily / include / system-start-delimiter.hh
1 /*
2   System-start-delimiter.hh -- declare System_start_delimiter
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2000--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #ifndef SYSTEM_START_DELIMITER_HH
10 #define SYSTEM_START_DELIMITER_HH
11
12 #include "lily-guile.hh"
13 #include "lily-proto.hh"
14 #include "grob-interface.hh"
15
16 /*
17   Braces/brackets across staves.
18 */
19 class System_start_delimiter
20 {
21 public:
22   DECLARE_SCHEME_CALLBACK (print, (SCM));
23
24   DECLARE_GROB_INTERFACE();
25   static void try_collapse (Grob *);
26   static Stencil staff_bracket (Grob *, Real);
27   static Stencil old_staff_bracket (Grob *, Real);
28   static Stencil staff_brace (Grob *, Real);
29   static Stencil simple_bar (Grob *, Real);
30   static Stencil line_bracket (Grob *, Real);
31   
32 };
33
34 #endif /* SYSTEM_START_DELIMITER_HH */
35