]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/local-key-item.hh
release: 1.3.6
[lilypond.git] / lily / include / local-key-item.hh
1 /*
2   local-key-item.hh -- part of GNU LilyPond
3
4   (c) 1996--1999 Han-Wen Nienhuys
5 */
6
7 #ifndef LOCALKEYITEM_HH
8 #define LOCALKEYITEM_HH
9 #include "item.hh"
10 #include "array.hh"
11 #include "musical-pitch.hh"
12 #include "staff-symbol-referencer.hh"
13 #include "note-head-side.hh"
14
15 struct Local_key_cautionary_tuple
16 {
17   Musical_pitch pitch_;
18   bool cautionary_b_;
19
20   Local_key_cautionary_tuple ()
21     {
22       cautionary_b_ = false;
23     }
24   static int compare (Local_key_cautionary_tuple const&s1, Local_key_cautionary_tuple const&s2)
25     {
26       return Musical_pitch::compare (s1.pitch_, s2.pitch_);
27     }
28 };
29
30 /**
31   Accidentals which can be different for each octave.
32
33   
34   TODO
35
36   Make an item for each accidental separately, and make a
37   Accidental_column to group them.
38   
39  */
40
41 class Local_key_item : public Note_head_side, public Staff_symbol_referencer {
42   Array<Local_key_cautionary_tuple> accidental_arr_;
43
44   Molecule accidental (int,bool) const;
45 public:
46   int c0_position_i_;
47   Local_key_item ();
48   void add_pitch (Musical_pitch, bool cautionary);
49 protected:
50   virtual void do_pre_processing();
51   virtual void do_substitute_element_pointer (Score_element*,Score_element*);
52   virtual Molecule* do_brew_molecule_p() const;
53 };
54 #endif // LOCALKEYITEM_HH
55