]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/axis-group-interface.hh
Use object callbacks for pure-height caching.
[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   DECLARE_SCHEME_CALLBACK (calc_pure_relevant_grobs, (SCM));
44   DECLARE_SCHEME_CALLBACK (calc_pure_relevant_items, (SCM));
45   DECLARE_SCHEME_CALLBACK (calc_pure_relevant_spanners, (SCM));
46   DECLARE_SCHEME_CALLBACK (calc_pure_y_common, (SCM));
47   static Interval relative_group_extent (vector<Grob*> const &list,
48                                          Grob *common, Axis);
49   static Interval relative_pure_height (Grob *me, int start, int end);
50   static Interval combine_pure_heights (Grob *me, SCM, int, int);
51   static Interval cached_pure_height (Grob *me, int, int);
52   static Interval begin_of_line_pure_height (Grob *me, int);
53   static Interval rest_of_line_pure_height (Grob *me, int, int);
54
55   static Skyline_pair skyline_spacing (Grob *me, vector<Grob*> elements);
56   static void add_element (Grob *me, Grob *);
57   static void set_axes (Grob *, Axis, Axis);
58   static bool has_axis (Grob *, Axis);
59   static void get_children (Grob *, vector<Grob*> *);
60   static Interval staff_extent (Grob *me, Grob *ref, Axis, Grob *staff, Axis);
61   static SCM calc_common (Grob *, Axis);
62   static Real minimum_distance (Grob*, Grob*, Axis);
63   static SCM calc_maybe_pure_next_staff_spacing (Grob*, bool, int, int);
64   DECLARE_GROB_INTERFACE();
65 };
66
67 #endif /* AXIS_GROUP_INTERFACE_HH */
68