]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/paper-column.hh
* lily/sequential-music.cc: remove file.
[lilypond.git] / lily / include / paper-column.hh
index ed850c4e247ac5d87ffb2ec9ce042328769d84e1..6a8a1d3d6f80fb3fc1ba3d5eef4744bef3969302 100644 (file)
@@ -3,12 +3,12 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
-#ifndef P_COL_HH
-#define P_COL_HH
+#ifndef PAPER_COLUMN_HH
+#define PAPER_COLUMN_HH
 
 #include "item.hh"
 #include "rod.hh"
 class Paper_column : public Item
 { 
 public:
-  VIRTUAL_COPY_CONS (Grob);
-
-  int  rank_i_;
-  virtual void do_break_processing ();
-  virtual Paper_column *column_l () const;
-  virtual System *line_l () const;
-
+  int  rank_;
   /// if lines are broken then this column is in #line#
-  System *line_l_;
+  System *system_;
 
-  static int rank_i (Grob*);
+  Paper_column (SCM, Object_key const*);
+  Paper_column (Paper_column const&, int count);
+  
+  virtual Grob *clone (int count) const;
 
-  DECLARE_SCHEME_CALLBACK(brew_molecule, (SCM));
+  static bool has_interface (Grob*);
+  virtual void do_break_processing ();
+  virtual Paper_column *get_column () const;
+  virtual System *get_system () const;
+  
+  static int get_rank (Grob*);
+  
+  DECLARE_SCHEME_CALLBACK (print, (SCM));
+  DECLARE_SCHEME_CALLBACK (before_line_breaking, (SCM));
   
-  Paper_column (SCM);
-  static bool musical_b (Grob *);
+  static bool is_musical (Grob *);
   static Moment when_mom (Grob*);
 
-  static bool used_b (Grob*) ;
+  static bool is_used (Grob*) ;
   void set_rank (int);
 };
      
-#endif // P_COL_HH
+#endif // PAPER_COLUMN_HH