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

« back to all changes in this revision

Viewing changes to lily/include/staff-spacing.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
 
/*   
2
 
staff-spacing.hh -- declare Staff_spacing
3
 
 
4
 
source file of the GNU LilyPond music typesetter
5
 
 
6
 
(c) 2001--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7
 
 
8
 
 */
 
1
/*
 
2
  staff-spacing.hh -- declare Staff_spacing
 
3
 
 
4
  source file of the GNU LilyPond music typesetter
 
5
 
 
6
  (c) 2001--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
 
7
*/
9
8
 
10
9
#ifndef STAFF_SPACING_HH
11
10
#define STAFF_SPACING_HH
15
14
class Staff_spacing
16
15
{
17
16
public:
18
 
  static Real next_notes_correction (Grob*, Grob*);
19
 
  static Real next_note_correction (Grob*, Grob*, Interval);  
20
 
  static bool has_interface (Grob*);
21
 
  static void get_spacing_params (Grob*,Real*,Real*);
 
17
  static void next_notes_correction (Grob *, Grob *, Real *, Real *);
 
18
  static void next_note_correction (Grob *, Grob *, Interval, Real*, Real *);
 
19
  static bool has_interface (Grob *);
 
20
  static void get_spacing_params (Grob *, Real *, Real *);
22
21
 
23
 
  static Interval bar_y_positions (Grob*);
 
22
  static Interval bar_y_positions (Grob *);
24
23
};
25
24
 
26
25
#endif /* STAFF_SPACING_HH */