]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/tuplet-bracket.hh
partial: 1.5.47.jcn
[lilypond.git] / lily / include / tuplet-bracket.hh
1
2 /*
3   tuplet-bracket.hh -- part of GNU LilyPond
4
5   (c)  1997--2002 Jan Nieuwenhuizen <janneke@gnu.org>
6 */
7
8 #ifndef Tuplet_bracket_HH
9 #define Tuplet_bracket_HH
10
11 #include "lily-guile.hh"
12
13 /*
14
15     TODO: quantise, we don't want to collide with staff lines.
16  (or should we be above staff?)
17
18   todo: handle breaking elegantly.
19 */
20 class Tuplet_bracket
21 {
22 public:
23   DECLARE_SCHEME_CALLBACK (brew_molecule, (SCM ));
24   static bool has_interface (Grob*);
25
26   static void add_column (Grob*me,Item*);
27   static void add_beam (Grob*me,Grob*);
28
29   static void calc_dy (Grob*,Real *) ;
30   static void calc_position_and_height (Grob*,Real*,Real *dy);
31   
32   DECLARE_SCHEME_CALLBACK (after_line_breaking, (SCM ));
33
34   static Direction get_default_dir (Grob*);
35 };
36
37 #endif // Tuplet_bracket_HH
38