Put Image into the dcpomatic namespace.
[dcpomatic.git] / src / wx / video_waveform_plot.h
1 /*
2     Copyright (C) 2015-2021 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
22 #include "lib/warnings.h"
23 DCPOMATIC_DISABLE_WARNINGS
24 #include <wx/wx.h>
25 DCPOMATIC_ENABLE_WARNINGS
26 #include <boost/signals2.hpp>
27
28
29 namespace dcp {
30         class OpenJPEGImage;
31 }
32
33 class PlayerVideo;
34 namespace dcpomatic {
35         class Image;
36 }
37 class Film;
38 class FilmViewer;
39
40
41 class VideoWaveformPlot : public wxPanel
42 {
43 public:
44         VideoWaveformPlot (wxWindow* parent, std::weak_ptr<const Film> film, std::weak_ptr<FilmViewer> viewer);
45
46         void set_enabled (bool e);
47         void set_component (int c);
48         void set_contrast (int b);
49
50         /** Emitted when the mouse is moved over the waveform.  The parameters
51             are:
52             - (int, int): image x range
53             - (int, int): component value range
54         */
55         boost::signals2::signal<void (int, int, int, int)> MouseMoved;
56
57 private:
58         void paint ();
59         void sized (wxSizeEvent &);
60         void create_waveform ();
61         void set_image (std::shared_ptr<PlayerVideo>);
62         void mouse_moved (wxMouseEvent &);
63
64         std::weak_ptr<const Film> _film;
65         std::shared_ptr<dcp::OpenJPEGImage> _image;
66         std::shared_ptr<const dcpomatic::Image> _waveform;
67         bool _dirty = true;
68         bool _enabled = false;
69         int _component = 0;
70         int _contrast = 0;
71
72         static int const _vertical_margin;
73         static int const _pixel_values;
74         static int const _x_axis_width;
75
76         boost::signals2::connection _viewer_connection;
77 };