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