ignore loadsa warnings.
[dcpomatic.git] / src / wx / content_menu.h
1 /*
2     Copyright (C) 2013-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 #ifndef DCPOMATIC_CONTENT_MENU_H
22 #define DCPOMATIC_CONTENT_MENU_H
23
24 #include "timeline_content_view.h"
25 #include "lib/types.h"
26 #include "lib/warnings.h"
27 DCPOMATIC_DISABLE_WARNINGS
28 #include <wx/wx.h>
29 DCPOMATIC_ENABLE_WARNINGS
30 #include <memory>
31
32 class Film;
33 class Job;
34 class DCPContent;
35
36 class ContentMenu
37 {
38 public:
39         explicit ContentMenu (wxWindow* p);
40
41         ContentMenu (ContentMenu const &) = delete;
42         ContentMenu& operator= (ContentMenu const &) = delete;
43
44         void popup (std::weak_ptr<Film>, ContentList, TimelineContentViewList, wxPoint);
45
46 private:
47         void repeat ();
48         void join ();
49         void find_missing ();
50         void properties ();
51         void advanced ();
52         void re_examine ();
53         void kdm ();
54         void ov ();
55         void set_dcp_settings ();
56         void remove ();
57         void maybe_found_missing (std::weak_ptr<Job>, std::weak_ptr<Content>, std::weak_ptr<Content>);
58         void cpl_selected (wxCommandEvent& ev);
59
60         wxMenu* _menu;
61         wxMenu* _cpl_menu;
62         /** Film that we are working with; set up by popup() */
63         std::weak_ptr<Film> _film;
64         wxWindow* _parent;
65         bool _pop_up_open;
66         ContentList _content;
67         TimelineContentViewList _views;
68         wxMenuItem* _repeat;
69         wxMenuItem* _join;
70         wxMenuItem* _find_missing;
71         wxMenuItem* _properties;
72         wxMenuItem* _advanced;
73         wxMenuItem* _re_examine;
74         wxMenuItem* _kdm;
75         wxMenuItem* _ov;
76         wxMenuItem* _choose_cpl;
77         wxMenuItem* _set_dcp_settings;
78         wxMenuItem* _remove;
79 };
80
81 #endif