]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/system-start-delimiter.hh
patch::: 1.3.122.jcn2
[lilypond.git] / lily / include / system-start-delimiter.hh
index d84acd97d0d0b5ae53a917e42fe4b73043e6575c..bcf039374e4a1cc34edd98e099f077a7bc498958 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);
-  VIRTUAL_COPY_CONS (Score_element);
-protected:
-  virtual void after_line_breaking();
-  virtual  Molecule do_brew_molecule () const;
-  Molecule staff_bracket (Real) const;
-  Molecule staff_brace (Real) const;
-  Molecule simple_bar (Real) const;
+  DECLARE_SCHEME_CALLBACK(brew_molecule, (SCM ));
+  
+  static void set_interface (Grob*me);
+  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 */