Setup Butler::_prepare_only_proxy on construction.
[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 #include "timing_panel.h"
22 #include "wx_util.h"
23 #include "film_viewer.h"
24 #include "timecode.h"
25 #include "content_panel.h"
26 #include "move_to_dialog.h"
27 #include "static_text.h"
28 #include "dcpomatic_button.h"
29 #include "lib/content.h"
30 #include "lib/image_content.h"
31 #include "lib/text_content.h"
32 #include "lib/dcp_subtitle_content.h"
33 #include "lib/audio_content.h"
34 #include "lib/string_text_file_content.h"
35 #include "lib/video_content.h"
36 #include "lib/dcp_content.h"
37 #include "lib/ffmpeg_content.h"
38 #include <dcp/locale_convert.h>
39 #include "lib/warnings.h"
40 #if defined(__WXGTK20__) && !defined(__WXGTK3__)
41 #define TIMING_PANEL_ALIGNMENT_HACK 1
42 DCPOMATIC_DISABLE_WARNINGS
43 #include <gtk/gtk.h>
44 DCPOMATIC_ENABLE_WARNINGS
45 #endif
46 #include <set>
47 #include <iostream>
48
49 using std::cout;
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 TimingPanel::TimingPanel (ContentPanel* p, weak_ptr<FilmViewer> viewer)
63         /* horrid hack for apparent lack of context support with wxWidgets i18n code */
64         /// TRANSLATORS: translate the word "Timing" here; do not include the "Timing|" prefix
65         : ContentSubPanel (p, S_("Timing|Timing"))
66         , _viewer (viewer)
67         , _film_content_changed_suspender (boost::bind(&TimingPanel::film_content_changed, this, _1))
68 {
69
70 }
71
72
73 void
74 TimingPanel::create ()
75 {
76         wxSize size = TimecodeBase::size (this);
77
78         for (int i = 0; i < 3; ++i) {
79                 _colon[i] = create_label (this, wxT(":"), false);
80         }
81
82         //// TRANSLATORS: this is an abbreviation for "hours"
83         _h_label = new StaticText (this, _("h"), wxDefaultPosition, size, wxALIGN_CENTRE_HORIZONTAL);
84 #ifdef TIMING_PANEL_ALIGNMENT_HACK
85         /* Hack to work around failure to centre text on GTK */
86         gtk_label_set_line_wrap (GTK_LABEL(_h_label->GetHandle()), FALSE);
87 #endif
88         //// TRANSLATORS: this is an abbreviation for "minutes"
89         _m_label = new StaticText (this, _("m"), wxDefaultPosition, size, wxALIGN_CENTRE_HORIZONTAL);
90 #ifdef TIMING_PANEL_ALIGNMENT_HACK
91         gtk_label_set_line_wrap (GTK_LABEL (_m_label->GetHandle()), FALSE);
92 #endif
93         //// TRANSLATORS: this is an abbreviation for "seconds"
94         _s_label = new StaticText (this, _("s"), wxDefaultPosition, size, wxALIGN_CENTRE_HORIZONTAL);
95 #ifdef TIMING_PANEL_ALIGNMENT_HACK
96         gtk_label_set_line_wrap (GTK_LABEL(_s_label->GetHandle()), FALSE);
97 #endif
98         //// TRANSLATORS: this is an abbreviation for "frames"
99         _f_label = new StaticText (this, _("f"), wxDefaultPosition, size, wxALIGN_CENTRE_HORIZONTAL);
100 #ifdef TIMING_PANEL_ALIGNMENT_HACK
101         gtk_label_set_line_wrap (GTK_LABEL(_f_label->GetHandle()), FALSE);
102 #endif
103
104         _position_label = create_label (this, _("Position"), true);
105         _position = new Timecode<DCPTime> (this);
106         _move_to_start_of_reel = new Button (this, _("Move to start of reel"));
107         _full_length_label = create_label (this, _("Full length"), true);
108         _full_length = new Timecode<DCPTime> (this);
109         _trim_start_label = create_label (this, _("Trim from start"), true);
110         _trim_start = new Timecode<ContentTime> (this);
111         _trim_start_to_playhead = new Button (this, _("Trim up to current position"));
112         _trim_end_label = create_label (this, _("Trim from end"), true);
113         _trim_end = new Timecode<ContentTime> (this);
114         _trim_end_to_playhead = new Button (this, _("Trim from current position to end"));
115         _play_length_label = create_label (this, _("Play length"), true);
116         _play_length = new Timecode<DCPTime> (this);
117
118         _position->Changed.connect    (boost::bind (&TimingPanel::position_changed, this));
119         _move_to_start_of_reel->Bind  (wxEVT_BUTTON, boost::bind (&TimingPanel::move_to_start_of_reel_clicked, this));
120         _full_length->Changed.connect (boost::bind (&TimingPanel::full_length_changed, this));
121         _trim_start->Changed.connect  (boost::bind (&TimingPanel::trim_start_changed, this));
122         _trim_start_to_playhead->Bind (wxEVT_BUTTON, boost::bind (&TimingPanel::trim_start_to_playhead_clicked, this));
123         _trim_end->Changed.connect    (boost::bind (&TimingPanel::trim_end_changed, this));
124         _trim_end_to_playhead->Bind   (wxEVT_BUTTON, boost::bind (&TimingPanel::trim_end_to_playhead_clicked, this));
125         _play_length->Changed.connect (boost::bind (&TimingPanel::play_length_changed, this));
126
127         shared_ptr<FilmViewer> fv = _viewer.lock ();
128         DCPOMATIC_ASSERT (fv);
129         fv->ImageChanged.connect (boost::bind (&TimingPanel::setup_sensitivity, this));
130
131         setup_sensitivity ();
132         add_to_grid ();
133
134         _sizer->Layout ();
135 }
136
137 void
138 TimingPanel::add_to_grid ()
139 {
140         int r = 0;
141
142         wxSizer* labels = new wxBoxSizer (wxHORIZONTAL);
143         labels->Add (_h_label, 1, wxEXPAND);
144         add_label_to_sizer (labels, _colon[0], false);
145         labels->Add (_m_label, 1, wxEXPAND);
146         add_label_to_sizer (labels, _colon[1], false);
147         labels->Add (_s_label, 1, wxEXPAND);
148         add_label_to_sizer (labels, _colon[2], false);
149         labels->Add (_f_label, 1, wxEXPAND);
150         _grid->Add (labels, wxGBPosition(r, 1));
151         ++r;
152
153         add_label_to_sizer (_grid, _position_label, true, wxGBPosition(r, 0));
154         _grid->Add (_position, wxGBPosition(r, 1));
155         ++r;
156
157         _grid->Add (_move_to_start_of_reel, wxGBPosition(r, 1));
158         ++r;
159
160         add_label_to_sizer (_grid, _full_length_label, true, wxGBPosition(r, 0));
161         _grid->Add (_full_length, wxGBPosition(r, 1));
162         ++r;
163
164         add_label_to_sizer (_grid, _trim_start_label, true, wxGBPosition(r, 0));
165         _grid->Add (_trim_start, wxGBPosition(r, 1));
166         ++r;
167
168         _grid->Add (_trim_start_to_playhead, wxGBPosition(r, 1));
169         ++r;
170
171         add_label_to_sizer (_grid, _trim_end_label, true, wxGBPosition(r, 0));
172         _grid->Add (_trim_end, wxGBPosition(r, 1));
173         ++r;
174
175         _grid->Add (_trim_end_to_playhead, wxGBPosition(r, 1));
176         ++r;
177
178         add_label_to_sizer (_grid, _play_length_label, true, wxGBPosition(r, 0));
179         _grid->Add (_play_length, wxGBPosition(r, 1));
180         ++r;
181
182         /* Completely speculative fix for #891 */
183         _grid->Layout ();
184 }
185
186 void
187 TimingPanel::update_full_length ()
188 {
189         set<DCPTime> check;
190         for (auto i: _parent->selected()) {
191                 check.insert (i->full_length(_parent->film()));
192         }
193
194         if (check.size() == 1) {
195                 _full_length->set (_parent->selected().front()->full_length(_parent->film()), _parent->film()->video_frame_rate());
196         } else {
197                 _full_length->clear ();
198         }
199 }
200
201 void
202 TimingPanel::update_play_length ()
203 {
204         set<DCPTime> check;
205         for (auto i: _parent->selected()) {
206                 check.insert (i->length_after_trim(_parent->film()));
207         }
208
209         if (check.size() == 1) {
210                 _play_length->set (_parent->selected().front()->length_after_trim(_parent->film()), _parent->film()->video_frame_rate());
211         } else {
212                 _play_length->clear ();
213         }
214 }
215
216 void
217 TimingPanel::film_content_changed (int property)
218 {
219         if (_film_content_changed_suspender.check(property)) {
220                 return;
221         }
222
223         int const film_video_frame_rate = _parent->film()->video_frame_rate ();
224
225         /* Here we check to see if we have exactly one different value of various
226            properties, and fill the controls with that value if so.
227         */
228
229         if (property == ContentProperty::POSITION) {
230
231                 set<DCPTime> check;
232                 for (auto i: _parent->selected()) {
233                         check.insert (i->position ());
234                 }
235
236                 if (check.size() == 1) {
237                         _position->set (_parent->selected().front()->position(), film_video_frame_rate);
238                 } else {
239                         _position->clear ();
240                 }
241
242         } else if (
243                 property == ContentProperty::LENGTH ||
244                 property == ContentProperty::VIDEO_FRAME_RATE ||
245                 property == VideoContentProperty::FRAME_TYPE
246                 ) {
247
248                 update_full_length ();
249
250         } else if (property == ContentProperty::TRIM_START) {
251
252                 set<ContentTime> check;
253                 for (auto i: _parent->selected()) {
254                         check.insert (i->trim_start ());
255                 }
256
257                 if (check.size() == 1) {
258                         _trim_start->set (_parent->selected().front()->trim_start (), film_video_frame_rate);
259                 } else {
260                         _trim_start->clear ();
261                 }
262
263         } else if (property == ContentProperty::TRIM_END) {
264
265                 set<ContentTime> check;
266                 for (auto i: _parent->selected()) {
267                         check.insert (i->trim_end ());
268                 }
269
270                 if (check.size() == 1) {
271                         _trim_end->set (_parent->selected().front()->trim_end (), film_video_frame_rate);
272                 } else {
273                         _trim_end->clear ();
274                 }
275         }
276
277         if (
278                 property == ContentProperty::LENGTH ||
279                 property == ContentProperty::TRIM_START ||
280                 property == ContentProperty::TRIM_END ||
281                 property == ContentProperty::VIDEO_FRAME_RATE ||
282                 property == VideoContentProperty::FRAME_TYPE
283                 ) {
284
285                 update_play_length ();
286         }
287
288         if (property == ContentProperty::VIDEO_FRAME_RATE) {
289                 set<double> check_vc;
290                 shared_ptr<const Content> content;
291                 int count_ac = 0;
292                 int count_sc = 0;
293                 for (auto i: _parent->selected()) {
294                         if (i->video && i->video_frame_rate()) {
295                                 check_vc.insert (i->video_frame_rate().get());
296                                 content = i;
297                         }
298                         if (i->audio && i->video_frame_rate()) {
299                                 ++count_ac;
300                                 content = i;
301                         }
302                         if (!i->text.empty() && i->video_frame_rate()) {
303                                 ++count_sc;
304                                 content = i;
305                         }
306
307                 }
308         }
309
310         bool have_still = false;
311         for (auto i: _parent->selected()) {
312                 shared_ptr<const ImageContent> ic = dynamic_pointer_cast<const ImageContent> (i);
313                 if (ic && ic->still ()) {
314                         have_still = true;
315                 }
316         }
317
318         _full_length->set_editable (have_still);
319         _play_length->set_editable (!have_still);
320         setup_sensitivity ();
321 }
322
323 void
324 TimingPanel::position_changed ()
325 {
326         DCPTime const pos = _position->get (_parent->film()->video_frame_rate ());
327         for (auto i: _parent->selected()) {
328                 i->set_position (_parent->film(), pos);
329         }
330 }
331
332 void
333 TimingPanel::full_length_changed ()
334 {
335         int const vfr = _parent->film()->video_frame_rate ();
336         Frame const len = _full_length->get (vfr).frames_round (vfr);
337         for (auto i: _parent->selected()) {
338                 shared_ptr<ImageContent> ic = dynamic_pointer_cast<ImageContent> (i);
339                 if (ic && ic->still ()) {
340                         ic->video->set_length (len);
341                 }
342         }
343 }
344
345 void
346 TimingPanel::trim_start_changed ()
347 {
348         shared_ptr<FilmViewer> fv = _viewer.lock ();
349         if (!fv) {
350                 return;
351         }
352
353         DCPTime const ph = fv->position ();
354
355         fv->set_coalesce_player_changes (true);
356
357         shared_ptr<Content> ref;
358         optional<FrameRateChange> ref_frc;
359         optional<DCPTime> ref_ph;
360
361         Suspender::Block bl = _film_content_changed_suspender.block ();
362         for (auto i: _parent->selected()) {
363                 if (i->position() <= ph && ph < i->end(_parent->film())) {
364                         /* The playhead is in i.  Use it as a reference to work out
365                            where to put the playhead post-trim; we're trying to keep the playhead
366                            at the same frame of content that we're looking at pre-trim.
367                         */
368                         ref = i;
369                         ref_frc = _parent->film()->active_frame_rate_change (i->position ());
370                         ref_ph = ph - i->position() + DCPTime (i->trim_start(), ref_frc.get());
371                 }
372
373                 ContentTime const trim = _trim_start->get (i->video_frame_rate().get_value_or(_parent->film()->video_frame_rate()));
374                 i->set_trim_start (trim);
375         }
376
377         if (ref) {
378                 fv->seek (max(DCPTime(), ref_ph.get() + ref->position() - DCPTime(ref->trim_start(), ref_frc.get())), true);
379         }
380
381         fv->set_coalesce_player_changes (false);
382 }
383
384 void
385 TimingPanel::trim_end_changed ()
386 {
387         shared_ptr<FilmViewer> fv = _viewer.lock ();
388         if (!fv) {
389                 return;
390         }
391
392         fv->set_coalesce_player_changes (true);
393
394         Suspender::Block bl = _film_content_changed_suspender.block ();
395         for (auto i: _parent->selected()) {
396                 ContentTime const trim = _trim_end->get (i->video_frame_rate().get_value_or(_parent->film()->video_frame_rate()));
397                 i->set_trim_end (trim);
398         }
399
400         /* XXX: maybe playhead-off-the-end-of-the-film should be handled elsewhere */
401         if (fv->position() >= _parent->film()->length()) {
402                 fv->seek (_parent->film()->length() - DCPTime::from_frames(1, _parent->film()->video_frame_rate()), true);
403         }
404
405         fv->set_coalesce_player_changes (false);
406 }
407
408 void
409 TimingPanel::play_length_changed ()
410 {
411         DCPTime const play_length = _play_length->get (_parent->film()->video_frame_rate());
412         Suspender::Block bl = _film_content_changed_suspender.block ();
413         for (auto i: _parent->selected()) {
414                 FrameRateChange const frc = _parent->film()->active_frame_rate_change (i->position ());
415                 i->set_trim_end (
416                         ContentTime (max(DCPTime(), i->full_length(_parent->film()) - play_length), frc) - i->trim_start()
417                         );
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 }