]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/item.hh
Merge branch 'master' of git://git.sv.gnu.org/lilypond
[lilypond.git] / lily / include / item.hh
1 /*
2   item.hh -- declare Item
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8 #ifndef ITEM_HH
9 #define ITEM_HH
10
11 #include "grob.hh"
12
13 /**
14    A horizontally fixed size element of the score.
15
16    Item is the datastructure for printables whose width is known
17    before the spacing is calculated
18 */
19 class Item : public Grob
20 {
21   Drul_array<Item *> broken_to_drul_;
22
23   DECLARE_CLASSNAME(Item);
24 public:
25   Item (SCM);
26   Item (Item const &);
27
28   virtual Grob *clone () const;
29
30   static bool is_non_musical (Grob *);
31   static bool break_visible(Grob *);
32   bool is_broken () const;
33   bool pure_is_visible (int start, int end) const;
34
35   Direction break_status_dir () const;
36
37   Item *find_prebroken_piece (Direction) const;
38   Grob *find_broken_piece (System *) const;
39   virtual System *get_system () const;
40   virtual Paper_column *get_column () const;
41   virtual void handle_prebroken_dependencies ();
42   virtual Interval_t<int> spanned_rank_interval () const;
43   DECLARE_GROB_INTERFACE();
44 protected:
45   virtual void discretionary_processing ();
46   void copy_breakable_items ();
47   virtual void derived_mark () const;
48 };
49
50 Interval_t<Moment> spanned_time_interval (Item *l, Item *r);
51
52 #endif