]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/stem.hh
release: 1.3.12
[lilypond.git] / lily / include / stem.hh
index 34cb868d56743d4ed22cb7685bfce8fa0c2f0206..7da90a36493009e90690d4a1ab0b6d3943364217 100644 (file)
@@ -1,15 +1,18 @@
 /*
   stem.hh -- declare Stem
 
-  (c) 1996,97 Han-Wen Nienhuys
+  (c) 1996--1999 Han-Wen Nienhuys
 */
 
 #ifndef STEM_HH
 #define STEM_HH
+
 #include "item.hh"
-#include "varray.hh"
+#include "array.hh"
 #include "moment.hh"
-
+#include "molecule.hh"
+#include "directional-element.hh"
+#include "stem-info.hh"
 
 /**the rule attached to the ball.
   takes care of:
   \end{itemize}
 
   should move beam_{left, right} into Beam
-  */
-class Stem : public Item {
-    
-    Real stem_bottom_f_, stem_top_f_;
-    
-    
-    /// needed for determining direction/length
-    int staff_size_i_;
-
-    /**extent of the stem (positions).
-      fractional, since Beam has to adapt them.
-      */
-
-
-    /**
-      geen gedonder, jij gaat onder.
-      -1 stem points down, +1: stem points up
-      */
-    Real stem_xoffset_f_;
-    /**
-      store the wholes (for vapourware tremolo)
-     */
-    Link_array<Note_head> whole_l_arr_;
-    Link_array<Note_head> head_l_arr_;
-    Link_array<Note_head> rest_l_arr_;
-    
-public:
-    /// flagtype? 4 none, 8 8th flag, 0 = beam.
-    int flag_i_;
 
-    int beams_left_i_;
-    int beams_right_i_;
+  TODO.
+  
+  Stem size depends on flag.
 
-    /// false if in beam
-    bool print_flag_b_;
-    
-    int dir_i_;
+  elt properties:
 
-    
-    /* *************** */
-    Stem(int staff_size_i);
-    
-    /// ensure that this Stem also encompasses the Notehead #n#
-    void add(Note_head*n);
+  beam_dir: direction of the beam (int)
 
-    NAME_MEMBERS();
+  dir_force: is direction explicitely specified? (bool)
 
-    Real hpos_f()const;
-    
-    void do_print() const;
-    void set_stemend(Real);
-    int get_default_dir();
-    int get_center_distance();
-    void set_default_dir();
-    void set_default_stemlen();
-    void set_default_extents();
-    void set_noteheads();
-
-    Real stem_length_f()const;
-    Real stem_end_f()const;
-    Real stem_start_f() const;
-
-    bool invisible_b()const;
-    bool chord_b()const;
+  /// how many abbrev beam don't reach stem?
+  int beam_gap_i_;
+
+
+  
+  */
+class Stem : public Item,
+            public Directional_element
+{
+
+  /**extent of the stem (positions).
+    fractional, since Beam has to adapt them.
+    */
+  Interval yextent_;
+
+public:
+  /// log of the duration. Eg. 4 -> 16th note -> 2 flags
+  int flag_i () const;
+
+  int beam_count (Direction) const;
+  void set_beaming (int,  Direction d);
+  /** 
+    don't print flag when in beam.
+    our beam, for aligning abbrev flags
+   */
+  Beam* beam_l () const;
+  Note_head * first_head () const;
+  Score_element * support_head () const;
+  Stem ();
+  /// ensure that this Stem also encompasses the Notehead #n#
+  void add_head (Rhythmic_head*n);
+
+  Real hpos_f () const;
+  Stem_info calc_stem_info () const;
+
+  Real chord_start_f () const;
+  
+  int type_i () const;
+  void set_stemend (Real);
+  Direction get_default_dir() const;
+
+  int get_center_distance(Direction) const;
+
+  void set_default_stemlen();
+  void set_default_extents();
+  void set_noteheads();
+
+  Real stem_end_f() const;
+  Real stem_begin_f() const;
+  Real note_delta_f () const;
+
+  bool invisible_b() const;
     
-    /// heads that the stem encompasses (positions)
-    int max_head_i() const;
-    int min_head_i() const;
+  /// heads that the stem encompasses (positions)
+  Interval_t<int> head_positions() const;
+
 protected:
-    virtual void do_substitute_dependency(Score_elem*,Score_elem*);
-    virtual void do_pre_processing();
-    virtual Interval do_width() const;
-    Molecule* brew_molecule_p() const;
+  Molecule flag () const;
+
+  virtual void do_pre_processing();
+  static Interval dim_callback (Dimension_cache const*);
+  virtual Molecule* do_brew_molecule_p() const;
+
+  void set_spacing_hints () ;
 };
 #endif