]> git.donarmstrong.com Git - lilypond.git/blob - lily/span-bar.cc
release: 1.3.56
[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 #include "dimension-cache.hh"
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
18 void
19 Span_bar::add_bar (Score_element*b)
20 {
21   Pointer_group_interface gi (this);
22   gi.add_element (b);
23
24   add_dependency (b);
25 }
26
27
28 Interval
29 Span_bar::width_callback (Score_element const *se, Axis )
30 {
31   Span_bar*  s= dynamic_cast<Span_bar*> ((Score_element*)se);
32   String gl = ly_scm2string (s->get_elt_property ("glyph"));
33
34   /*
35     urg.
36    */
37   Molecule m = s->compound_barline (gl, 40 PT);
38   
39   return m.extent (X_AXIS);
40 }
41
42 void
43 Span_bar::before_line_breaking ()
44 {
45   Bar::before_line_breaking ();
46   
47   evaluate_empty ();
48 }
49
50 void
51 Span_bar::after_line_breaking ()
52 {
53   Bar::after_line_breaking ();
54   Interval i (get_spanned_interval ());
55   translate_axis (i.center (), Y_AXIS);
56 }
57
58 void
59 Span_bar::evaluate_empty ()
60
61   if (!gh_pair_p (get_elt_pointer ("elements")))
62     {
63       suicide ();
64     }
65   
66   SCM gl = get_elt_property ("glyph");
67   if (!gh_string_p (gl))
68     {
69       suicide ();
70       return ; 
71     }
72   else {
73     String type_str = ly_scm2string (gl);
74     String orig = type_str;
75     if (type_str == "|:") 
76       {
77         type_str= ".|";
78       }
79     else if (type_str== ":|")
80       {
81         type_str= "|.";
82       }
83     else if (type_str== ":|:")
84       {
85         type_str= ".|.";
86       }
87     if (orig != type_str)
88       set_elt_property ("glyph", ly_str02scm (type_str.ch_C()));
89   }
90 }
91
92 Interval
93 Span_bar::get_spanned_interval () const
94 {
95   return Axis_group_interface::group_extent_callback (this, Y_AXIS);  
96 }
97
98
99 Real
100 Span_bar::get_bar_size () const
101 {
102   Interval iv (get_spanned_interval ());
103   if (iv.empty_b ())
104     {
105       programming_error("Huh? My children deflated (FIXME)");
106       iv = Interval (0,0);
107     }
108   return iv.length ();
109 }
110
111 Span_bar::Span_bar (SCM s)
112   : Bar (s)
113 {
114   Pointer_group_interface(this).set_interface ();
115   set_extent_callback (width_callback, X_AXIS);
116   
117   // dim_cache_[Y_AXIS]->set_extent_callback (Axis_group_interface::group_extent_callback);
118
119   set_extent_callback (0, Y_AXIS);
120 }
121