Bump version.
[lilypond.git] / lily / parenthesis-engraver.cc
blobd3382070e0af877b9e41cb565668b26bdc4aa657
1 /*
2 parenthesis-engraver.cc -- implement Parenthesis_engraver
4 source file of the GNU LilyPond music typesetter
6 (c) 2005--2009 Han-Wen Nienhuys <hanwen@xs4all.nl>
8 */
10 #include "engraver.hh"
12 #include "item.hh"
13 #include "pointer-group-interface.hh"
14 #include "simple-closure.hh"
15 #include "stream-event.hh"
16 #include "warn.hh"
18 #include "translator.icc"
20 class Parenthesis_engraver : public Engraver
22 TRANSLATOR_DECLARATIONS (Parenthesis_engraver);
24 protected:
25 DECLARE_ACKNOWLEDGER (grob);
28 Parenthesis_engraver::Parenthesis_engraver ()
32 void
33 Parenthesis_engraver::acknowledge_grob (Grob_info info)
35 if (Stream_event *ev = info.event_cause ())
37 if (to_boolean (ev->get_property ("parenthesize")))
39 if (Item *victim = dynamic_cast<Item*> (info.grob ()))
41 Engraver *eng = dynamic_cast<Engraver*> (info.origin_translator ());
42 Item *paren = eng->make_item ("ParenthesesItem", victim->self_scm ());
43 Pointer_group_interface::add_grob (paren, ly_symbol2scm ("elements"), victim);
45 paren->set_parent (victim, Y_AXIS);
47 Real size = robust_scm2double (paren->get_property ("font-size"), 0.0)
48 + robust_scm2double (victim->get_property ("font-size"), 0.0);
49 paren->set_property ("font-size", scm_from_double (size));
52 TODO?
54 enlarge victim to allow for parentheses space?
57 else
59 programming_error ("Don't know how to parenthesize spanners.");
65 ADD_ACKNOWLEDGER (Parenthesis_engraver, grob);
66 ADD_TRANSLATOR (Parenthesis_engraver,
67 /* doc */
68 "Parenthesize objects whose music cause has the"
69 " @code{parenthesize} property.",
71 /* create */
72 "ParenthesesItem ",
74 /* read */
75 "",
77 /* write */