From bfdbd1c6f836def399b2621ddf945ac2b94b7634 Mon Sep 17 00:00:00 2001 From: fred Date: Tue, 10 Dec 1996 00:29:42 +0000 Subject: [PATCH] lilypond-0.0.15 --- hdr/stem.hh | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/hdr/stem.hh b/hdr/stem.hh index adce936320..372011d1b1 100644 --- a/hdr/stem.hh +++ b/hdr/stem.hh @@ -10,12 +10,17 @@ /// the rule attached to the ball struct Stem : public Item { + Real note_length; + // heads the stem encompasses (positions) int minnote, maxnote; /// false if in beam bool print_flag; + int beams_left; + int beams_right; + /// needed for determining direction/length int staff_center; @@ -26,7 +31,8 @@ struct Stem : public Item { */ Real stemlen; - // flagtype? 4 none, 8 8th flag, 0 = beam. + + /// flagtype? 4 none, 8 8th flag, 0 = beam. int flag; ///geen gedonder, jij gaat onder @@ -41,14 +47,15 @@ struct Stem : public Item { /// ensure that this Stem also encompasses the Notehead #n# void add(Notehead*n); Real hpos()const; + void print() const; void set_stemend(Real); void set_default_dir(); void set_default_stemlen(); void set_default_extents(); void postprocess(); void preprocess(); - Stem(int center); - void print() const; + Stem(int center, Real duration); + Interval width() const; private: -- 2.39.5