]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/axis-group-interface.hh
Merge branch 'master' into lilypond/translation
[lilypond.git] / lily / include / axis-group-interface.hh
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2000--2010 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 #ifndef AXIS_GROUP_INTERFACE_HH
21 #define AXIS_GROUP_INTERFACE_HH
22
23 #include "std-vector.hh"
24 #include "lily-proto.hh"
25 #include "grob-interface.hh"
26 #include "skyline.hh"
27
28 struct Axis_group_interface
29 {
30   static SCM generic_group_extent (Grob *me, Axis a);
31   static Interval pure_group_height (Grob *me, int start, int end);
32   DECLARE_SCHEME_CALLBACK (width, (SCM smob));
33   DECLARE_SCHEME_CALLBACK (calc_x_common, (SCM smob));
34   DECLARE_SCHEME_CALLBACK (calc_y_common, (SCM smob));
35   DECLARE_SCHEME_CALLBACK (height, (SCM smob));
36   DECLARE_SCHEME_CALLBACK (pure_height, (SCM smob, SCM start, SCM end));
37   DECLARE_SCHEME_CALLBACK (calc_skylines, (SCM smob));
38   DECLARE_SCHEME_CALLBACK (combine_skylines, (SCM smob));
39   DECLARE_SCHEME_CALLBACK (print, (SCM smob));
40   DECLARE_SCHEME_CALLBACK (adjacent_pure_heights, (SCM));
41   DECLARE_SCHEME_CALLBACK (calc_next_staff_spacing, (SCM));
42   DECLARE_SCHEME_CALLBACK (calc_pure_next_staff_spacing, (SCM, SCM, SCM));
43   static Interval relative_group_extent (vector<Grob*> const &list,
44                                          Grob *common, Axis);
45   static Interval relative_pure_height (Grob *me, int start, int end);
46   static Interval combine_pure_heights (Grob *me, SCM, int, int);
47   static Interval cached_pure_height (Grob *me, int, int);
48   static Interval begin_of_line_pure_height (Grob *me, int);
49   static Interval rest_of_line_pure_height (Grob *me, int, int);
50
51   static Grob *calc_pure_elts_and_common (Grob*);
52   static Skyline_pair skyline_spacing (Grob *me, vector<Grob*> elements);
53   static void add_element (Grob *me, Grob *);
54   static void set_axes (Grob *, Axis, Axis);
55   static bool has_axis (Grob *, Axis);
56   static void get_children (Grob *, vector<Grob*> *);
57   static Interval staff_extent (Grob *me, Grob *ref, Axis, Grob *staff, Axis);
58   static SCM calc_common (Grob *, Axis);
59   static Real minimum_distance (Grob*, Grob*, Axis);
60   static SCM calc_maybe_pure_next_staff_spacing (Grob*, bool, int, int);
61   DECLARE_GROB_INTERFACE();
62 };
63
64 #endif /* AXIS_GROUP_INTERFACE_HH */
65