]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/tie.hh
* lily/include/tie.hh (struct Tie_details): add x_gap_
[lilypond.git] / lily / include / tie.hh
index bb6066a53933e58b4d1cec0bdb2279aac5aae8dc..7327dbd4c4733d9cdefaf2b07ce9b3a5358d5cea 100644 (file)
 
 #include "lily-guile.hh"
 #include "lily-proto.hh"
+#include "skyline.hh"
 
 
+
+Interval
+get_skyline_attachment (Drul_array< Array < Skyline_entry > > const &skylines,
+                       Real y1);
+
+struct Tie_details
+{
+  Real height_limit_;
+  Real ratio_;
+  Real staff_space_;
+  Real x_gap_;
+  
+  Tie_details ();
+  void init (Grob *);
+};
+  
 struct Tie_configuration
 {
+  int head_position_;
   int position_;
+  
   Direction dir_;
   Interval attachment_x_;
-  Real edge_y_;
+  Real delta_y_;
   
-  Tie_configuration ()
-  {
-    dir_ = CENTER;
-    position_ = 0;
-  }
+  Tie_configuration ();
+  void center_tie_vertically (Tie_details const &);
+  Bezier get_bezier (Tie_details const &) const;
+  Real height (Tie_details const&) const;
   
   static int compare (Tie_configuration const &a,
                      Tie_configuration const &b);
+  static Real distance (Tie_configuration const &a,
+                      Tie_configuration const &b);
 };
 
+INSTANTIATE_COMPARE (Tie_configuration, Tie_configuration::compare);
+
 class Tie
 {
 public:
   static void set_head (Grob *, Direction, Grob *head);
-  static void set_interface (Grob *);
   static bool has_interface (Grob *);
   static void set_direction (Grob *);
   static Grob *head (Grob *, Direction);
   static int get_column_rank (Grob *, Direction);
-  static Real get_position (Grob *);
+  static int get_position (Grob *);
   static Direction get_default_dir (Grob *);
-  static SCM get_control_points (SCM);
-  static SCM get_configuration (SCM);
+  static void get_configuration (Grob *, Grob *, Tie_configuration *,
+                                Drul_array< Array<Skyline_entry> > const *,
+                                Tie_details const & 
+                                );
+  static void set_control_points (Grob *, Grob *,Tie_configuration const&,
+                                 Tie_details const&
+                                 );
+  static void set_default_control_points (Grob *);
   DECLARE_SCHEME_CALLBACK (print, (SCM));
   DECLARE_SCHEME_CALLBACK (set_spacing_rods, (SCM));
+  static int compare (Grob *const &s1,
+                     Grob *const &s2);
+
+  static
+  Interval get_default_attachments (Spanner *me, Grob *common, Real gap,
+                                   int *staff_position, bool *in_between);
+  
 };