]> git.donarmstrong.com Git - lilypond.git/blob - lily/volta-bracket.cc
release commit
[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--2004 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9 #include <string.h>
10
11 #include "box.hh"
12 #include "warn.hh"
13 #include "font-interface.hh"
14 #include "line-interface.hh"
15 #include "stencil.hh"
16 #include "paper-column.hh"
17 #include "output-def.hh"
18 #include "text-item.hh"
19 #include "volta-bracket.hh"
20 #include "group-interface.hh"
21 #include "side-position-interface.hh"
22 #include "directional-element-interface.hh"
23 #include "lookup.hh"
24
25 /*
26   this is too complicated. Yet another version of side-positioning,
27   badly implemented.
28
29   --
30
31   * Should look for system_start_delim to find left edge of staff.
32   
33 */
34
35 MAKE_SCHEME_CALLBACK (Volta_bracket_interface,print,1);
36 SCM
37 Volta_bracket_interface::print (SCM smob) 
38 {
39   Grob *me = unsmob_grob (smob);
40   Spanner *orig_span =  dynamic_cast<Spanner*> (me->original_);
41
42   bool broken_first_bracket = orig_span && (orig_span->broken_intos_[0] == (Spanner*)me);
43
44   bool broken_last_bracket = orig_span && (orig_span->broken_intos_.top () == (Spanner*)me);
45
46   bool no_vertical_start = orig_span && !broken_first_bracket;
47   bool no_vertical_end = orig_span && !broken_last_bracket;
48   SCM s = me->get_property ("bars");
49   Grob * endbar = scm_is_pair (s) ?  unsmob_grob (ly_car (s)) : 0;
50   SCM glyph = endbar ? endbar->get_property ("glyph") : SCM_EOL;
51   
52   String str;
53   if (scm_is_string (glyph))
54     str = ly_scm2string (glyph);
55   else
56     str = "|";
57   
58   const char* cs = str.to_str0 ();
59   no_vertical_end |=
60     (strcmp (cs,":|")!=0 && strcmp (cs,"|:")!=0 && strcmp (cs,"|.")!=0
61      && strcmp (cs,":|:")!=0 && strcmp (cs,".|")!=0);
62
63   Output_def * paper =me->get_paper ();
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 (paper->self_scm (), properties, text);
104       Stencil num = *unsmob_stencil (snum);
105
106       mol.add_at_edge (X_AXIS, LEFT, num, - num.extent (X_AXIS).length ()
107                        - 1.0, 0);
108     }
109   mol.translate_axis (left, X_AXIS);
110   return mol.smobbed_copy ();
111 }
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