]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/item.hh
Merge branch 'master' of ssh+git://hanwen@git.sv.gnu.org/srv/git/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--2006 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, Object_key const *);
26   Item (Item const &, int count);
27
28   virtual Grob *clone (int count) const;
29
30   static bool is_non_musical (Grob *);
31   bool is_broken () const;
32   bool pure_is_visible (int start, int end) const;
33
34   Direction break_status_dir () const;
35
36   Item *find_prebroken_piece (Direction) const;
37   Grob *find_broken_piece (System *) const;
38   virtual System *get_system () const;
39   virtual Paper_column *get_column () const;
40   virtual void handle_prebroken_dependencies ();
41   virtual Interval_t<int> spanned_rank_iv ();
42   DECLARE_GROB_INTERFACE();
43 protected:
44   virtual void discretionary_processing ();
45   void copy_breakable_items ();
46   virtual void derived_mark () const;
47 };
48
49 #endif