]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/staff-side.hh
release: 0.1.38
[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   Link_array<Score_elem> support_l_arr_;
22
23   Interval support_height() const;
24   Real get_position_f() const;
25
26 public:
27
28   /**
29     Vertical dir of symbol relative to staff. -1 = below staff?
30     */
31   Direction dir_;
32   Interval sym_int_;
33     
34   /// follow the support inside the staff?
35   bool inside_staff_b_;
36
37   Real y_;
38
39
40   void set_staffsym (Staff_symbol * );
41   
42   Staff_side();
43   void add_support (Score_elem*);
44   DECLARE_MY_RUNTIME_TYPEINFO;
45     
46 protected:
47   virtual Interval symbol_height() const;
48   virtual void do_substitute_dependency (Score_elem *, Score_elem*);
49   virtual void do_post_processing();
50 };
51 #endif // STAFF_SIDE_HH