]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/item.hh
ea0af2eb53de023dfc8c3a7b93f67d731d7dcbd7
[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   static bool less (Grob * const&, Grob * const&);
33   bool is_broken () const;
34   bool pure_is_visible (int start, int end) const;
35
36   Direction break_status_dir () const;
37
38   Item *find_prebroken_piece (Direction) const;
39   Grob *find_broken_piece (System *) const;
40   virtual System *get_system () const;
41   virtual Paper_column *get_column () const;
42   virtual void handle_prebroken_dependencies ();
43   virtual Interval_t<int> spanned_rank_interval () const;
44   virtual Interval pure_height (Grob *ref, int start, int end);
45   DECLARE_GROB_INTERFACE();
46 protected:
47   virtual void discretionary_processing ();
48   void copy_breakable_items ();
49   virtual void derived_mark () const;
50
51   bool cached_pure_height_valid_;
52   Interval cached_pure_height_;
53 };
54
55 Interval_t<Moment> spanned_time_interval (Item *l, Item *r);
56
57 #endif