]> git.donarmstrong.com Git - lilypond.git/blob - lily/volta-bracket.cc
* lily/ly-module.cc (make_stand_in_procs_weak): only kludge if
[lilypond.git] / lily / volta-bracket.cc
1 /*
2   volta-bracket.cc -- implement Volta_bracket_interface
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2005 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9 #include <cstring>
10
11 #include "warn.hh"
12 #include "font-interface.hh"
13 #include "line-interface.hh"
14 #include "paper-column.hh"
15 #include "output-def.hh"
16 #include "text-interface.hh"
17 #include "volta-bracket.hh"
18 #include "pointer-group-interface.hh"
19 #include "side-position-interface.hh"
20 #include "directional-element-interface.hh"
21 #include "lookup.hh"
22
23 /*
24   this is too complicated. Yet another version of side-positioning,
25   badly implemented.
26
27   --
28
29   * Should look for system_start_delim to find left edge of staff.
30   */
31
32 MAKE_SCHEME_CALLBACK (Volta_bracket_interface, print, 1);
33 SCM
34 Volta_bracket_interface::print (SCM smob)
35 {
36   Grob *me = unsmob_grob (smob);
37   Spanner *orig_span = dynamic_cast<Spanner *> (me->original_);
38
39   bool broken_first_bracket = orig_span && (orig_span->broken_intos_[0] == (Spanner *)me);
40
41   bool broken_last_bracket = orig_span && (orig_span->broken_intos_.top () == (Spanner *)me);
42
43   bool no_vertical_start = orig_span && !broken_first_bracket;
44   bool no_vertical_end = orig_span && !broken_last_bracket;
45
46   extract_grob_set (me, "bars", bars);
47   Grob *endbar = bars.size () ? bars.top () : 0;
48   SCM glyph = endbar ? endbar->get_property ("glyph") : SCM_EOL;
49
50   String str;
51   if (scm_is_string (glyph))
52     str = ly_scm2string (glyph);
53   else
54     str = "|";
55
56   no_vertical_end
57     |= (str != ":|"
58         && str != "|:"
59         && str != "|."
60         && str != ":|:"
61         && str != ".|");
62
63   Output_def *layout = me->get_layout ();
64   Real half_space = 0.5;
65
66   Item *bound = dynamic_cast<Spanner *> (me)->get_bound (LEFT);
67
68   /*
69     not a start, but really broken in two
70   */
71   Real left = 0.;
72   if (bound->break_status_dir () == RIGHT)
73     {
74       Paper_column *pc = bound->get_column ();
75       left = pc->extent (pc, X_AXIS)[RIGHT] - bound->relative_coordinate (pc, X_AXIS);
76     }
77   else
78     {
79       /*
80         the volta spanner is attached to the bar-line, which is moved
81         to the right. We don't need to compensate for the left edge.
82       */
83     }
84
85   Real w = dynamic_cast<Spanner *> (me)->spanner_length () - left - half_space;
86   Real h = robust_scm2double (me->get_property ("height"), 1);
87
88   Stencil start, end;
89   if (!no_vertical_start)
90     start = Line_interface::line (me, Offset (0, 0), Offset (0, h));
91
92   if (!no_vertical_end)
93     end = Line_interface::line (me, Offset (w, 0), Offset (w, h));
94
95   Stencil mol = Line_interface::line (me, Offset (0, h), Offset (w, h));
96   mol.add_stencil (start);
97   mol.add_stencil (end);
98
99   if (!orig_span || broken_first_bracket)
100     {
101       SCM text = me->get_property ("text");
102       SCM properties = me->get_property_alist_chain (SCM_EOL);
103       SCM snum = Text_interface::interpret_markup (layout->self_scm (),
104                                                    properties, text);
105       Stencil num = *unsmob_stencil (snum);
106
107       mol.add_at_edge (X_AXIS, LEFT, num, - num.extent (X_AXIS).length ()
108                        - 1.0, 0);
109     }
110   mol.translate_axis (left, X_AXIS);
111   return mol.smobbed_copy ();
112 }
113
114 void
115 Volta_bracket_interface::add_bar (Grob *me, Item *b)
116 {
117   Pointer_group_interface::add_grob (me, ly_symbol2scm ("bars"), b);
118   Side_position_interface::add_support (me, b);
119   add_bound_item (dynamic_cast<Spanner *> (me), b);
120 }
121
122 void
123 Volta_bracket_interface::add_column (Grob *me, Grob *c)
124 {
125   Side_position_interface::add_support (me, c);
126 }
127
128 ADD_INTERFACE (Volta_bracket_interface, "volta-bracket-interface",
129                "Volta bracket with number",
130                "bars thickness height");
131