]> git.donarmstrong.com Git - lilypond.git/blob - lily/span-bar.cc
722dd45d77db41ddeb248d9bad560bb503347cbf
[lilypond.git] / lily / span-bar.cc
1 /*
2   span-bar.cc -- implement Span_bar
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "span-bar.hh"
10 #include "lookup.hh"
11 #include "dimensions.hh"
12 #include "paper-def.hh"
13 #include "molecule.hh"
14 #include "warn.hh"
15 #include "axis-group-interface.hh"
16 #include "group-interface.hh"
17 #include "score-element.hh"
18 #include "bar.hh"
19
20 void
21 Span_bar::add_bar (Score_element*me, Score_element*b)
22 {
23   Pointer_group_interface gi (me);
24   gi.add_element (b);
25
26   me->add_dependency (b);
27 }
28
29 Interval
30 Span_bar::width_callback (Score_element *se, Axis )
31 {
32   String gl = ly_scm2string (se->get_elt_property ("glyph"));
33
34   /*
35     urg.
36    */
37   Molecule m = Bar::compound_barline (se, gl, 40 PT);
38   
39   return m.extent (X_AXIS);
40 }
41
42 MAKE_SCHEME_CALLBACK(Span_bar,before_line_breaking);
43 SCM
44 Span_bar::before_line_breaking (SCM smob)
45 {
46   Bar::before_line_breaking (smob);
47   
48   evaluate_empty (unsmob_element (smob));
49
50   return SCM_UNSPECIFIED;
51 }
52
53 Real
54 Span_bar::center_on_spanned_callback (Score_element * me, Axis a)
55 {
56   assert (a == Y_AXIS);
57   Interval i (get_spanned_interval (me));
58
59   /*
60     Bar::brew_molecule delivers a barline of y-extent (-h/2,h/2), so
61     we have to translate ourselves to be in the center of the 
62     interval that we span.  */
63
64   return i.center ();
65 }
66
67 void
68 Span_bar::evaluate_empty (Score_element*me)
69 {
70   /*
71     TODO: filter all hara-kiried out of ELEMENS list, and then
72     optionally do suicide. Call this cleanage function from
73     center_on_spanned_callback() as well.
74     
75    */
76   if (!gh_pair_p (me->get_elt_property ("elements")))
77     {
78       me->suicide ();
79     }
80   
81   SCM gl = me->get_elt_property ("glyph");
82   if (!gh_string_p (gl))
83     {
84       me->suicide ();
85       return ; 
86     }
87   else {
88     String type_str = ly_scm2string (gl);
89     String orig = type_str;
90     if (type_str == "|:") 
91       {
92         type_str= ".|";
93       }
94     else if (type_str== ":|")
95       {
96         type_str= "|.";
97       }
98     else if (type_str== ":|:")
99       {
100         type_str= ".|.";
101       }
102     if (orig != type_str)
103       me->set_elt_property ("glyph", ly_str02scm (type_str.ch_C()));
104   }
105 }
106
107 Interval
108 Span_bar::get_spanned_interval (Score_element*me) 
109 {
110   return Axis_group_interface::group_extent_callback (me, Y_AXIS);  
111 }
112
113
114 MAKE_SCHEME_CALLBACK(Span_bar,get_bar_size);
115 SCM
116 Span_bar::get_bar_size (SCM smob)
117 {
118   Score_element* me =  unsmob_element (smob);
119   Interval iv (get_spanned_interval (me));
120   if (iv.empty_b ())
121     {
122       /*
123         This happens if the bars are hara-kiried from under us.
124        */
125       me->suicide ();
126       return gh_double2scm (-1);
127     }
128   return gh_double2scm (iv.length ());
129 }
130 void
131 Span_bar::set_interface (Score_element *me)
132 {
133   Bar::set_interface (me);
134   
135   Pointer_group_interface(me).set_interface ();
136   me->set_extent_callback (width_callback, X_AXIS);
137   me->add_offset_callback (center_on_spanned_callback, Y_AXIS);
138   me->set_interface (ly_symbol2scm ("span-bar-interface"));
139   me->set_extent_callback (0, Y_AXIS);
140 }
141
142 bool
143 Span_bar::has_interface (Score_element*m)
144 {
145   return m && m->has_interface (ly_symbol2scm ("span-bar-interface"));
146 }