]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/paper-column.hh
* lily/ledger-line-engraver.cc: new file.
[lilypond.git] / lily / include / paper-column.hh
1 /*
2   paper-column.hh -- declare  Paper_column
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef PAPER_COLUMN_HH
11 #define PAPER_COLUMN_HH
12
13 #include "item.hh"
14 #include "rod.hh"
15
16
17 class Paper_column : public Item
18
19 public:
20   int  rank_;
21   /// if lines are broken then this column is in #line#
22   System *system_;
23
24   Paper_column (SCM);
25   VIRTUAL_COPY_CONSTRUCTOR (Grob, Paper_column);
26
27   static bool has_interface (Grob*);
28   virtual void do_break_processing ();
29   virtual Paper_column *get_column () const;
30   virtual System *get_system () const;
31   
32   static int get_rank (Grob*);
33   
34   DECLARE_SCHEME_CALLBACK (print, (SCM));
35   DECLARE_SCHEME_CALLBACK (before_line_breaking, (SCM));
36   
37   static bool is_musical (Grob *);
38   static Moment when_mom (Grob*);
39
40   static bool is_used (Grob*) ;
41   void set_rank (int);
42 };
43      
44 #endif // PAPER_COLUMN_HH
45