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