]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/separation-item.hh
release: 1.3.69
[lilypond.git] / lily / include / separation-item.hh
1 /*   
2   single-malt-grouping-item.hh -- declare Separation_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 "lily-proto.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    Properties:
20
21
22    elements -- list of items.
23    
24    no-spacing-rods -- read from elements: boolean that makes Separation_item ignore
25      this item
26    
27 */
28 struct Separation_item
29 {
30   static void set_interface (Score_element*);
31   static bool has_interface (Score_element*);
32   static Interval my_width (Score_element*) ;
33   static void add_item (Score_element*,Item*);
34 };
35
36 #endif /* SINGLE_MALT_GROUPING_ITEM_HH */
37