BOOST_FOREACH.
[dcpomatic.git] / src / wx / film_editor.cc
1 /*
2     Copyright (C) 2012-2016 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.cc
22  *  @brief FilmEditor class.
23  */
24
25 #include "wx_util.h"
26 #include "film_editor.h"
27 #include "dcp_panel.h"
28 #include "content_panel.h"
29 #include "lib/film.h"
30 #include "lib/job_manager.h"
31 #include "lib/content.h"
32 #include "lib/dcp_content.h"
33 #include <wx/wx.h>
34 #include <wx/notebook.h>
35 #include <iostream>
36
37 using std::cout;
38 using std::string;
39 using std::list;
40 using std::shared_ptr;
41 using std::weak_ptr;
42 using boost::optional;
43 #if BOOST_VERSION >= 106100
44 using namespace boost::placeholders;
45 #endif
46
47 FilmEditor::FilmEditor (wxWindow* parent, weak_ptr<FilmViewer> viewer)
48         : wxPanel (parent)
49 {
50         wxBoxSizer* s = new wxBoxSizer (wxVERTICAL);
51
52         _main_notebook = new wxNotebook (this, wxID_ANY);
53         s->Add (_main_notebook, 1);
54
55         _content_panel = new ContentPanel (_main_notebook, _film, viewer);
56         _main_notebook->AddPage (_content_panel->window(), _("Content"), true);
57         _dcp_panel = new DCPPanel (_main_notebook, _film, viewer);
58         _main_notebook->AddPage (_dcp_panel->panel (), _("DCP"), false);
59
60         JobManager::instance()->ActiveJobsChanged.connect (
61                 bind (&FilmEditor::active_jobs_changed, this, _2)
62                 );
63
64         set_film (shared_ptr<Film> ());
65         SetSizerAndFit (s);
66 }
67
68
69 /** Called when the metadata stored in the Film object has changed;
70  *  so that we can update the GUI.
71  *  @param p Property of the Film that has changed.
72  */
73 void
74 FilmEditor::film_change (ChangeType type, Film::Property p)
75 {
76         if (type != CHANGE_TYPE_DONE) {
77                 return;
78         }
79
80         ensure_ui_thread ();
81
82         if (!_film) {
83                 return;
84         }
85
86         _content_panel->film_changed (p);
87         _dcp_panel->film_changed (p);
88
89         if (p == Film::CONTENT && !_film->content().empty ()) {
90                 /* Select newly-added content */
91                 _content_panel->set_selection (_film->content().back ());
92         }
93 }
94
95 void
96 FilmEditor::film_content_change (ChangeType type, int property)
97 {
98         if (type != CHANGE_TYPE_DONE) {
99                 return;
100         }
101
102         ensure_ui_thread ();
103
104         if (!_film) {
105                 /* We call this method ourselves (as well as using it as a signal handler)
106                    so _film can be 0.
107                 */
108                 return;
109         }
110
111         _content_panel->film_content_changed (property);
112         _dcp_panel->film_content_changed (property);
113 }
114
115 /** Sets the Film that we are editing */
116 void
117 FilmEditor::set_film (shared_ptr<Film> film)
118 {
119         set_general_sensitivity (film != 0);
120
121         if (_film == film) {
122                 return;
123         }
124
125         _film = film;
126
127         _content_panel->set_film (_film);
128         _dcp_panel->set_film (_film);
129
130         if (!_film) {
131                 FileChanged ("");
132                 return;
133         }
134
135         _film->Change.connect (bind (&FilmEditor::film_change, this, _1, _2));
136         _film->ContentChange.connect (bind (&FilmEditor::film_content_change, this, _1, _3));
137
138         if (_film->directory()) {
139                 FileChanged (_film->directory().get());
140         } else {
141                 FileChanged ("");
142         }
143
144         if (!_film->content().empty()) {
145                 _content_panel->set_selection (_film->content().front ());
146         }
147 }
148
149 void
150 FilmEditor::set_general_sensitivity (bool s)
151 {
152         _content_panel->set_general_sensitivity (s);
153         _dcp_panel->set_general_sensitivity (s);
154 }
155
156 void
157 FilmEditor::active_jobs_changed (optional<string> j)
158 {
159         set_general_sensitivity (!j);
160 }
161
162
163 void
164 FilmEditor::first_shown ()
165 {
166         _content_panel->first_shown ();
167 }
168