lilypond-0.1.57
[lilypond.git] / lily / single-malt-grouping-item.cc
blobe9fe0a7398c1ca38df2d8e5e297c1decae3bc3e6
1 /*
2 single-malt-grouping-item.cc -- implement Single_malt_grouping_item
4 source file of the GNU LilyPond music typesetter
6 (c) 1998 Han-Wen Nienhuys <hanwen@cs.ruu.nl>
8 */
10 #include "single-malt-grouping-item.hh"
11 #include "p-col.hh"
12 #include "debug.hh"
14 Single_malt_grouping_item ::Single_malt_grouping_item()
16 transparent_b_ = true;
17 set_empty (true);
20 void
21 Single_malt_grouping_item::add (Item* i)
23 assert (i);
24 item_l_arr_.push (i);
25 add_dependency (i);
28 Interval
29 Single_malt_grouping_item::my_width () const
31 Paper_column * pc = column_l ();
32 Interval w;
33 for (int i=0; i < item_l_arr_.size (); i++)
35 Item *il = item_l_arr_[i];
36 assert (pc == il->column_l ());
37 w.unite (il->width () + il->relative_coordinate (pc, X_AXIS));
40 return w;
41 // add this->offset_ ? this-> relative_coordinate ()?
44 IMPLEMENT_IS_TYPE_B1(Single_malt_grouping_item, Item);
46 void
47 Single_malt_grouping_item::do_substitute_dependency (Score_elem*o, Score_elem*n)
49 if (o->item ())
51 item_l_arr_.unordered_substitute (o->item (), n ? n->item () : 0);
55 void
56 Single_malt_grouping_item::do_print () const
58 #ifndef NDEBUG
59 for (int i=0; i < item_l_arr_.size (); i++)
61 DOUT << item_l_arr_[i]->name () << ", ";
63 #endif