]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/bow.hh
release: 1.1.30
[lilypond.git] / lily / include / bow.hh
index 1ef139c60ee980d3e67c5458f78abf2c1b022273..ba7e20ff6eaf886c94f4a6ce96aecab1924803cb 100644 (file)
@@ -3,27 +3,41 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
 #ifndef BOW_HH
 #define BOW_HH
+
 #include "directional-spanner.hh"
+#include "curve.hh"
 
 /**
   Base class for anything that looks like a slur.
   Anybody with a better name?
   */
-class Bow : public Directional_spanner {
+class Bow : public Directional_spanner
+{
+public:
+  Bow ();
+  Offset center () const;  
+
+  
+
+  int dash_i_;
+  Real interstaff_f_;
+  Drul_array<Real> vertical_align_drul_;
+
 protected:
-  Drul_array<int> pos_i_drul_;
+  virtual Molecule* do_brew_molecule_p () const;
+  //  virtual Interval do_width () const;    
+  Array<Offset> get_controls () const;
+  virtual Array<Offset> get_encompass_offset_arr () const;
+  virtual Interval do_height () const;
+
+  Drul_array<Real> dy_f_drul_;
   Drul_array<Real> dx_f_drul_;
-    
-  Molecule*brew_molecule_p() const;
-public:
-  Bow();
-  DECLARE_MY_RUNTIME_TYPEINFO;
-  Offset center() const;  
 };
+
 #endif // BOW_HH