Work around strange build error on Ubuntu 18.04
[dcpomatic.git] / src / wx / timing_panel.cc
1 /*
2     Copyright (C) 2012-2018 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 #include "content_panel.h"
23 #include "dcpomatic_button.h"
24 #include "film_viewer.h"
25 #include "move_to_dialog.h"
26 #include "static_text.h"
27 #include "timecode.h"
28 #include "timing_panel.h"
29 #include "wx_util.h"
30 #include "lib/audio_content.h"
31 #include "lib/content.h"
32 #include "lib/dcp_content.h"
33 #include "lib/dcp_subtitle_content.h"
34 #include "lib/ffmpeg_content.h"
35 #include "lib/image_content.h"
36 #include "lib/string_text_file_content.h"
37 #include "lib/text_content.h"
38 #include "lib/video_content.h"
39 #include <dcp/locale_convert.h>
40 #include <dcp/warnings.h>
41 #if defined(__WXGTK20__) && !defined(__WXGTK3__)
42 #define TIMING_PANEL_ALIGNMENT_HACK 1
43 LIBDCP_DISABLE_WARNINGS
44 #include <gtk/gtk.h>
45 LIBDCP_ENABLE_WARNINGS
46 #endif
47 #include <set>
48
49
50 using std::string;
51 using std::set;
52 using std::shared_ptr;
53 using std::weak_ptr;
54 using std::dynamic_pointer_cast;
55 using boost::optional;
56 #if BOOST_VERSION >= 106100
57 using namespace boost::placeholders;
58 #endif
59 using dcp::locale_convert;
60 using namespace dcpomatic;
61
62
63 TimingPanel::TimingPanel (ContentPanel* p, weak_ptr<FilmViewer> viewer)
64         /* horrid hack for apparent lack of context support with wxWidgets i18n code */
65         /// TRANSLATORS: translate the word "Timing" here; do not include the "Timing|" prefix
66         : ContentSubPanel (p, S_("Timing|Timing"))
67         , _viewer (viewer)
68         , _film_content_changed_suspender (boost::bind(&TimingPanel::film_content_changed, this, _1))
69 {
70
71 }
72
73
74 void
75 TimingPanel::create ()
76 {
77         wxSize size = TimecodeBase::size (this);
78
79         for (int i = 0; i < 3; ++i) {
80                 _colon[i] = create_label (this, wxT(":"), false);
81         }
82
83         //// TRANSLATORS: this is an abbreviation for "hours"
84         _h_label = new StaticText (this, _("h"), wxDefaultPosition, size, wxALIGN_CENTRE_HORIZONTAL);
85 #ifdef TIMING_PANEL_ALIGNMENT_HACK
86         /* Hack to work around failure to centre text on GTK */
87         gtk_label_set_line_wrap (GTK_LABEL(_h_label->GetHandle()), FALSE);
88 #endif
89         //// TRANSLATORS: this is an abbreviation for "minutes"
90         _m_label = new StaticText (this, _("m"), wxDefaultPosition, size, wxALIGN_CENTRE_HORIZONTAL);
91 #ifdef TIMING_PANEL_ALIGNMENT_HACK
92         gtk_label_set_line_wrap (GTK_LABEL (_m_label->GetHandle()), FALSE);
93 #endif
94         //// TRANSLATORS: this is an abbreviation for "seconds"
95         _s_label = new StaticText (this, _("s"), wxDefaultPosition, size, wxALIGN_CENTRE_HORIZONTAL);
96 #ifdef TIMING_PANEL_ALIGNMENT_HACK
97         gtk_label_set_line_wrap (GTK_LABEL(_s_label->GetHandle()), FALSE);
98 #endif
99         //// TRANSLATORS: this is an abbreviation for "frames"
100         _f_label = new StaticText (this, _("f"), wxDefaultPosition, size, wxALIGN_CENTRE_HORIZONTAL);
101 #ifdef TIMING_PANEL_ALIGNMENT_HACK
102         gtk_label_set_line_wrap (GTK_LABEL(_f_label->GetHandle()), FALSE);
103 #endif
104
105         _position_label = create_label (this, _("Position"), true);
106         _position = new Timecode<DCPTime> (this);
107         _move_to_start_of_reel = new Button (this, _("Move to start of reel"));
108         _full_length_label = create_label (this, _("Full length"), true);
109         _full_length = new Timecode<DCPTime> (this);
110         _trim_start_label = create_label (this, _("Trim from start"), true);
111         _trim_start = new Timecode<ContentTime> (this);
112         _trim_start_to_playhead = new Button (this, _("Trim up to current position"));
113         _trim_end_label = create_label (this, _("Trim from end"), true);
114         _trim_end = new Timecode<ContentTime> (this);
115         _trim_end_to_playhead = new Button (this, _("Trim from current position to end"));
116         _play_length_label = create_label (this, _("Play length"), true);
117         _play_length = new Timecode<DCPTime> (this);
118
119         _position->Changed.connect    (boost::bind (&TimingPanel::position_changed, this));
120         _move_to_start_of_reel->Bind  (wxEVT_BUTTON, boost::bind (&TimingPanel::move_to_start_of_reel_clicked, this));
121         _full_length->Changed.connect (boost::bind (&TimingPanel::full_length_changed, this));
122         _trim_start->Changed.connect  (boost::bind (&TimingPanel::trim_start_changed, this));
123         _trim_start_to_playhead->Bind (wxEVT_BUTTON, boost::bind (&TimingPanel::trim_start_to_playhead_clicked, this));
124         _trim_end->Changed.connect    (boost::bind (&TimingPanel::trim_end_changed, this));
125         _trim_end_to_playhead->Bind   (wxEVT_BUTTON, boost::bind (&TimingPanel::trim_end_to_playhead_clicked, this));
126         _play_length->Changed.connect (boost::bind (&TimingPanel::play_length_changed, this));
127
128         shared_ptr<FilmViewer> fv = _viewer.lock ();
129         DCPOMATIC_ASSERT (fv);
130         fv->ImageChanged.connect (boost::bind (&TimingPanel::setup_sensitivity, this));
131
132         setup_sensitivity ();
133         add_to_grid ();
134
135         _sizer->Layout ();
136 }
137
138 void
139 TimingPanel::add_to_grid ()
140 {
141         int r = 0;
142
143         wxSizer* labels = new wxBoxSizer (wxHORIZONTAL);
144         labels->Add (_h_label, 1, wxEXPAND);
145         add_label_to_sizer (labels, _colon[0], false);
146         labels->Add (_m_label, 1, wxEXPAND);
147         add_label_to_sizer (labels, _colon[1], false);
148         labels->Add (_s_label, 1, wxEXPAND);
149         add_label_to_sizer (labels, _colon[2], false);
150         labels->Add (_f_label, 1, wxEXPAND);
151         _grid->Add (labels, wxGBPosition(r, 1));
152         ++r;
153
154         add_label_to_sizer (_grid, _position_label, true, wxGBPosition(r, 0));
155         _grid->Add (_position, wxGBPosition(r, 1));
156         ++r;
157
158         _grid->Add (_move_to_start_of_reel, wxGBPosition(r, 1));
159         ++r;
160
161         add_label_to_sizer (_grid, _full_length_label, true, wxGBPosition(r, 0));
162         _grid->Add (_full_length, wxGBPosition(r, 1));
163         ++r;
164
165         add_label_to_sizer (_grid, _trim_start_label, true, wxGBPosition(r, 0));
166         _grid->Add (_trim_start, wxGBPosition(r, 1));
167         ++r;
168
169         _grid->Add (_trim_start_to_playhead, wxGBPosition(r, 1));
170         ++r;
171
172         add_label_to_sizer (_grid, _trim_end_label, true, wxGBPosition(r, 0));
173         _grid->Add (_trim_end, wxGBPosition(r, 1));
174         ++r;
175
176         _grid->Add (_trim_end_to_playhead, wxGBPosition(r, 1));
177         ++r;
178
179         add_label_to_sizer (_grid, _play_length_label, true, wxGBPosition(r, 0));
180         _grid->Add (_play_length, wxGBPosition(r, 1));
181         ++r;
182
183         /* Completely speculative fix for #891 */
184         _grid->Layout ();
185 }
186
187 void
188 TimingPanel::update_full_length ()
189 {
190         set<DCPTime> check;
191         for (auto i: _parent->selected()) {
192                 check.insert (i->full_length(_parent->film()));
193         }
194
195         if (check.size() == 1) {
196                 _full_length->set (_parent->selected().front()->full_length(_parent->film()), _parent->film()->video_frame_rate());
197         } else {
198                 _full_length->clear ();
199         }
200 }
201
202 void
203 TimingPanel::update_play_length ()
204 {
205         set<DCPTime> check;
206         for (auto i: _parent->selected()) {
207                 check.insert (i->length_after_trim(_parent->film()));
208         }
209
210         if (check.size() == 1) {
211                 _play_length->set (_parent->selected().front()->length_after_trim(_parent->film()), _parent->film()->video_frame_rate());
212         } else {
213                 _play_length->clear ();
214         }
215 }
216
217 void
218 TimingPanel::film_content_changed (int property)
219 {
220         if (_film_content_changed_suspender.check(property)) {
221                 return;
222         }
223
224         int const film_video_frame_rate = _parent->film()->video_frame_rate ();
225
226         /* Here we check to see if we have exactly one different value of various
227            properties, and fill the controls with that value if so.
228         */
229
230         if (property == ContentProperty::POSITION) {
231
232                 set<DCPTime> check;
233                 for (auto i: _parent->selected()) {
234                         check.insert (i->position ());
235                 }
236
237                 if (check.size() == 1) {
238                         _position->set (_parent->selected().front()->position(), film_video_frame_rate);
239                 } else {
240                         _position->clear ();
241                 }
242
243         } else if (
244                 property == ContentProperty::LENGTH ||
245                 property == ContentProperty::VIDEO_FRAME_RATE ||
246                 property == VideoContentProperty::FRAME_TYPE
247                 ) {
248
249                 update_full_length ();
250
251         } else if (property == ContentProperty::TRIM_START) {
252
253                 set<ContentTime> check;
254                 for (auto i: _parent->selected()) {
255                         check.insert (i->trim_start ());
256                 }
257
258                 if (check.size() == 1) {
259                         _trim_start->set (_parent->selected().front()->trim_start (), film_video_frame_rate);
260                 } else {
261                         _trim_start->clear ();
262                 }
263
264         } else if (property == ContentProperty::TRIM_END) {
265
266                 set<ContentTime> check;
267                 for (auto i: _parent->selected()) {
268                         check.insert (i->trim_end ());
269                 }
270
271                 if (check.size() == 1) {
272                         _trim_end->set (_parent->selected().front()->trim_end (), film_video_frame_rate);
273                 } else {
274                         _trim_end->clear ();
275                 }
276         }
277
278         if (
279                 property == ContentProperty::LENGTH ||
280                 property == ContentProperty::TRIM_START ||
281                 property == ContentProperty::TRIM_END ||
282                 property == ContentProperty::VIDEO_FRAME_RATE ||
283                 property == VideoContentProperty::FRAME_TYPE
284                 ) {
285
286                 update_play_length ();
287         }
288
289         if (property == ContentProperty::VIDEO_FRAME_RATE) {
290                 set<double> check_vc;
291                 shared_ptr<const Content> content;
292                 int count_ac = 0;
293                 int count_sc = 0;
294                 for (auto i: _parent->selected()) {
295                         if (i->video && i->video_frame_rate()) {
296                                 check_vc.insert (i->video_frame_rate().get());
297                                 content = i;
298                         }
299                         if (i->audio && i->video_frame_rate()) {
300                                 ++count_ac;
301                                 content = i;
302                         }
303                         if (!i->text.empty() && i->video_frame_rate()) {
304                                 ++count_sc;
305                                 content = i;
306                         }
307
308                 }
309         }
310
311         bool have_still = false;
312         for (auto i: _parent->selected()) {
313                 shared_ptr<const ImageContent> ic = dynamic_pointer_cast<const ImageContent> (i);
314                 if (ic && ic->still ()) {
315                         have_still = true;
316                 }
317         }
318
319         _full_length->set_editable (have_still);
320         _play_length->set_editable (!have_still);
321         setup_sensitivity ();
322 }
323
324 void
325 TimingPanel::position_changed ()
326 {
327         DCPTime const pos = _position->get (_parent->film()->video_frame_rate ());
328         for (auto i: _parent->selected()) {
329                 i->set_position (_parent->film(), pos);
330         }
331 }
332
333 void
334 TimingPanel::full_length_changed ()
335 {
336         int const vfr = _parent->film()->video_frame_rate ();
337         Frame const len = _full_length->get (vfr).frames_round (vfr);
338         for (auto i: _parent->selected()) {
339                 shared_ptr<ImageContent> ic = dynamic_pointer_cast<ImageContent> (i);
340                 if (ic && ic->still ()) {
341                         ic->video->set_length (len);
342                 }
343         }
344 }
345
346 void
347 TimingPanel::trim_start_changed ()
348 {
349         shared_ptr<FilmViewer> fv = _viewer.lock ();
350         if (!fv) {
351                 return;
352         }
353
354         DCPTime const ph = fv->position ();
355
356         fv->set_coalesce_player_changes (true);
357
358         shared_ptr<Content> ref;
359         optional<FrameRateChange> ref_frc;
360         optional<DCPTime> ref_ph;
361
362         Suspender::Block bl = _film_content_changed_suspender.block ();
363         for (auto i: _parent->selected()) {
364                 if (i->position() <= ph && ph < i->end(_parent->film())) {
365                         /* The playhead is in i.  Use it as a reference to work out
366                            where to put the playhead post-trim; we're trying to keep the playhead
367                            at the same frame of content that we're looking at pre-trim.
368                         */
369                         ref = i;
370                         ref_frc = _parent->film()->active_frame_rate_change (i->position ());
371                         ref_ph = ph - i->position() + DCPTime (i->trim_start(), ref_frc.get());
372                 }
373
374                 ContentTime const trim = _trim_start->get (i->video_frame_rate().get_value_or(_parent->film()->video_frame_rate()));
375                 i->set_trim_start (trim);
376         }
377
378         if (ref) {
379                 fv->seek (max(DCPTime(), ref_ph.get() + ref->position() - DCPTime(ref->trim_start(), ref_frc.get())), true);
380         }
381
382         fv->set_coalesce_player_changes (false);
383 }
384
385 void
386 TimingPanel::trim_end_changed ()
387 {
388         shared_ptr<FilmViewer> fv = _viewer.lock ();
389         if (!fv) {
390                 return;
391         }
392
393         fv->set_coalesce_player_changes (true);
394
395         Suspender::Block bl = _film_content_changed_suspender.block ();
396         for (auto i: _parent->selected()) {
397                 ContentTime const trim = _trim_end->get (i->video_frame_rate().get_value_or(_parent->film()->video_frame_rate()));
398                 i->set_trim_end (trim);
399         }
400
401         /* XXX: maybe playhead-off-the-end-of-the-film should be handled elsewhere */
402         if (fv->position() >= _parent->film()->length()) {
403                 fv->seek (_parent->film()->length() - DCPTime::from_frames(1, _parent->film()->video_frame_rate()), true);
404         }
405
406         fv->set_coalesce_player_changes (false);
407 }
408
409 void
410 TimingPanel::play_length_changed ()
411 {
412         DCPTime const play_length = _play_length->get (_parent->film()->video_frame_rate());
413         Suspender::Block bl = _film_content_changed_suspender.block ();
414         for (auto i: _parent->selected()) {
415                 FrameRateChange const frc = _parent->film()->active_frame_rate_change (i->position ());
416                 auto dcp = max(DCPTime(), i->full_length(_parent->film()) - play_length);
417                 i->set_trim_end (max(ContentTime(), ContentTime(dcp, frc) - i->trim_start()));
418         }
419 }
420
421
422 void
423 TimingPanel::content_selection_changed ()
424 {
425         setup_sensitivity ();
426
427         film_content_changed (ContentProperty::POSITION);
428         film_content_changed (ContentProperty::LENGTH);
429         film_content_changed (ContentProperty::TRIM_START);
430         film_content_changed (ContentProperty::TRIM_END);
431         film_content_changed (ContentProperty::VIDEO_FRAME_RATE);
432 }
433
434 void
435 TimingPanel::film_changed (Film::Property p)
436 {
437         if (p == Film::Property::VIDEO_FRAME_RATE) {
438                 update_full_length ();
439                 update_play_length ();
440         }
441 }
442
443 void
444 TimingPanel::trim_start_to_playhead_clicked ()
445 {
446         shared_ptr<FilmViewer> fv = _viewer.lock ();
447         if (!fv) {
448                 return;
449         }
450
451         shared_ptr<const Film> film = _parent->film ();
452         DCPTime const ph = fv->position().floor (film->video_frame_rate ());
453         optional<DCPTime> new_ph;
454
455         fv->set_coalesce_player_changes (true);
456
457         for (auto i: _parent->selected()) {
458                 if (i->position() < ph && ph < i->end(film)) {
459                         FrameRateChange const frc = film->active_frame_rate_change (i->position());
460                         i->set_trim_start (i->trim_start() + ContentTime (ph - i->position(), frc));
461                         new_ph = i->position ();
462                 }
463         }
464
465         fv->set_coalesce_player_changes (false);
466
467         if (new_ph) {
468                 fv->seek (new_ph.get(), true);
469         }
470 }
471
472 void
473 TimingPanel::trim_end_to_playhead_clicked ()
474 {
475         shared_ptr<FilmViewer> fv = _viewer.lock ();
476         if (!fv) {
477                 return;
478         }
479
480         shared_ptr<const Film> film = _parent->film ();
481         DCPTime const ph = fv->position().floor (film->video_frame_rate ());
482         for (auto i: _parent->selected()) {
483                 if (i->position() < ph && ph < i->end(film)) {
484                         FrameRateChange const frc = film->active_frame_rate_change (i->position ());
485                         i->set_trim_end (ContentTime(i->position() + i->full_length(film) - ph, frc) - i->trim_start());
486                 }
487         }
488 }
489
490 void
491 TimingPanel::setup_sensitivity ()
492 {
493         bool const e = !_parent->selected().empty ();
494
495         _position->Enable (e);
496         _move_to_start_of_reel->Enable (e);
497         _full_length->Enable (e);
498         _trim_start->Enable (e);
499         _trim_end->Enable (e);
500         _play_length->Enable (e);
501
502         shared_ptr<FilmViewer> fv = _viewer.lock ();
503         DCPOMATIC_ASSERT (fv);
504         DCPTime const ph = fv->position ();
505         bool any_over_ph = false;
506         for (auto i: _parent->selected()) {
507                 if (i->position() <= ph && ph < i->end(_parent->film())) {
508                         any_over_ph = true;
509                 }
510         }
511
512         _trim_start_to_playhead->Enable (any_over_ph);
513         _trim_end_to_playhead->Enable (any_over_ph);
514 }
515
516 void
517 TimingPanel::move_to_start_of_reel_clicked ()
518 {
519         /* Find common position of all selected content, if it exists */
520
521         optional<DCPTime> position;
522         for (auto i: _parent->selected()) {
523                 if (!position) {
524                         position = i->position();
525                 } else {
526                         if (position.get() != i->position()) {
527                                 position.reset ();
528                                 break;
529                         }
530                 }
531         }
532
533         MoveToDialog* d = new MoveToDialog (this, position, _parent->film());
534
535         if (d->ShowModal() == wxID_OK) {
536                 for (auto i: _parent->selected()) {
537                         i->set_position (_parent->film(), d->position());
538                 }
539         }
540         d->Destroy ();
541 }