]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/local-key-item.hh
''
[lilypond.git] / lily / include / local-key-item.hh
index db072f0dfe115eb0f6434453a5830eaa67c6692f..8a2dd3199c1c982ddbd016c68fbc6bfc77b954f6 100644 (file)
@@ -1,52 +1,27 @@
 /*
   local-key-item.hh -- part of GNU LilyPond
 
-  (c) 1996--2000 Han-Wen Nienhuys
+  (c) 1996--2002 Han-Wen Nienhuys
 */
 
 #ifndef LOCALKEYITEM_HH
 #define LOCALKEYITEM_HH
-#include "item.hh"
-#include "array.hh"
-#include "musical-pitch.hh"
-
-
 
-struct Local_key_cautionary_tuple
-{
-  Musical_pitch pitch_;
-  bool cautionary_b_;
-  bool natural_b_;
-
-  Local_key_cautionary_tuple ()
-  {
-    cautionary_b_ = false;
-    natural_b_ = false;
-  }
-  static int compare (Local_key_cautionary_tuple const&s1, Local_key_cautionary_tuple const&s2)
-  {
-    return Musical_pitch::compare (s1.pitch_, s2.pitch_);
-  }
-};
 
-/**
-  Accidentals which can be different for each octave.
+#include "array.hh"
+#include "pitch.hh"
 
-  TODO: schemify me!
- */
-class Local_key_item : public Item
+class Local_key_item
 {
-  Array<Local_key_cautionary_tuple> accidental_arr_;
-
-  Molecule accidental (int,bool,bool) const;
+  static Molecule parenthesize (Grob*me, Molecule) ;
 public:
-  Local_key_item (SCM );
-  void add_pitch (Musical_pitch, bool cautionary, bool natural);
-protected:
-  virtual void before_line_breaking ();
-  virtual Molecule do_brew_molecule() const;
+  DECLARE_SCHEME_CALLBACK (after_line_breaking, (SCM));
+  DECLARE_SCHEME_CALLBACK (brew_molecule, (SCM));
+  static void add_pitch (Grob*me, Pitch, bool cautionary, bool natural, Grob *tie_break_cautionary);
+  static bool has_interface (Grob*);
+  static void set_interface (Grob*);  
+};
 
 
-};
 #endif // LOCALKEYITEM_HH