]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/note-column-grav.hh
release: 0.1.7
[lilypond.git] / lily / include / note-column-grav.hh
1 /*
2   note-column-grav.hh -- declare Note_column_engraver
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 NOTE_COLUMN_GRAV_HH
11 #define NOTE_COLUMN_GRAV_HH
12
13 #include "engraver.hh"
14
15 class Note_column_engraver :public Engraver {
16     Rest_column * rest_col_l();
17     Note_column * note_col_l();
18     
19     Array< Script * >  script_l_arr_;
20     Stem * stem_l_;
21     Note_column *ncol_p_;
22     Rest_column *restcol_p_;
23     bool h_shift_b_;
24     int dir_i_;
25     
26
27     bool acceptable_elem_b(Score_elem const*)const;
28 protected:
29     virtual void set_feature(Feature);
30     virtual void acknowledge_element(Score_elem_info);
31     virtual void do_pre_move_processing();
32     virtual void do_post_move_processing();
33 public:
34     Note_column_engraver();
35     DECLARE_MY_RUNTIME_TYPEINFO;
36 };
37 #endif // NOTE_COLUMN_GRAV_HH