fix crash when copy'ing latent plugins
[ardour.git] / libs / canvas / pixbuf.cc
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 #include <cairomm/cairomm.h>
21 #include <gdkmm/general.h>
22
23 #include "canvas/pixbuf.h"
24
25 using namespace std;
26 using namespace ArdourCanvas;
27
28 Pixbuf::Pixbuf (Canvas* c)
29         : Item (c)
30 {
31 }
32
33 Pixbuf::Pixbuf (Item* parent)
34         : Item (parent)
35 {
36 }
37
38 void
39 Pixbuf::render (Rect const & /*area*/, Cairo::RefPtr<Cairo::Context> context) const
40 {
41         Gdk::Cairo::set_source_pixbuf (context, _pixbuf, 0, 0);
42         context->paint ();
43 }
44
45 void
46 Pixbuf::compute_bounding_box () const
47 {
48         if (_pixbuf) {
49                 _bounding_box = boost::optional<Rect> (Rect (0, 0, _pixbuf->get_width(), _pixbuf->get_height()));
50         } else {
51                 _bounding_box = boost::optional<Rect> ();
52         }
53
54         _bounding_box_dirty = false;
55 }
56
57 void
58 Pixbuf::set (Glib::RefPtr<Gdk::Pixbuf> pixbuf)
59 {
60         begin_change ();
61
62         _pixbuf = pixbuf;
63         _bounding_box_dirty = true;
64
65         end_change ();
66 }
67
68 Glib::RefPtr<Gdk::Pixbuf>
69 Pixbuf::pixbuf() {
70         return _pixbuf;
71 }
72