]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/staff-symbol.hh
patch::: 1.5.4.jcn3
[lilypond.git] / lily / include / staff-symbol.hh
index 8fde55f94ddc2eaf0ef023eb773c97275e6e6206..2bc13a4e9083a388a4d5e1092c5556a6e0fc0c21 100644 (file)
@@ -1,28 +1,28 @@
 /*
-  staffsym.hh -- declare Staff_symbol
+  staff-symbol.hh -- declare Staff_symbol
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
-#ifndef STAFFSYM_HH
-#define STAFFSYM_HH
-#include "spanner.hh"
+#ifndef STAFF_SYMBOL_HH
+#define STAFF_SYMBOL_HH
+
+#include "lily-guile.hh"
 
 /**
-  This spanner draws the lines of a pstaff.
-  The bottom line is position 0.
+  TODO: add stafflinethickness as parameter.
   */
-class Staff_symbol : public Spanner
+class Staff_symbol 
 {
 public:
-  Real staff_space () const;
-  int steps_i() const;
-  int line_count () const;
-protected:
-  VIRTUAL_COPY_CONS(Score_element);
-  virtual Molecule* do_brew_molecule_p() const;
+  static Real staff_space (Grob*) ;
+  static int steps_i (Grob*) ;
+  static int line_count (Grob*);
+  DECLARE_SCHEME_CALLBACK (brew_molecule, (SCM ));
+  static bool has_interface (Grob*);
+  static void set_interface (Grob*);
 };
-#endif // STAFFSYM_HH
+#endif // STAFF_SYMBOL_HH