Add a new "Advanced settings" dialog for content, accessible
[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 <wx/wx.h>
27 #include <boost/shared_ptr.hpp>
28 #include <boost/weak_ptr.hpp>
29
30 class Film;
31 class Job;
32 class DCPContent;
33
34 class ContentMenu : public boost::noncopyable
35 {
36 public:
37         explicit ContentMenu (wxWindow* p);
38
39         void popup (boost::weak_ptr<Film>, ContentList, TimelineContentViewList, wxPoint);
40
41 private:
42         void repeat ();
43         void join ();
44         void find_missing ();
45         void properties ();
46         void advanced ();
47         void re_examine ();
48         void kdm ();
49         void ov ();
50         void set_dcp_settings ();
51         void remove ();
52         void maybe_found_missing (boost::weak_ptr<Job>, boost::weak_ptr<Content>, boost::weak_ptr<Content>);
53         void cpl_selected (wxCommandEvent& ev);
54
55         wxMenu* _menu;
56         wxMenu* _cpl_menu;
57         /** Film that we are working with; set up by popup() */
58         boost::weak_ptr<Film> _film;
59         wxWindow* _parent;
60         bool _pop_up_open;
61         ContentList _content;
62         TimelineContentViewList _views;
63         wxMenuItem* _repeat;
64         wxMenuItem* _join;
65         wxMenuItem* _find_missing;
66         wxMenuItem* _properties;
67         wxMenuItem* _advanced;
68         wxMenuItem* _re_examine;
69         wxMenuItem* _kdm;
70         wxMenuItem* _ov;
71         wxMenuItem* _choose_cpl;
72         wxMenuItem* _set_dcp_settings;
73         wxMenuItem* _remove;
74 };
75
76 #endif