Supporters update.
[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_property.h"
28 #include <dcp/warnings.h>
29 LIBDCP_DISABLE_WARNINGS
30 #include <wx/wx.h>
31 LIBDCP_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 *, FilmViewer& viewer);
49
50         void set_film (std::shared_ptr<Film>);
51         void first_shown ();
52
53         boost::signals2::signal<void (void)> SelectionChanged;
54
55         /* Stuff for panels */
56
57         ContentPanel* content_panel () const {
58                 return _content_panel;
59         }
60
61         std::shared_ptr<Film> film () const {
62                 return _film;
63         }
64
65 private:
66
67         /* Handle changes to the model */
68         void film_change(ChangeType, FilmProperty);
69         void film_content_change (ChangeType type, int);
70
71         void set_general_sensitivity (bool);
72         void active_jobs_changed (boost::optional<std::string>);
73
74         ContentPanel* _content_panel;
75         DCPPanel* _dcp_panel;
76
77         /** The film we are editing */
78         std::shared_ptr<Film> _film;
79 };