]> git.donarmstrong.com Git - lilypond.git/blob - lily/axis-group-interface-scheme.cc
Issue 4550 (1/2) Avoid "using namespace std;" in included files
[lilypond.git] / lily / axis-group-interface-scheme.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2005--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 "axis-group-interface.hh"
21 #include "lily-guile.hh"
22 #include "grob.hh"
23 #include "grob-array.hh"
24
25 using std::vector;
26
27 LY_DEFINE (ly_relative_group_extent, "ly:relative-group-extent",
28            3, 0, 0, (SCM elements, SCM common, SCM axis),
29            "Determine the extent of @var{elements} relative to @var{common} in the"
30            " @var{axis} direction.")
31 {
32   Grob_array *ga = unsmob<Grob_array> (elements);
33
34   SCM_ASSERT_TYPE (ga || scm_is_pair (elements), elements, SCM_ARG1, __FUNCTION__, "list or Grob_array");
35   LY_ASSERT_SMOB (Grob, common, 2);
36   LY_ASSERT_TYPE (is_axis, axis, 3);
37
38   vector<Grob *> elts;
39   if (!ga)
40     {
41       for (SCM s = elements; scm_is_pair (s); s = scm_cdr (s))
42         elts.push_back (unsmob<Grob> (scm_car (s)));
43     }
44
45   Interval ext = Axis_group_interface::relative_group_extent (ga ? ga->array () : elts,
46                                                               unsmob<Grob> (common),
47                                                               (Axis) scm_to_int (axis));
48   return ly_interval2scm (ext);
49 }
50
51 LY_DEFINE (ly_generic_bound_extent, "ly:generic-bound-extent",
52            2, 0, 0, (SCM grob, SCM common),
53            "Determine the extent of @var{grob} relative to @var{common} along"
54            " the X axis, finding its extent as a bound when it a has"
55            " @code{bound-alignment-interfaces} property list set and"
56            " otherwise the full extent.")
57 {
58   LY_ASSERT_SMOB (Grob, grob, 1);
59   LY_ASSERT_SMOB (Grob, common, 2);
60
61   Interval ext = Axis_group_interface::generic_bound_extent (unsmob<Grob> (grob), unsmob<Grob> (common), X_AXIS);
62   return ly_interval2scm (ext);
63 }
64
65 LY_DEFINE (ly_axis_group_interface__add_element, "ly:axis-group-interface::add-element",
66            2, 0, 0, (SCM grob, SCM grob_element),
67            "Set @var{grob} the parent of @var{grob-element} on all axes of"
68            " @var{grob}.")
69 {
70   LY_ASSERT_SMOB (Grob, grob, 1);
71   LY_ASSERT_SMOB (Grob, grob_element, 2);
72   Axis_group_interface::add_element (unsmob<Grob> (grob), unsmob<Grob> (grob_element));
73   return SCM_UNSPECIFIED;
74 }