fix crash when copy'ing latent plugins
[ardour.git] / libs / canvas / container.cc
1 /*
2     Copyright (C) 2011-2014 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 #include "canvas/container.h"
21
22 using namespace ArdourCanvas;
23
24 Container::Container (Canvas* canvas)
25         : Item (canvas)
26 {
27 }
28
29 Container::Container (Item* parent)
30         : Item (parent)
31 {
32 }
33
34
35 Container::Container (Item* parent, Duple const & p)
36         : Item (parent, p)
37 {
38 }
39
40 void
41 Container::render (Rect const & area, Cairo::RefPtr<Cairo::Context> context) const
42 {
43         Item::render_children (area, context);
44 }
45
46 void
47 Container::compute_bounding_box () const
48 {
49         _bounding_box = boost::none;
50         add_child_bounding_boxes ();
51         _bounding_box_dirty = false;
52 }
53