]> git.donarmstrong.com Git - lilypond.git/blob - lily/bar.cc
release: 1.3.18
[lilypond.git] / lily / bar.cc
1 /*
2   bar.cc -- implement Bar
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "dimension-cache.hh"
10 #include "bar.hh"
11 #include "string.hh"
12 #include "molecule.hh"
13 #include "paper-def.hh"
14 #include "lookup.hh"
15 #include "debug.hh"
16
17
18 Bar::Bar ()
19 {
20   set_elt_property ("breakable", SCM_BOOL_T);
21 }
22
23
24 Real
25 Bar::get_bar_size () const
26 {
27   // Never called!
28   return 0;
29 }
30
31
32 Molecule*
33 Bar::do_brew_molecule_p () const
34 {
35   String s = ly_scm2string (get_elt_property ("glyph"));
36   Molecule *output
37     = new Molecule (lookup_l ()->bar (s, get_bar_size (), paper_l ()));
38   
39   return output;
40 }
41
42
43
44 void
45 Bar::do_pre_processing ()
46 {
47   SCM g = get_elt_property ("glyph");
48   SCM breakdir = gh_int2scm (break_status_dir ());
49   
50   if (gh_string_p (g))
51     {
52       g = scm_eval (gh_list (ly_symbol2scm ("break-barline"),
53                              g,
54                              breakdir,
55                              SCM_UNDEFINED));
56     }
57   else
58     {
59       g = SCM_UNDEFINED;
60     }
61   
62 #if 0  
63   if (remove_elt_property ("at-line-start") == SCM_BOOL_T       // UGR.
64       && (break_status_dir () == RIGHT) && (type_str_ == ""))
65     {
66       type_str_ = "|";
67     }
68 #endif
69   
70   if (!gh_string_p (g))
71     {
72       set_elt_property ("transparent", SCM_BOOL_T);
73       set_empty (X_AXIS);      
74     }
75   else
76     set_elt_property ("glyph", g);
77 }
78   
79