]> git.donarmstrong.com Git - lilypond.git/blob - lily/lyric-extender.cc
d57244cdb46f0c80e9f246a5afb9ff71236b9167
[lilypond.git] / lily / lyric-extender.cc
1 /*
2   lyric-extender.cc -- implement Lyric_extender
3   source file of the GNU LilyPond music typesetter
4
5   (c) 1998--2004 Jan Nieuwenhuizen <janneke@gnu.org>
6   Han-Wen Nienhuys
7 */
8
9 #include <math.h>
10
11 #include "box.hh"
12 #include "warn.hh"
13 #include "lookup.hh"
14 #include "stencil.hh"
15 #include "paper-column.hh"
16 #include "output-def.hh"
17 #include "lyric-extender.hh"
18 #include "note-head.hh"
19 #include "group-interface.hh"
20
21
22
23 MAKE_SCHEME_CALLBACK (Lyric_extender, print, 1)
24 SCM 
25 Lyric_extender::print (SCM smob) 
26 {
27   Spanner *me = unsmob_spanner (smob);
28   Item *le = me->get_bound (LEFT);
29   Item *right_text = unsmob_item (me->get_property ("next"));
30   
31   Grob *common = le->common_refpoint (right_text, X_AXIS);
32   common = common->common_refpoint (me->get_bound (RIGHT), X_AXIS);
33   Real sl = me->get_paper ()->get_dimension (ly_symbol2scm ("linethickness"));  
34
35   Link_array<Grob> heads (Pointer_group_interface__extract_grobs (me, (Grob*)0,
36                                                                   "heads"));
37
38   if (!heads.size ())
39     return SCM_EOL;
40
41   common = common_refpoint_of_array (heads, common, X_AXIS);
42   
43   Real left_point = 0.0;
44   if (le->internal_has_interface (ly_symbol2scm ("lyric-syllable-interface")))
45     left_point = le->extent (common, X_AXIS)[RIGHT];
46   else if (heads.size ())
47     left_point = heads[0]->extent (common, X_AXIS)[LEFT];
48   else
49     left_point = le->extent (common, X_AXIS)[RIGHT];
50
51   if (isinf (left_point))
52     return SCM_EOL;
53
54   /* It seems that short extenders are even lengthened to go past the
55      note head, but haven't found a pattern in it yet. --hwn 1/1/04  */
56   SCM minlen = me->get_property ("minimum-length");
57   Real right_point
58     = left_point + (robust_scm2double  (minlen, 0));
59
60   if (heads.size ())
61     right_point = right_point >? heads.top ()->extent (common, X_AXIS)[RIGHT];
62
63   Real h = sl * robust_scm2double (me->get_property ("thickness"), 0);
64   Real pad = 2* h;
65
66   if (right_text)
67     right_point = right_point <? (robust_relative_extent (right_text, common, X_AXIS)[LEFT] - pad);
68
69   /* run to end of line. */
70   right_point = right_point >? (me->get_bound (RIGHT)->extent (common, X_AXIS)[LEFT] - pad);
71   
72   left_point += pad;
73
74   Real w = right_point - left_point;
75
76   if (w < 1.5 * h)
77     return SCM_EOL;
78   
79   Stencil  mol (Lookup::round_filled_box (Box (Interval (0, w),
80                                                Interval (0, h)),
81                                           0.8 * h));
82   mol.translate_axis (left_point - me->relative_coordinate (common, X_AXIS),
83                       X_AXIS);
84   return mol.smobbed_copy ();
85 }
86
87
88 ADD_INTERFACE (Lyric_extender,"lyric-extender-interface",
89                "The extender is a simple line at the baseline of the lyric "
90                "that helps show the length of a melissima (tied/slurred note).",
91                "next thickness heads");