]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/note-column-reg.hh
release: 0.0.71pre
[lilypond.git] / lily / include / note-column-reg.hh
1 /*
2   note-column-reg.hh -- declare Note_column_register
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_REG_HH
11 #define NOTE_COLUMN_REG_HH
12
13 #include "register.hh"
14
15 class Note_column_register :public Request_register {
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_register();
35     NAME_MEMBERS();
36 };
37 #endif // NOTE_COLUMN_REG_HH