]> git.donarmstrong.com Git - lilypond.git/blob - lily/horizontal-bracket.cc
($(outdir)/%.pdf): add DVIPS_FLAGS. This will
[lilypond.git] / lily / horizontal-bracket.cc
1 /*   
2   horizontal-bracket.cc --  implement  Horizontal_bracket
3
4   source file of the GNU LilyPond music typesetter
5
6 (c) 2002--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7
8  */
9
10 #include "side-position-interface.hh"
11 #include "lookup.hh"
12 #include "group-interface.hh"
13 #include "directional-element-interface.hh"
14 #include "paper-def.hh"
15 #include "staff-symbol-referencer.hh"
16
17 struct Horizontal_bracket
18 {
19   DECLARE_SCHEME_CALLBACK (print, (SCM));
20   static bool has_interface (Grob*);
21 };
22
23
24 /*
25   TODO:
26
27   This doesn't look very elegant: should support winged edges.
28
29   Support texts on the brackets?
30
31 */
32
33 MAKE_SCHEME_CALLBACK(Horizontal_bracket, print, 1);
34
35 SCM
36 Horizontal_bracket::print (SCM smob)
37 {
38   Grob * me = unsmob_grob (smob);
39   Spanner *sp = dynamic_cast<Spanner*> (me);
40   Link_array<Grob> gs = Pointer_group_interface__extract_grobs (me,(Grob*)0, "columns");
41
42   if (!gs.size())
43     {
44       me->suicide();
45       return SCM_EOL;
46     }
47   Grob * cx = common_refpoint_of_array (gs, me, X_AXIS);
48   cx = cx->common_refpoint (sp->get_bound (LEFT), X_AXIS);
49   cx = cx->common_refpoint (sp->get_bound (RIGHT),X_AXIS);
50
51   Interval ext = gs.top()->extent (cx, X_AXIS);
52   ext.unite (gs[0]->extent (cx, X_AXIS));
53
54   Direction d = get_grob_direction (me);
55
56   Real thickness = Staff_symbol_referencer::line_thickness (me);
57   thickness *= robust_scm2double (me->get_grob_property ("thickness"), 1.0);
58   
59   Stencil b = Lookup::bracket (X_AXIS, ext, thickness, - d* 1.0, thickness/2); 
60   
61   b.translate_axis ( - sp->get_bound (LEFT)->relative_coordinate (cx, X_AXIS), X_AXIS);
62
63   return b.smobbed_copy();  
64 }
65
66 ADD_INTERFACE (Horizontal_bracket,"horizontal-bracket-interface",
67   "A horizontal bracket encompassing notes.",
68   "thickness columns direction");
69