037ff0cbf42e77069df101402743826e354b3465
[dcpomatic.git] / src / wx / video_waveform_plot.h
1 /*
2     Copyright (C) 2015 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "lib/warnings.h"
22 DCPOMATIC_DISABLE_WARNINGS
23 #include <wx/wx.h>
24 DCPOMATIC_ENABLE_WARNINGS
25 #include <boost/signals2.hpp>
26
27 namespace dcp {
28         class OpenJPEGImage;
29 }
30
31 class PlayerVideo;
32 class Image;
33 class Film;
34 class FilmViewer;
35
36 class VideoWaveformPlot : public wxPanel
37 {
38 public:
39         VideoWaveformPlot (wxWindow* parent, std::weak_ptr<const Film> film, std::weak_ptr<FilmViewer> viewer);
40
41         void set_enabled (bool e);
42         void set_component (int c);
43         void set_contrast (int b);
44
45         /** Emitted when the mouse is moved over the waveform.  The parameters
46             are:
47             - (int, int): image x range
48             - (int, int): component value range
49         */
50         boost::signals2::signal<void (int, int, int, int)> MouseMoved;
51
52 private:
53         void paint ();
54         void sized (wxSizeEvent &);
55         void create_waveform ();
56         void set_image (std::shared_ptr<PlayerVideo>);
57         void mouse_moved (wxMouseEvent &);
58
59         std::weak_ptr<const Film> _film;
60         std::shared_ptr<dcp::OpenJPEGImage> _image;
61         std::shared_ptr<const Image> _waveform;
62         bool _dirty;
63         bool _enabled;
64         int _component;
65         int _contrast;
66
67         static int const _vertical_margin;
68         static int const _pixel_values;
69         static int const _x_axis_width;
70
71         boost::signals2::connection _viewer_connection;
72 };