]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/stem.hh
release: 0.1.13
[lilypond.git] / lily / include / stem.hh
1 /*
2   stem.hh -- declare Stem
3
4   (c) 1996,97 Han-Wen Nienhuys
5 */
6
7 #ifndef STEM_HH
8 #define STEM_HH
9 #include "item.hh"
10 #include "varray.hh"
11 #include "moment.hh"
12 #include "molecule.hh"
13
14
15 /**the rule attached to the ball.
16   takes care of:
17
18   \begin{itemize}
19   \item the rule
20   \item the flag
21   \item up/down position.
22   \end{itemize}
23
24   should move beam_{left, right} into Beam
25
26   TODO.
27   
28   Stem size depends on flag.
29   */
30 class Stem : public Item {
31
32   Molecule abbrev_mol () const;
33     
34   Real stem_bottom_f_, stem_top_f_;
35     
36     
37   /// needed for determining direction/length
38   int staff_size_i_;
39
40   /**extent of the stem (positions).
41     fractional, since Beam has to adapt them.
42     */
43
44
45   /**
46     geen gedonder, jij gaat onder.
47     -1 stem points down, +1: stem points up
48     */
49   Real stem_xoffset_f_;
50
51   Link_array<Note_head> head_l_arr_;
52   Link_array<Rest> rest_l_arr_;
53     
54 public:
55   /// abbrev flag? + count
56   int abbrev_flag_i_;
57
58   /// flagtype? 4 none, 8 8th flag, 0 = beam.
59   int flag_i_;
60
61   /** 
62     don't print flag when in beam.
63     our beam, for aligning abbrev flags
64    */
65   Beam* beam_l_;
66
67   int beams_left_i_;
68   int beams_right_i_;
69
70   Direction dir_;
71     
72   /* *************** */
73   Stem ();
74     
75   /// ensure that this Stem also encompasses the Notehead #n#
76   void add (Note_head*n);
77   void add (Rest*);
78
79   DECLARE_MY_RUNTIME_TYPEINFO;
80
81   Real hpos_f() const;
82     
83   void do_print() const;
84   void set_stemend (Real);
85   Direction get_default_dir();
86   int get_center_distance_from_top();
87   int get_center_distance_from_bottom();
88   void set_default_dir();
89   void set_default_stemlen();
90   void set_default_extents();
91   void set_noteheads();
92
93   Real stem_length_f() const;
94   Real stem_end_f() const;
95   Real stem_start_f() const;
96
97   bool invisible_b() const;
98     
99   /// heads that the stem encompasses (positions)
100   int max_head_i() const;
101   int min_head_i() const;
102 protected:
103   virtual void do_substitute_dependency (Score_elem*,Score_elem*);
104   virtual void do_pre_processing();
105   virtual Interval do_width() const;
106   Molecule* brew_molecule_p() const;
107 };
108 #endif