lilypond-1.1.44
[lilypond.git] / lily / bar.cc
blob3c8f78452a8379c8a2fc196ac503e4ccb85d8718
1 /*
2 bar.cc -- implement Bar
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
9 #include "bar.hh"
10 #include "string.hh"
11 #include "molecule.hh"
12 #include "paper-def.hh"
13 #include "lookup.hh"
14 #include "debug.hh"
17 Bar::Bar ()
19 set_elt_property (breakable_scm_sym, SCM_BOOL_T);
20 type_str_ = "|";
23 void
24 Bar::do_print () const
26 #ifndef NPRINT
27 String s = type_str_;
28 if (s == "{")
29 s = "brace";
30 if (s == "[")
31 s = "bracket";
32 DOUT << "type = " << s;
33 #endif
36 Real
37 Bar::get_bar_size () const
39 return paper_l ()->get_var ("barsize");
43 Molecule*
44 Bar::do_brew_molecule_p () const
46 Molecule *output = new Molecule (lookup_l ()->bar (type_str_, get_bar_size ()));
48 return output;
51 /**
52 Prescriptions for splitting bars.
53 TODO: put this in SCM.
55 static char const *bar_breaks[][3] ={
56 {":|", ":|:", "|:"},
57 {"|", "|", ""},
58 {"", "|s", "|"},
59 {"", "|:", "|:"},
60 {"|.", "|.", ""},
61 {":|", ":|", ""},
62 {"||", "||", ""},
63 {".|.", ".|.", ""},
64 {"", "scorebar", "scorepostbreak"},
65 {"", "{", "{"},
66 {"", "[", "["},
67 {0,0,0}
70 void
71 Bar::do_pre_processing ()
73 for (int i=0; bar_breaks[i][0]; i++)
75 if (bar_breaks[i][1] == type_str_)
77 type_str_ = bar_breaks[i][break_status_dir ()+1];
78 break;
81 if (remove_elt_property (at_line_start_scm_sym)!= SCM_BOOL_F
82 && (break_status_dir () == RIGHT) && (type_str_ == ""))
84 type_str_ = "|";
87 if (type_str_ =="")
88 dim_cache_[X_AXIS]->set_empty (true);