Supporters update.
[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
22 #ifndef DCPOMATIC_CONTENT_MENU_H
23 #define DCPOMATIC_CONTENT_MENU_H
24
25
26 #include "auto_crop_dialog.h"
27 #include "timeline_content_view.h"
28 #include "wx_ptr.h"
29 #include "lib/types.h"
30 #include <dcp/warnings.h>
31 LIBDCP_DISABLE_WARNINGS
32 #include <wx/wx.h>
33 LIBDCP_ENABLE_WARNINGS
34 #include <memory>
35
36
37 class DCPContent;
38 class Film;
39 class FilmViewer;
40 class Job;
41
42
43 class ContentMenu
44 {
45 public:
46         ContentMenu(wxWindow* parent, FilmViewer& viewer);
47
48         ContentMenu (ContentMenu const &) = delete;
49         ContentMenu& operator= (ContentMenu const &) = delete;
50
51         void popup (std::weak_ptr<Film>, ContentList, TimelineContentViewList, wxPoint);
52
53 private:
54         void repeat ();
55         void join ();
56         void find_missing ();
57         void properties ();
58         void advanced ();
59         void re_examine ();
60         void auto_crop ();
61         void kdm ();
62         void ov ();
63         void set_dcp_settings ();
64         void set_dcp_markers();
65         void remove ();
66         void cpl_selected (wxCommandEvent& ev);
67
68         wxMenu* _menu;
69         wxMenu* _cpl_menu;
70         /** Film that we are working with; set up by popup() */
71         std::weak_ptr<Film> _film;
72         wxWindow* _parent;
73         bool _pop_up_open;
74         FilmViewer& _viewer;
75         ContentList _content;
76         TimelineContentViewList _views;
77         wxMenuItem* _repeat;
78         wxMenuItem* _join;
79         wxMenuItem* _find_missing;
80         wxMenuItem* _properties;
81         wxMenuItem* _advanced;
82         wxMenuItem* _re_examine;
83         wxMenuItem* _auto_crop;
84         wxMenuItem* _kdm;
85         wxMenuItem* _ov;
86         wxMenuItem* _choose_cpl;
87         wxMenuItem* _set_dcp_settings;
88         wxMenuItem* _set_dcp_markers;
89         wxMenuItem* _remove;
90
91         wx_ptr<AutoCropDialog> _auto_crop_dialog;
92         boost::signals2::scoped_connection _auto_crop_config_connection;
93         boost::signals2::scoped_connection _auto_crop_viewer_connection;
94 };
95
96
97 #endif