]> git.donarmstrong.com Git - lilypond.git/blob - lily/grace-align-item.cc
release: 1.3.53
[lilypond.git] / lily / grace-align-item.cc
1 /*   
2   grace-align-item.cc --  implement Grace_align_item
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1999--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #include "grace-align-item.hh"
11 #include "align-interface.hh"
12 #include "lookup.hh"
13 #include "paper-column.hh"
14 #include "paper-def.hh"
15
16 Grace_align_item::Grace_align_item ()
17 {
18   set_elt_property ("stacking-dir", gh_int2scm (RIGHT));
19   Align_interface (this).set_interface();
20   Align_interface (this).set_axis (X_AXIS);
21 }
22
23 /*
24   TODO: cfg-able
25  */
26 void
27 Grace_align_item::before_line_breaking ()
28 {
29   Real nhw = // lookup_l ()->notehead (2, "")..extent (X_AXIS).length();
30     paper_l ()->get_var ("quartwidth");
31   
32   set_elt_property ("threshold",
33                     gh_cons (gh_double2scm (nhw* 1.5),
34                              gh_double2scm (infinity_f)));
35   column_l ()->set_elt_property ("contains-grace", SCM_BOOL_T);
36 }
37
38
39 void
40 Grace_align_item::do_add_processing ()
41 {
42 }
43