Hide some more warnings.
[dcpomatic.git] / src / wx / markers_panel.h
1 /*
2     Copyright (C) 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/dcpomatic_time.h"
23 #include "lib/film.h"
24 #include <dcp/warnings.h>
25 LIBDCP_DISABLE_WARNINGS
26 #include <wx/wx.h>
27 LIBDCP_ENABLE_WARNINGS
28 #include <map>
29
30
31 class wxTipWindow;
32
33
34 class MarkersPanel : public wxPanel
35 {
36 public:
37         MarkersPanel (wxWindow* parent, std::weak_ptr<FilmViewer> viewer);
38
39         void set_film (std::weak_ptr<Film> film);
40
41 private:
42         void paint ();
43         void mouse_moved (wxMouseEvent& ev);
44         void mouse_left_down ();
45         void mouse_right_down (wxMouseEvent& ev);
46         int position (dcpomatic::DCPTime time, int width) const;
47         void move_marker_to_current_position ();
48         void remove_marker ();
49         void add_marker (wxCommandEvent& ev);
50         void film_changed (ChangeType type, Film::Property property);
51         void update_from_film (std::shared_ptr<Film> film);
52
53         wxTipWindow* _tip = nullptr;
54
55         class Marker {
56         public:
57                 Marker () {}
58
59                 Marker (dcpomatic::DCPTime t, bool b)
60                         : time (t)
61                         , line_before_label (b)
62                 {}
63
64                 dcpomatic::DCPTime time;
65                 int width = 0;
66                 bool line_before_label = false;
67         };
68
69         std::weak_ptr<Film> _film;
70         std::map<dcp::Marker, Marker> _markers;
71         boost::optional<dcp::Marker> _over;
72         std::weak_ptr<FilmViewer> _viewer;
73         boost::optional<dcp::Marker> _menu_marker;
74 };
75