Fixes Issue 1504, allowing feather beam line breaking.
[lilypond/patrick.git] / lily / spanner-scheme.cc
blobf2a9f0f939afd41b66b0218eb53fe348f35536ee
1 /*
2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 2007--2011 Han-Wen Nienhuys <hanwen@lilypond.org>
7 LilyPond is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 LilyPond is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
21 #include "spanner.hh"
22 #include "item.hh"
24 LY_DEFINE (ly_spanner_bound, "ly:spanner-bound",
25 2, 0, 0, (SCM spanner, SCM dir),
26 "Get one of the bounds of @var{spanner}. @var{dir} is @code{-1}"
27 " for left, and @code{1} for right.")
29 LY_ASSERT_TYPE (unsmob_spanner, spanner, 1);
30 LY_ASSERT_TYPE (is_direction, dir, 2);
31 Item *bound = unsmob_spanner (spanner)->get_bound (to_dir (dir));
32 return bound ? bound->self_scm () : SCM_EOL;
35 LY_DEFINE (ly_spanner_set_bound_x, "ly:spanner-set-bound!",
36 3, 0, 0, (SCM spanner, SCM dir, SCM item),
37 "Set grob @var{item} as bound in direction @var{dir} for"
38 " @var{spanner}.")
40 LY_ASSERT_TYPE (unsmob_spanner, spanner, 1);
41 LY_ASSERT_TYPE (is_direction, dir, 2);
42 LY_ASSERT_TYPE (unsmob_item, item, 3);
44 unsmob_spanner (spanner)->set_bound (to_dir (dir), unsmob_item (item));
45 return SCM_UNSPECIFIED;
48 /* TODO: maybe we should return a vector -- random access is more
49 logical for this list? */
50 LY_DEFINE (ly_spanner_broken_into, "ly:spanner-broken-into",
51 1, 0, 0, (SCM spanner),
52 "Return broken-into list for @var{spanner}.")
54 LY_ASSERT_TYPE (unsmob_spanner, spanner, 1);
55 Spanner *me = dynamic_cast<Spanner *> (unsmob_grob (spanner));
57 SCM s = SCM_EOL;
58 for (vsize i = me->broken_intos_.size (); i--;)
59 s = scm_cons (me->broken_intos_[i]->self_scm (), s);
60 return s;
63 LY_DEFINE (ly_spanner_p, "ly:spanner?",
64 1, 0, 0, (SCM g),
65 "Is @var{g} a spanner object?")
67 Grob *me = unsmob_grob (g);
68 bool b = dynamic_cast<Spanner *> (me);
70 return ly_bool2scm (b);