]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/system-start-delimiter.hh
release: 1.3.94
[lilypond.git] / lily / include / system-start-delimiter.hh
index 659b166514e3723c1fc2c45aaff646e1b32d7c49..081f0c6c91df71b24576adb01618e69a6cabeed7 100644 (file)
 #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.
  */
-class System_start_delimiter : public Spanner
+class System_start_delimiter
 {
 public:
-  System_start_delimiter (SCM);
-  static SCM brew_molecule (SCM);
+  DECLARE_SCHEME_CALLBACK(brew_molecule, (SCM ));
   
-  VIRTUAL_COPY_CONS (Score_element);
-
-  virtual SCM member_after_line_breaking ();
-  static SCM after_line_breaking (SCM);
-  
-  Molecule staff_bracket (Real) const;
-  Molecule staff_brace (Real) const;
-  Molecule simple_bar (Real) const;
+  static void set_interface (Score_element*me);
+  static bool has_interface (Score_element*);
+  DECLARE_SCHEME_CALLBACK(after_line_breaking, (SCM ));
+  static void try_collapse (Score_element*);
+  static Molecule staff_bracket (Score_element*,Real) ;
+  static Molecule staff_brace (Score_element*,Real) ;
+  static Molecule simple_bar (Score_element*,Real) ;
 };
 
 #endif /* SYSTEM_START_DELIMITER_HH */