Add video waveform viewer.
[dcpomatic.git] / src / wx / video_waveform_plot.h
1 /*
2     Copyright (C) 2015 Carl Hetherington <cth@carlh.net>
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
20 #include <wx/wx.h>
21 #include <boost/shared_ptr.hpp>
22 #include <boost/weak_ptr.hpp>
23 #include <boost/signals2.hpp>
24
25 namespace dcp {
26         class OpenJPEGImage;
27 }
28
29 class PlayerVideo;
30 class Image;
31 class FilmViewer;
32
33 class VideoWaveformPlot : public wxPanel
34 {
35 public:
36         VideoWaveformPlot (wxWindow* parent, FilmViewer* viewer);
37
38         void set_enabled (bool e);
39         void set_component (int c);
40         void set_contrast (int b);
41
42 private:
43         void paint ();
44         void sized (wxSizeEvent &);
45         void create_waveform ();
46         void set_image (boost::weak_ptr<PlayerVideo>);
47
48         boost::shared_ptr<dcp::OpenJPEGImage> _image;
49         boost::shared_ptr<const Image> _waveform;
50         bool _dirty;
51         bool _enabled;
52         int _component;
53         int _contrast;
54
55         static int const _vertical_margin;
56
57         boost::signals2::connection _viewer_connection;
58 };