]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/skyline-pair.hh
Merge remote branch 'origin/release/unstable' into HEAD
[lilypond.git] / lily / include / skyline-pair.hh
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2008--2012 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
26 {
27 private:
28   Drul_array<Skyline> skylines_;
29
30   DECLARE_SIMPLE_SMOBS (Skyline_pair);
31 public:
32   Skyline_pair ();
33   Skyline_pair (vector<Box> const &boxes, Axis a);
34   Skyline_pair (vector<Drul_array<Offset> > const &buildings, Axis a);
35   Skyline_pair (vector<Skyline_pair> const &skypairs);
36   Skyline_pair (Box const &, Axis a);
37
38   void raise (Real);
39   void shift (Real);
40   void deholify ();
41   void insert (Box const &, Axis);
42   void merge (Skyline_pair const &other);
43   Skyline &operator [] (Direction d);
44   Skyline const &operator [] (Direction d) const;
45   bool is_empty () const;
46   void print () const;
47   void print_points () const;
48
49   DECLARE_SCHEME_CALLBACK (skyline, (SCM, SCM));
50 };
51
52 #endif /* SKYLINE_PAIR_HH */