]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/staff-symbol-referencer.hh
release: 1.3.9
[lilypond.git] / lily / include / staff-symbol-referencer.hh
1 /*   
2   staff-sym-referencer.hh -- declare staff_symbol_referencer
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef STAFF_SYMBOL_REFERENCER_HH
11 #define STAFF_SYMBOL_REFERENCER_HH
12
13 #include "score-element.hh"
14
15 /**
16    A notation object that needs access to variables of the staff (no
17    lines, leading).
18    
19  */
20 class Staff_symbol_referencer : public virtual Score_element
21 {
22   Real position_f_;
23   
24 protected:
25   Staff_symbol * staff_symbol_l_;
26
27 public:
28   Staff_symbol_referencer ();
29   void set_position (Real);
30   
31   void set_staff_symbol (Staff_symbol*);
32   /**
33      Leading are the lead strips between the sticks (lines) of
34      typeface. ie. leading is vertical space.
35
36    */
37   Real staff_line_leading_f () const;
38   Staff_symbol * staff_symbol_l () const;
39   int lines_i () const;
40   virtual void do_substitute_element_pointer (Score_element*,Score_element*);
41   virtual void do_pre_processing ();
42   virtual Real position_f () const;
43
44 };
45
46 #endif /* STAFF_SYMBOL_REFERENCER_HH */
47