merge with master and fix 2 conflicts
[ardour.git] / libs / canvas / image.cc
1 /*
2     Copyright (C) 2013 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 "canvas/image.h"
20
21 #include "gtkmm2ext/gui_thread.h"
22
23 using namespace ArdourCanvas;
24
25 Image::Image (Group* group, Cairo::Format fmt, int width, int height)
26         : Item (group)
27         , _format (fmt)
28         , _width (width)
29         , _height (height)
30         , _need_render (false)
31 {
32         DataReady.connect (data_connections, MISSING_INVALIDATOR, boost::bind (&Image::accept_data, this), gui_context());
33 }
34
35 void 
36 Image::render (Rect const& area, Cairo::RefPtr<Cairo::Context> context) const
37 {
38         if (_need_render && _pending) {
39                 _surface = Cairo::ImageSurface::create (_pending->data,
40                                                         _pending->format,
41                                                         _pending->width,
42                                                         _pending->height,
43                                                         _pending->stride);
44                 _current = _pending;
45         }
46         
47         Rect self = item_to_window (Rect (0, 0, _width, _height));
48         boost::optional<Rect> draw = self.intersection (area);
49
50         if (_surface && draw) {
51                 context->set_source (_surface, self.x0, self.y0);
52                 context->rectangle (draw->x0, draw->y0, draw->width(), draw->height());
53                 context->fill ();
54         }
55 }
56
57 void
58 Image::compute_bounding_box () const
59 {
60         _bounding_box = boost::optional<Rect> (Rect (0, 0, _width, _height));
61         _bounding_box_dirty = false;
62 }
63
64 boost::shared_ptr<Image::Data>
65 Image::get_image (bool allocate_data)
66 {
67         /* can be called by any thread */
68
69         int stride = Cairo::ImageSurface::format_stride_for_width (_format, _width);
70         if (allocate_data)  {
71                 boost::shared_ptr<Data> d (new Data (new uint8_t[stride*_height], _width, _height, stride, _format));
72                 return d;
73         } else {
74                 boost::shared_ptr<Data> d (new Data (NULL, _width, _height, stride, _format));
75                 return d;
76         }
77 }
78
79 void
80 Image::put_image (boost::shared_ptr<Data> d)
81 {
82         /* can be called by any thread */
83
84         _pending = d;
85         DataReady (); /* EMIT SIGNAL */
86 }
87
88 void
89 Image::accept_data () 
90 {
91         /* must be executed in gui thread */
92
93         begin_change ();
94         _need_render = true;
95         end_change (); // notify canvas that we need redrawing
96 }            
97