]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/skyline-pair.hh
Merge branch 'issue4082'
[lilypond.git] / lily / include / skyline-pair.hh
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2008--2014 Han-Wen Nienhuys <hanwen@lilypond.org>
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 SKYLINE_PAIR_HH
21 #define SKYLINE_PAIR_HH
22
23 #include "skyline.hh"
24
25 class Skyline_pair : public Simple_smob<Skyline_pair>
26 {
27 public:
28   static int print_smob (SCM, SCM, scm_print_state *);
29   static const char type_p_name_[];
30 private:
31   Drul_array<Skyline> skylines_;
32
33 public:
34   Skyline_pair ();
35   Skyline_pair (vector<Box> const &boxes, Axis a);
36   Skyline_pair (vector<Drul_array<Offset> > const &buildings, Axis a);
37   Skyline_pair (vector<Skyline_pair> const &skypairs);
38   Skyline_pair (Box const &, Axis a);
39
40   Real left () const;
41   Real right () const;
42   void raise (Real);
43   void shift (Real);
44   void deholify ();
45   void insert (Box const &, Axis);
46   void merge (Skyline_pair const &other);
47   Skyline &operator [] (Direction d);
48   Skyline const &operator [] (Direction d) const;
49   bool is_empty () const;
50   void print () const;
51   void print_points () const;
52
53   DECLARE_SCHEME_CALLBACK (skyline, (SCM, SCM));
54 };
55
56 #endif /* SKYLINE_PAIR_HH */