~ubuntu-branches/ubuntu/precise/lilypond/precise

« back to all changes in this revision

Viewing changes to lily/include/separation-item.hh

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Bushnell, BSG
  • Date: 2006-12-19 10:18:12 UTC
  • mfrom: (3.1.4 feisty)
  • Revision ID: james.westby@ubuntu.com-20061219101812-7awtjkp0i393wxty
Tags: 2.8.7-3
scripts/midi2ly.py: When setting DATADIR, find Lilypond python files
in the @TOPLEVEL_VERSION@ directory, not 'current'.  Patch thanks to
Chris Lamb (chris@chris-lamb.co.uk).  (Closes: #400550)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*   
 
1
/*
2
2
  single-malt-grouping-item.hh -- declare Separation_item
3
 
  
 
3
 
4
4
  source file of the GNU LilyPond music typesetter
5
 
  
6
 
  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7
 
  
8
 
 */
 
5
 
 
6
  (c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
 
7
*/
9
8
 
10
9
#ifndef SINGLE_MALT_GROUPING_ITEM_HH
11
10
#define SINGLE_MALT_GROUPING_ITEM_HH
15
14
 
16
15
struct Separation_item
17
16
{
18
 
  static bool has_interface (Grob*);
19
 
  static Interval conditional_width (Grob*,Grob*) ;
20
 
  static Interval width (Grob*) ;
21
 
  static Interval relative_width (Grob*, Grob*) ;
22
 
  static Grob*extremal_break_aligned_grob (Grob*,Direction, Interval*);
23
 
  static void add_item (Grob*,Item*);
24
 
  static void add_conditional_item (Grob*,Grob*);  
 
17
  static bool has_interface (Grob *);
 
18
  static Interval conditional_width (Grob *, Grob *);
 
19
  static Interval width (Grob *);
 
20
  static Interval relative_width (Grob *, Grob *);
 
21
  static Grob *extremal_break_aligned_grob (Grob *, Direction, Interval *);
 
22
  static void add_item (Grob *, Item *);
 
23
  static void add_conditional_item (Grob *, Grob *);
25
24
};
26
25
 
27
26
#endif /* SINGLE_MALT_GROUPING_ITEM_HH */