]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/paper-column.hh
* flower
[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--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #ifndef PAPER_COLUMN_HH
10 #define PAPER_COLUMN_HH
11
12 #include "item.hh"
13 #include "rod.hh"
14
15 class Paper_column : public Item
16 {
17 public:
18   int rank_;
19   /// if lines are broken then this column is in #line#
20   System *system_;
21
22   Paper_column (SCM, Object_key const *);
23   Paper_column (Paper_column const &, int count);
24
25   virtual Grob *clone (int count) const;
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