]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/system-start-delimiter.hh
release: 1.3.68
[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 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef SYSTEM_START_DELIMITER_HH
11 #define SYSTEM_START_DELIMITER_HH
12
13 #include "spanner.hh"
14
15 /*
16   Braces/brackets across staffs.
17  */
18 class System_start_delimiter : public Spanner
19 {
20 public:
21   System_start_delimiter (SCM);
22   static SCM brew_molecule (SCM);
23   
24   VIRTUAL_COPY_CONS (Score_element);
25
26   static SCM after_line_breaking (SCM);
27   static void try_collapse (Score_element*);
28   
29   Molecule staff_bracket (Real) const;
30   Molecule staff_brace (Real) const;
31   Molecule simple_bar (Real) const;
32 };
33
34 #endif /* SYSTEM_START_DELIMITER_HH */
35