Merge branch 'master' into cairocanvas
[ardour.git] / libs / canvas / canvas / arrow.h
1 /*
2     Copyright (C) 2011 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
21 /** @file  canvas/arrow.h
22  *  @brief Declaration of the Arrow canvas object.
23  */
24
25 #ifndef __CANVAS_ARROW_H__
26 #define __CANVAS_ARROW_H__
27
28 #include "canvas/group.h"
29
30 namespace ArdourCanvas {
31
32 class Line;
33 class Polygon;
34
35 /** A composite item which draws a line with arrow heads
36  *  at either or both ends.
37  *
38  *  The arrow heads are identified by the indices 0 and 1;
39  *  head 0 is at the (x0, y0) end of the line, and head 1
40  *  at the (x1, y1) end.
41  *
42  *  @todo Draws vertical lines only; could be generalised
43  *  to draw lines at any angle.
44  */
45         
46 class Arrow : public Group
47 {
48 public:
49         Arrow (Group *);
50
51         void set_show_head (int, bool);
52         void set_head_outward (int, bool);
53         void set_head_height (int, Distance);
54         void set_head_width (int, Distance);
55         void set_outline_width (Distance);
56         void set_color (Color);
57
58         Coord x () const;
59         Coord y1 () const;
60
61         void set_x (Coord);
62         void set_y0 (Coord);
63         void set_y1 (Coord);
64         
65 private:
66         void setup_polygon (int);
67
68         /** Representation of a single arrow head */
69         struct Head {
70                 Polygon* polygon; ///< the polygon which represents its shape
71                 bool show;        ///< true if this head should be visible
72                 bool outward;     ///< true if this head points out from the line
73                 Distance height;  ///< the height of the head
74                 Distance width;   ///< the maximum width of the head
75         };
76
77         /** our arrow heads; _heads[0] is at the (x0, y0) end of the line,
78          *  and _heads[1] at the (x1, y1) end.
79          */
80         Head _heads[2];
81
82         /** our line */
83         Line* _line;
84 };
85
86 }
87
88 #endif