]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/item.hh
``slikken kreng''
[lilypond.git] / lily / include / item.hh
index 524c6772e1bf248d1ffb9f9f25b723289c477430..37eb33f2671e4053081a61a725fba88e24b866d0 100644 (file)
@@ -3,56 +3,49 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+  (c)  1997--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 #ifndef ITEM_HH
 #define ITEM_HH
 
 
-#include "boxes.hh"
-#include "string.hh"
-#include "score-elem.hh"
+#include "box.hh"
+#include "grob.hh"
 #include "drul-array.hh"
 
+
 /**
   A horizontally fixed size element of the score.
 
   Item is the datastructure for printables whose width is known
   before the spacing is calculated
 
-  NB. This doesn't mean an Item has to initialize the output field before
-  spacing calculation. 
-  
 */
-class Item : public virtual Score_elem {
-public:
-  Link_array<Spanner> attached_span_l_arr_;
+class Item : public Grob
+{
   Drul_array<Item*> broken_to_drul_;
 
-  /// should be put in a breakable col.
-  bool breakable_b_;
-  int break_status_i_;
-  /// nobreak = 0, pre = -1, post = 1
-  int break_status_i() const;
-  Item * find_prebroken_piece (int) const;
-  Item * find_prebroken_piece (Line_of_score*) const;    
-
-  virtual Item *item() { return this; }
-  Item();
-  Real hpos_f() const;
-  DECLARE_MY_RUNTIME_TYPEINFO;
-  virtual Line_of_score * line_l() const;
-    
-  static int left_right_compare (Item const *, Item const*);
+public:
+  VIRTUAL_COPY_CONS (Grob);
+  Item (SCM);
+  Item (Item const &);
+
+  static bool breakable_b (Grob *);
+  bool broken_b () const;
+  
+  Direction break_status_dir () const;
+  
+  Item *find_prebroken_piece (Direction) const;
+  Grob *find_broken_piece (System *) const;    
+
+  virtual System *get_system () const;
+  virtual Paper_column *get_column () const;
+  virtual void handle_prebroken_dependencies ();
+  static  bool has_interface (Grob *);
 protected:
-  virtual void do_unlink ();
-  virtual void do_junk_links();
-  virtual void  do_breakable_col_processing();
-  virtual void handle_prebroken_dependencies();
-  virtual void do_print() const;
-  virtual bool linked_b() const;
-
-  void copy_breakable_items();
+  virtual void discretionary_processing ();
+  void copy_breakable_items ();
+  virtual SCM do_derived_mark ();
 };