refactor Canvas so that all Items have children; add Container abstract base class...
[ardour.git] / libs / canvas / canvas / rectangle.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_RECTANGLE_H__
21 #define __CANVAS_RECTANGLE_H__
22
23 #include "canvas/visibility.h"
24 #include "canvas/item.h"
25 #include "canvas/types.h"
26 #include "canvas/outline.h"
27 #include "canvas/fill.h"
28
29 namespace ArdourCanvas
30 {
31
32 class LIBCANVAS_API Rectangle : public Item
33 {
34 public:
35         Rectangle (Canvas*);
36         Rectangle (Canvas*, Rect const &);
37         Rectangle (Item*);
38         Rectangle (Item*, Rect const &);
39         
40         void render (Rect const &, Cairo::RefPtr<Cairo::Context>) const;
41         void compute_bounding_box () const;
42
43         Rect const & get () const {
44                 return _rect;
45         }
46
47         Coord x0 () const {
48                 return _rect.x0;
49         }
50
51         Coord y0 () const {
52                 return _rect.y0;
53         }
54
55         Coord x1 () const {
56                 return _rect.x1;
57         }
58
59         Coord y1 () const {
60                 return _rect.y1;
61         }
62
63         void set (Rect const &);
64         void set_x0 (Coord);
65         void set_y0 (Coord);
66         void set_x1 (Coord);
67         void set_y1 (Coord);
68
69         enum What {
70                 LEFT = 0x1,
71                 RIGHT = 0x2,
72                 TOP = 0x4,
73                 BOTTOM = 0x8
74         };
75
76         void set_outline_what (What);
77         void set_outline_all () {
78                 set_outline_what (ArdourCanvas::Rectangle::What (ArdourCanvas::Rectangle::TOP|
79                                                                  ArdourCanvas::Rectangle::LEFT|
80                                                                  ArdourCanvas::Rectangle::RIGHT|
81                                                                  ArdourCanvas::Rectangle::BOTTOM));
82         }
83
84 private:
85         /** Our rectangle; note that x0 may not always be less than x1
86          *  and likewise with y0 and y1.
87          */
88         Rect _rect;
89         What _outline_what;
90 };
91
92 }
93
94 #endif