]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/single-malt-grouping-item.hh
patch::: 1.3.67.mb1: Re: Broken features
[lilypond.git] / lily / include / single-malt-grouping-item.hh
1 /*   
2   single-malt-grouping-item.hh -- declare Single_malt_grouping_item
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef SINGLE_MALT_GROUPING_ITEM_HH
11 #define SINGLE_MALT_GROUPING_ITEM_HH
12
13 #include "item.hh"
14
15 /** Calc dimensions for the Separating_group_spanner; this has to be
16    an item to get dependencies correct.  It can't be an element_group
17    since these usually are in a different X_group
18
19    It's 1:30 am.  Naming suggestions appreciated.
20
21    Properties:
22
23
24    elements -- list of items.
25    
26    no-spacing-rods -- read from elements: boolean that makes Single_malt_grouping_item ignore
27      this item
28    
29 */
30 class Single_malt_grouping_item : public Item
31 {
32   VIRTUAL_COPY_CONS(Score_element);
33 public:
34   Single_malt_grouping_item (SCM);
35   Interval my_width () const;
36   void add_item (Item*);
37 };
38
39 #endif /* SINGLE_MALT_GROUPING_ITEM_HH */
40