NOOP, remove trailing tabs/whitespace.
[ardour.git] / libs / canvas / canvas / line_set.h
1 /*
2     Copyright (C) 2011-2013 Paul Davis
3     Author: Carl Hetherington <cth@carlh.net>
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #ifndef __CANVAS_LINESET_H__
21 #define __CANVAS_LINESET_H__
22
23 #include <vector>
24
25 #include "canvas/visibility.h"
26 #include "canvas/item.h"
27
28 namespace ArdourCanvas {
29
30 class LIBCANVAS_API LineSet : public Item
31 {
32 public:
33         enum Orientation {
34                 Vertical,
35                 Horizontal
36         };
37
38         LineSet (Canvas*, Orientation o = Vertical);
39         LineSet (Item*, Orientation o = Vertical);
40
41         void compute_bounding_box () const;
42         void render (Rect const & area, Cairo::RefPtr<Cairo::Context>) const;
43
44         bool covers (Duple const &) const;
45
46         void set_extent (Distance);
47         Distance extent() const { return _extent; }
48
49         void add (Coord, Distance, Color);
50         void clear ();
51
52         struct Line {
53                 Line (Coord p, Distance width_, Color color_) : pos (p), width (width_), color (color_) {}
54
55                 Coord pos;
56                 Distance width;
57                 Color color;
58         };
59
60 private:
61         std::vector<Line> _lines;
62         Distance          _extent;
63         Orientation       _orientation;
64 };
65
66 }
67
68 #endif /* __CANVAS_LINESET_H__ */