change UIConfig to use accessor/setter methods like RCConfig so that ParameterChanged...
[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/item.h"
24 #include "canvas/types.h"
25 #include "canvas/outline.h"
26 #include "canvas/fill.h"
27
28 namespace ArdourCanvas
29 {
30
31 class Rectangle : virtual public Item, public Outline, public Fill
32 {
33 public:
34         Rectangle (Group *);
35         Rectangle (Group *, Rect const &);
36         
37         void render (Rect const &, Cairo::RefPtr<Cairo::Context>) const;
38         void compute_bounding_box () const;
39
40         Rect const & get () const {
41                 return _rect;
42         }
43
44         Coord x0 () const {
45                 return _rect.x0;
46         }
47
48         Coord y0 () const {
49                 return _rect.y0;
50         }
51
52         Coord x1 () const {
53                 return _rect.x1;
54         }
55
56         Coord y1 () const {
57                 return _rect.y1;
58         }
59
60         void set (Rect const &);
61         void set_x0 (Coord);
62         void set_y0 (Coord);
63         void set_x1 (Coord);
64         void set_y1 (Coord);
65
66         enum What {
67                 LEFT = 0x1,
68                 RIGHT = 0x2,
69                 TOP = 0x4,
70                 BOTTOM = 0x8
71         };
72
73         void set_outline_what (What);
74         void set_outline_what (int);
75
76 private:
77         /** Our rectangle; note that x0 may not always be less than x1
78          *  and likewise with y0 and y1.
79          */
80         Rect _rect;
81         What _outline_what;
82 };
83
84 }
85
86 #endif