]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/slur.hh
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / lily / include / slur.hh
index e37761e8a5e0ef78a5f7b8a21b9f06704a3e49b6..2c797239ce2876acf221f692dbe492ded0970657 100644 (file)
@@ -1,44 +1,32 @@
 /*
   slur.hh -- declare Slur
 
-  (c) 1996--2000 Han-Wen Nienhuys
+  source file of the GNU LilyPond music typesetter
+
+  (c) 2004--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
 #ifndef SLUR_HH
 #define SLUR_HH
 
-#include "spanner.hh"
-#include "rod.hh"
+#include "grob-info.hh"
+#include "lily-proto.hh"
+#include "lily-guile.hh"
+#include "std-vector.hh"
 
-/**
-  A #Bow# which tries to drape itself around the stems too.
- */
-class Slur : public Spanner
+class Slur
 {
 public:
-  Slur (SCM);
-  VIRTUAL_COPY_CONS(Score_element);
-
-  void add_column (Note_column*);
- static SCM brew_molecule (SCM);
-  
-  SCM member_brew_molecule () const;
-  Array<Offset> get_encompass_offset_arr () const;
-  Bezier get_curve () const;
-
-  Direction get_default_dir () const;
-  SCM member_after_line_breaking ();
-  static SCM after_line_breaking (SCM);
-  Array<Rod> get_rods () const;
-  Offset get_attachment (Direction dir, Score_element**common) const;
-
-private:  
-  void de_uglyfy (Slur_bezier_bow* bb, Real default_height);
-  void set_extremities ();
-  void set_control_points ();
-  Offset encompass_offset (Score_element *col,Score_element**common)const;
+  static void add_column (Grob *me, Grob *col);
+  static void add_extra_encompass (Grob *me, Grob *col);
+  static void auxiliary_acknowledge_extra_object (Grob_info, vector<Grob*>&, vector<Grob*>&);
+  DECLARE_SCHEME_CALLBACK (print, (SCM));
+  DECLARE_SCHEME_CALLBACK (calc_control_points, (SCM));
+  DECLARE_SCHEME_CALLBACK (calc_direction, (SCM));
+  DECLARE_SCHEME_CALLBACK (height, (SCM));
+  DECLARE_SCHEME_CALLBACK (outside_slur_callback, (SCM, SCM));
+  static bool has_interface (Grob *);
+  static Bezier get_curve (Grob *me);
 };
 
-#endif // SLUR_HH
-
-
+#endif /* SLUR_HH */