Fix video waveform view with GL backend.
[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/shared_ptr.hpp>
26 #include <boost/weak_ptr.hpp>
27 #include <boost/signals2.hpp>
28
29 namespace dcp {
30         class OpenJPEGImage;
31 }
32
33 class PlayerVideo;
34 class Image;
35 class Film;
36 class FilmViewer;
37
38 class VideoWaveformPlot : public wxPanel
39 {
40 public:
41         VideoWaveformPlot (wxWindow* parent, boost::weak_ptr<const Film> film, boost::weak_ptr<FilmViewer> viewer);
42
43         void set_enabled (bool e);
44         void set_component (int c);
45         void set_contrast (int b);
46
47         /** Emitted when the mouse is moved over the waveform.  The parameters
48             are:
49             - (int, int): image x range
50             - (int, int): component value range
51         */
52         boost::signals2::signal<void (int, int, int, int)> MouseMoved;
53
54 private:
55         void paint ();
56         void sized (wxSizeEvent &);
57         void create_waveform ();
58         void set_image (boost::shared_ptr<PlayerVideo>);
59         void mouse_moved (wxMouseEvent &);
60
61         boost::weak_ptr<const Film> _film;
62         boost::shared_ptr<dcp::OpenJPEGImage> _image;
63         boost::shared_ptr<const Image> _waveform;
64         bool _dirty;
65         bool _enabled;
66         int _component;
67         int _contrast;
68
69         static int const _vertical_margin;
70         static int const _pixel_values;
71         static int const _x_axis_width;
72
73         boost::signals2::connection _viewer_connection;
74 };