Rename Timeline -> ContentTimeline.
[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 ContentPanel;
36 class DCPPanel;
37 class Film;
38 class FilmViewer;
39 class wxBookCtrlEvent;
40 class wxNotebook;
41
42
43 /** @class FilmEditor
44  *  @brief A wx widget to edit a film's metadata, and perform various functions.
45  */
46 class FilmEditor : public wxPanel
47 {
48 public:
49         FilmEditor(wxWindow *, FilmViewer& viewer);
50
51         void set_film (std::shared_ptr<Film>);
52         void first_shown ();
53
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, FilmProperty);
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         void page_changed(wxBookCtrlEvent& ev);
76
77         wxNotebook* _notebook;
78         ContentPanel* _content_panel;
79         DCPPanel* _dcp_panel;
80
81         /** The film we are editing */
82         std::shared_ptr<Film> _film;
83 };