add headers to all canvas .cc and .h files
[ardour.git] / libs / canvas / canvas / image.h
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 #ifndef __CANVAS_IMAGE__
20 #define __CANVAS_IMAGE__
21
22 #include <stdint.h>
23 #include <boost/shared_ptr.hpp>
24 #include <boost/shared_array.hpp>
25
26 #include "canvas/item.h"
27
28 namespace ArdourCanvas {
29
30 class Image : public Item
31 {
32 public:
33     Image (Group *, Cairo::Format, int width, int height);
34     
35     struct Data {
36         Data (boost::shared_array<uint8_t> d, int w, int h, int s, Cairo::Format fmt)
37                 : data (d)
38                 , width (w)
39                 , height (h)
40                 , stride (s)
41                 , format (fmt)
42         {}
43
44         boost::shared_array<uint8_t> data;
45         int width;
46         int height;
47         int stride;
48         Cairo::Format format;
49     };
50
51     boost::shared_ptr<Data> get_image ();
52     void put_image (boost::shared_ptr<Data>);
53
54     void render (Rect const &, Cairo::RefPtr<Cairo::Context>) const;
55     void compute_bounding_box () const;
56     
57 private:
58     Cairo::Format            _format;
59     int                      _width;
60     int                      _height;
61     int                      _data;
62     mutable boost::shared_ptr<Data>  _current;
63     boost::shared_ptr<Data>  _pending;
64     mutable bool             _need_render;
65     mutable Cairo::RefPtr<Cairo::Surface> _surface;
66
67     void accept_data ();
68     PBD::Signal0<void> DataReady;
69     PBD::ScopedConnectionList data_connections;
70 };
71
72 }
73 #endif