]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/staff-side.hh
release: 0.1.53
[lilypond.git] / lily / include / staff-side.hh
1 /*
2   staff-side.hh -- declare Staff_side
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9
10 #ifndef STAFF_SIDE_HH
11 #define STAFF_SIDE_HH
12
13 #include "score-elem.hh"
14 #include "interval.hh"
15 #include "direction.hh"
16
17 /** A symbol which sits along a staff.
18
19   */
20 class Staff_side : virtual Score_elem
21 {
22 public:
23
24   /**
25     Vertical dir of symbol relative to staff. -1 = below staff?
26     */
27   Direction dir_;
28   Interval sym_int_;
29     
30   /// follow the support inside the staff?
31   bool inside_staff_b_;
32
33   Real y_;
34
35
36   void set_staffsym (Staff_symbol * );
37   Staff_side ();
38   void add_support (Score_elem*);
39   DECLARE_MY_RUNTIME_TYPEINFO;
40     
41 protected:
42   virtual Interval symbol_height () const;
43   virtual Real get_position_f () const;
44   virtual void do_substitute_dependency (Score_elem *, Score_elem*);
45   virtual void do_post_processing ();
46   Interval support_height () const;
47
48 private:
49   Link_array<Score_elem> support_l_arr_;
50 //  Interval support_height () const;
51 };
52 #endif // STAFF_SIDE_HH