lilypond-1.3.11
[lilypond.git] / lily / include / key-item.hh
blobac80432208ce0c00ba959700ac60b81963407510
1 /*
2 key-item.hh -- part of GNU LilyPond
4 (c) 1996--1999 Han-Wen Nienhuys
5 */
7 #ifndef KEYITEM_HH
8 #define KEYITEM_HH
10 #include "item.hh"
11 #include "array.hh"
14 /// An item which places accidentals at the start of the line
15 class Key_item :public Item
17 Array<int> pitch_arr_;
18 Array<int> acc_arr_;
19 Array<int> old_pitch_arr_;
20 Array<int> old_acc_arr_;
21 int c0_position_;
24 public:
25 bool multi_octave_b_;
27 int get_c_position () const;
30 VIRTUAL_COPY_CONS(Score_element);
32 Key_item ();
33 void add (int pitch, int acc);
34 void add_old (int pitch, int acc);
35 void set_c_position (int);
36 int calculate_position(int p, int a) const;
38 protected:
39 virtual Molecule* do_brew_molecule_p() const;
42 #endif // KEYITEM_HH