]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/system-start-delimiter.hh
d66bb24d9c46aebd6553f7d6ffd89f19259ddba8
[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--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #ifndef SYSTEM_START_DELIMITER_HH
10 #define SYSTEM_START_DELIMITER_HH
11
12 #include "lily-proto.hh"
13 #include "grob-interface.hh"
14
15 /*
16   Braces/brackets across staves.
17 */
18 class System_start_delimiter
19 {
20 public:
21   DECLARE_SCHEME_CALLBACK (print, (SCM));
22
23   DECLARE_GROB_INTERFACE();
24   static void try_collapse (Grob *);
25   static Stencil staff_bracket (Grob *, Real);
26   static Stencil old_staff_bracket (Grob *, Real);
27   static Stencil staff_brace (Grob *, Real);
28   static Stencil simple_bar (Grob *, Real);
29   static Stencil line_bracket (Grob *, Real);
30   
31 };
32
33 #endif /* SYSTEM_START_DELIMITER_HH */
34