Setup Butler::_prepare_only_proxy on construction.
[dcpomatic.git] / src / wx / film_editor.h
1 /*
2     Copyright (C) 2012-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 /** @file src/wx/film_editor.h
23  *  @brief FilmEditor class.
24  */
25
26
27 #include "lib/film.h"
28 #include "lib/warnings.h"
29 DCPOMATIC_DISABLE_WARNINGS
30 #include <wx/wx.h>
31 DCPOMATIC_ENABLE_WARNINGS
32 #include <boost/signals2.hpp>
33
34
35 class wxNotebook;
36 class Film;
37 class ContentPanel;
38 class DCPPanel;
39 class FilmViewer;
40
41
42 /** @class FilmEditor
43  *  @brief A wx widget to edit a film's metadata, and perform various functions.
44  */
45 class FilmEditor : public wxPanel
46 {
47 public:
48         FilmEditor (wxWindow *, std::weak_ptr<FilmViewer> viewer);
49
50         void set_film (std::shared_ptr<Film>);
51         void first_shown ();
52
53         boost::signals2::signal<void (boost::filesystem::path)> FileChanged;
54         boost::signals2::signal<void (void)> SelectionChanged;
55
56         /* Stuff for panels */
57
58         ContentPanel* content_panel () const {
59                 return _content_panel;
60         }
61
62         std::shared_ptr<Film> film () const {
63                 return _film;
64         }
65
66 private:
67
68         /* Handle changes to the model */
69         void film_change (ChangeType, Film::Property);
70         void film_content_change (ChangeType type, int);
71
72         void set_general_sensitivity (bool);
73         void active_jobs_changed (boost::optional<std::string>);
74
75         wxNotebook* _main_notebook;
76         ContentPanel* _content_panel;
77         DCPPanel* _dcp_panel;
78
79         /** The film we are editing */
80         std::shared_ptr<Film> _film;
81 };