fix crash when copy'ing latent plugins
[ardour.git] / libs / canvas / scroll_group.cc
1 /*
2     Copyright (C) 2014 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 #include <iostream>
20
21 #include "pbd/compose.h"
22
23 #include "canvas/canvas.h"
24 #include "canvas/debug.h"
25 #include "canvas/scroll_group.h"
26
27 using namespace std;
28 using namespace ArdourCanvas;
29
30 ScrollGroup::ScrollGroup (Canvas* c, ScrollSensitivity s)
31         : Container (c)
32         , _scroll_sensitivity (s)
33 {
34 }
35
36 ScrollGroup::ScrollGroup (Item* parent, ScrollSensitivity s)
37         : Container (parent)
38         , _scroll_sensitivity (s)
39 {
40 }
41
42 void
43 ScrollGroup::render (Rect const & area, Cairo::RefPtr<Cairo::Context> context) const
44 {
45         /* clip the draw to the area that this scroll group nominally occupies
46          * WITHOUT scroll offsets in effect
47          */
48
49         boost::optional<Rect> r = bounding_box();
50
51         if (!r) {
52                 return;
53         }
54
55         Rect self (_position.x + r.get().x0,
56                    _position.y + r.get().y0,
57                    _position.x + r.get().x1,
58                    _position.y + r.get().y1);
59
60         self.x1 = min (_position.x + _canvas->width(), self.x1);
61         self.y1 = min (_position.y + _canvas->height(), self.y1);
62
63         context->save ();
64         context->rectangle (self.x0, self.y0, self.width(), self.height());
65         context->clip ();
66
67         Container::render (area, context);
68
69         context->restore ();
70 }
71
72 void
73 ScrollGroup::scroll_to (Duple const& d)
74 {
75         if (_scroll_sensitivity & ScrollsHorizontally) {
76                 _scroll_offset.x = d.x;
77         }
78
79         if (_scroll_sensitivity & ScrollsVertically) {
80                 _scroll_offset.y = d.y;
81         }
82 }
83
84 bool
85 ScrollGroup::covers_canvas (Duple const& d) const
86 {
87         boost::optional<Rect> r = bounding_box ();
88
89         if (!r) {
90                 return false;
91         }
92
93         /* Bounding box is in item coordinates, but we need
94            to consider the position of the bounding box
95            within the canvas.
96         */
97
98         return r->translate (position()).contains (d);
99 }
100
101 bool
102 ScrollGroup::covers_window (Duple const& d) const
103 {
104         boost::optional<Rect> r = bounding_box ();
105
106         if (!r) {
107                 return false;
108         }
109
110         /* Bounding box is in item coordinates, but we need
111            to consider the position of the bounding box
112            within the canvas.
113         */
114
115         return r->translate (position()).contains (d);
116 }