]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/system-start-delimiter.hh
* lily/auto-beam-engraver.cc (process_music): end/junk beam if
[lilypond.git] / lily / include / system-start-delimiter.hh
index 61d23efdb19080b625eaacee26b06a84e4ec1f30..6ddec68979bccbeaa737b0e419ff04bbe9f3f066 100644 (file)
@@ -3,31 +3,31 @@
      
   source file of the GNU LilyPond music typesetter
   
-  (c) 2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  2000--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 
 #ifndef SYSTEM_START_DELIMITER_HH
 #define SYSTEM_START_DELIMITER_HH
 
-#include "spanner.hh"
+#include "lily-guile.hh"
+#include "lily-proto.hh"
 
 /*
-  Braces/brackets across staffs.
+  Braces/brackets across staves.
  */
-class System_start_delimiter : public Spanner
+class System_start_delimiter
 {
 public:
-  System_start_delimiter (SCM);
-  static SCM scheme_molecule (SCM);
+  DECLARE_SCHEME_CALLBACK (brew_molecule, (SCM ));
   
-  VIRTUAL_COPY_CONS (Score_element);
-protected:
-  virtual void after_line_breaking();
   
-  Molecule staff_bracket (Real) const;
-  Molecule staff_brace (Real) const;
-  Molecule simple_bar (Real) const;
+  static bool has_interface (Grob*);
+  DECLARE_SCHEME_CALLBACK (after_line_breaking, (SCM ));
+  static void try_collapse (Grob*);
+  static Molecule staff_bracket (Grob*,Real) ;
+  static Molecule staff_brace (Grob*,Real) ;
+  static Molecule simple_bar (Grob*,Real) ;
 };
 
 #endif /* SYSTEM_START_DELIMITER_HH */