]> git.donarmstrong.com Git - lilypond.git/blob - lily/horizontal-bracket.cc
Web-ja: update introduction
[lilypond.git] / lily / horizontal-bracket.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2002--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
5
6   LilyPond is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   LilyPond is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "horizontal-bracket.hh"
21
22 #include "bracket.hh"
23 #include "stencil.hh"
24 #include "pointer-group-interface.hh"
25 #include "directional-element-interface.hh"
26 #include "spanner.hh"
27 #include "item.hh"
28
29 MAKE_SCHEME_CALLBACK (Horizontal_bracket, print, 1);
30 SCM
31 Horizontal_bracket::print (SCM smob)
32 {
33   Spanner *me = unsmob<Spanner> (smob);
34   extract_grob_set (me, "columns", gs);
35
36   vector<Grob *> enclosed = gs;
37   if (!gs.size ())
38     {
39       me->suicide ();
40       return SCM_EOL;
41     }
42
43   for (LEFT_and_RIGHT (d))
44     {
45       Item *b = me->get_bound (d);
46       if (b->break_status_dir ())
47         enclosed.push_back (b);
48     }
49
50   Stencil b = Bracket::make_enclosing_bracket (me, me, enclosed, X_AXIS,
51                                                get_grob_direction (me));
52   return b.smobbed_copy ();
53 }
54
55 ADD_INTERFACE (Horizontal_bracket,
56                "A horizontal bracket encompassing notes.",
57
58                /* properties */
59                "bracket-flare "
60                "bracket-text "
61                "columns "
62                "edge-height "
63                "shorten-pair "
64                "connect-to-neighbor "
65               );
66