mackie: more debug tracing
[ardour.git] / libs / canvas / canvas / framed_curve.h
1 /*
2     Copyright (C) 2013 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19 #ifndef __CANVAS_FRAMED_CURVE_H__
20 #define __CANVAS_FRAMED_CURVE_H__
21
22 #include "canvas/visibility.h"
23
24 #include "canvas/interpolated_curve.h"
25 #include "canvas/poly_item.h"
26 #include "canvas/fill.h"
27
28 /* similar to a Curve, with the first point being a height definition rather than a point to
29    interpolate.
30 */
31
32 namespace ArdourCanvas {
33
34 class LIBCANVAS_API FramedCurve : public PolyItem, public InterpolatedCurve
35 {
36   public:
37     FramedCurve (Canvas*);
38     FramedCurve (Item*);
39
40     enum CurveFill {
41             None,
42             Inside,
43             Outside,
44     };
45
46     void compute_bounding_box () const;
47     void render (Rect const & area, Cairo::RefPtr<Cairo::Context>) const;
48     void set (Points const &);
49
50     void set_points_per_segment (uint32_t n);
51
52     bool covers (Duple const &) const;
53     void set_fill_mode (CurveFill cf) { curve_fill = cf; }
54
55   private:
56     Points samples;
57     Points::size_type n_samples;
58     uint32_t points_per_segment;
59     CurveFill curve_fill;
60
61     void interpolate ();
62 };
63
64 }
65
66 #endif