add new TimeRectangle to ArdourCanvas
[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
27 namespace ArdourCanvas
28 {
29
30 class LIBCANVAS_API Rectangle : public Item
31 {
32 public:
33         Rectangle (Canvas*);
34         Rectangle (Canvas*, Rect const &);
35         Rectangle (Item*);
36         Rectangle (Item*, Rect const &);
37         
38         void render (Rect const &, Cairo::RefPtr<Cairo::Context>) const;
39         void compute_bounding_box () const;
40
41         Rect const & get () const {
42                 return _rect;
43         }
44
45         Coord x0 () const {
46                 return _rect.x0;
47         }
48
49         Coord y0 () const {
50                 return _rect.y0;
51         }
52
53         Coord x1 () const {
54                 return _rect.x1;
55         }
56
57         Coord y1 () const {
58                 return _rect.y1;
59         }
60
61         void set (Rect const &);
62         void set_x0 (Coord);
63         void set_y0 (Coord);
64         void set_x1 (Coord);
65         void set_y1 (Coord);
66
67         enum What {
68                 LEFT = 0x1,
69                 RIGHT = 0x2,
70                 TOP = 0x4,
71                 BOTTOM = 0x8
72         };
73
74         void set_outline_what (What);
75         void set_outline_all () {
76                 set_outline_what (ArdourCanvas::Rectangle::What (ArdourCanvas::Rectangle::TOP|
77                                                                  ArdourCanvas::Rectangle::LEFT|
78                                                                  ArdourCanvas::Rectangle::RIGHT|
79                                                                  ArdourCanvas::Rectangle::BOTTOM));
80         }
81
82   protected:
83         void render_self (Rect const &, Cairo::RefPtr<Cairo::Context>, Rect) const;
84         Rect get_self_for_render () const;
85
86   private:
87         /** Our rectangle; note that x0 may not always be less than x1
88          *  and likewise with y0 and y1.
89          */
90         Rect _rect;
91         What _outline_what;
92 };
93
94 class TimeRectangle : public Rectangle 
95 {
96     public:
97         TimeRectangle (Canvas* c) : Rectangle (c) {}
98         TimeRectangle (Canvas* c, Rect const & r) : Rectangle (c, r) {}
99         TimeRectangle (Item* i) : Rectangle (i) {}
100         TimeRectangle (Item* i, Rect const & r) : Rectangle (i, r) {}
101         
102         void render (Rect const &, Cairo::RefPtr<Cairo::Context>) const;
103         void compute_bounding_box () const;
104 };
105
106 }
107
108 #endif