remove debugging output
[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/debug.h"
24 #include "canvas/scroll_group.h"
25
26 using namespace std;
27 using namespace ArdourCanvas;
28
29 ScrollGroup::ScrollGroup (Group* parent, ScrollSensitivity s)
30         : Group (parent)
31         , _scroll_sensitivity (s)       
32 {
33 }
34
35 ScrollGroup::ScrollGroup (Group* parent, Duple position, ScrollSensitivity s)
36         : Group (parent, position)
37         , _scroll_sensitivity (s)
38 {
39 }
40
41 void
42 ScrollGroup::scroll_to (Duple const& d)
43 {
44         if (_scroll_sensitivity & ScrollsHorizontally) {
45                 _scroll_offset.x = d.x;
46         }
47
48         if (_scroll_sensitivity & ScrollsVertically) {
49                 _scroll_offset.y = d.y;
50         }
51 }
52
53 bool
54 ScrollGroup::covers_canvas (Duple const& d) const
55 {
56         boost::optional<Rect> r = bounding_box ();
57
58         if (!r) {
59                 return false;
60         }
61
62         return r->contains (d);
63 }
64
65 bool
66 ScrollGroup::covers_window (Duple const& d) const
67 {
68         boost::optional<Rect> r = bounding_box ();
69
70         if (!r) {
71                 return false;
72         }
73
74         Rect w = r->translate (-_scroll_offset);
75
76         return w.contains (d);
77 }