]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/note-column.hh
release: 1.3.66
[lilypond.git] / lily / include / note-column.hh
1 /*
2   note-column.hh -- declare Note_column
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef NOTE_COLUMN_HH
11 #define NOTE_COLUMN_HH
12
13 #include "item.hh"
14
15 /** a struct for treating a group of noteheads (noteheads, stem
16   (chord) and scripts) as a single entity.
17
18   UGR. Junkme.  refpoint should be the notehead, dir should come from stem.
19
20 */
21 class Note_column : public Item
22 {
23 public:
24   static int shift_compare (Note_column *const &, Note_column*const&);
25   
26   /** The relative position of the "voice" containing this
27     chord. Normally this would be the same as the stem direction,
28
29     JUNKME.
30     */
31   Direction dir () const;
32
33
34   static Slice head_positions_interval(Score_element* me) ;
35   static Direction static_dir (Score_element*);
36   void translate_rests(int dy);
37   Note_head * first_head ()const;
38   Interval rest_dim ()const ;
39   Note_column (SCM);
40   void set_stem (Score_element*);
41   void set_dotcol (Score_element*);
42   void add_head (Score_element*);
43   bool rest_b () const;
44
45   Stem *stem_l()const;
46 };
47
48 #endif // NOTE_COLUMN_HH