Subtitle rearrangements.
[dcpomatic.git] / src / wx / timing_panel.cc
1 /*
2     Copyright (C) 2012-2016 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "timing_panel.h"
21 #include "wx_util.h"
22 #include "film_viewer.h"
23 #include "timecode.h"
24 #include "content_panel.h"
25 #include "lib/content.h"
26 #include "lib/image_content.h"
27 #include "lib/raw_convert.h"
28 #include "lib/subtitle_content.h"
29 #include "lib/dcp_subtitle_content.h"
30 #include "lib/audio_content.h"
31 #include "lib/text_subtitle_content.h"
32 #include "lib/video_content.h"
33 #include <boost/foreach.hpp>
34 #include <set>
35 #include <iostream>
36
37 using std::cout;
38 using std::string;
39 using std::set;
40 using boost::shared_ptr;
41 using boost::dynamic_pointer_cast;
42 using boost::optional;
43
44 TimingPanel::TimingPanel (ContentPanel* p, FilmViewer* viewer)
45         /* horrid hack for apparent lack of context support with wxWidgets i18n code */
46         /// TRANSLATORS: translate the word "Timing" here; do not include the "Timing|" prefix
47         : ContentSubPanel (p, S_("Timing|Timing"))
48         , _viewer (viewer)
49 {
50         wxFlexGridSizer* grid = new wxFlexGridSizer (2, 4, 4);
51         _sizer->Add (grid, 0, wxALL, 8);
52
53         wxSize size = TimecodeBase::size (this);
54
55         wxSizer* labels = new wxBoxSizer (wxHORIZONTAL);
56         //// TRANSLATORS: this is an abbreviation for "hours"
57         wxStaticText* t = new wxStaticText (this, wxID_ANY, _("h"), wxDefaultPosition, size, wxALIGN_CENTRE_HORIZONTAL);
58 #ifdef DCPOMATIC_LINUX
59         /* Hack to work around failure to centre text on GTK */
60         gtk_label_set_line_wrap (GTK_LABEL (t->GetHandle()), FALSE);
61 #endif
62         labels->Add (t, 1, wxEXPAND);
63         add_label_to_sizer (labels, this, wxT (":"), false);
64         //// TRANSLATORS: this is an abbreviation for "minutes"
65         t = new wxStaticText (this, wxID_ANY, _("m"), wxDefaultPosition, size, wxALIGN_CENTRE_HORIZONTAL);
66 #ifdef DCPOMATIC_LINUX
67         gtk_label_set_line_wrap (GTK_LABEL (t->GetHandle()), FALSE);
68 #endif
69         labels->Add (t, 1, wxEXPAND);
70         add_label_to_sizer (labels, this, wxT (":"), false);
71         //// TRANSLATORS: this is an abbreviation for "seconds"
72         t = new wxStaticText (this, wxID_ANY, _("s"), wxDefaultPosition, size, wxALIGN_CENTRE_HORIZONTAL);
73 #ifdef DCPOMATIC_LINUX
74         gtk_label_set_line_wrap (GTK_LABEL (t->GetHandle()), FALSE);
75 #endif
76         labels->Add (t, 1, wxEXPAND);
77         add_label_to_sizer (labels, this, wxT (":"), false);
78         //// TRANSLATORS: this is an abbreviation for "frames"
79         t = new wxStaticText (this, wxID_ANY, _("f"), wxDefaultPosition, size, wxALIGN_CENTRE_HORIZONTAL);
80 #ifdef DCPOMATIC_LINUX
81         gtk_label_set_line_wrap (GTK_LABEL (t->GetHandle()), FALSE);
82 #endif
83         labels->Add (t, 1, wxEXPAND);
84         grid->Add (new wxStaticText (this, wxID_ANY, wxT ("")));
85         grid->Add (labels);
86
87         add_label_to_sizer (grid, this, _("Position"), true);
88         _position = new Timecode<DCPTime> (this);
89         grid->Add (_position);
90         add_label_to_sizer (grid, this, _("Full length"), true);
91         _full_length = new Timecode<DCPTime> (this);
92         grid->Add (_full_length);
93         add_label_to_sizer (grid, this, _("Trim from start"), true);
94         _trim_start = new Timecode<ContentTime> (this);
95         grid->Add (_trim_start);
96         _trim_start_to_playhead = new wxButton (this, wxID_ANY, _("Trim up to current position"));
97         grid->AddSpacer (0);
98         grid->Add (_trim_start_to_playhead);
99         add_label_to_sizer (grid, this, _("Trim from end"), true);
100         _trim_end = new Timecode<ContentTime> (this);
101         grid->Add (_trim_end);
102         _trim_end_to_playhead = new wxButton (this, wxID_ANY, _("Trim after current position"));
103         grid->AddSpacer (0);
104         grid->Add (_trim_end_to_playhead);
105         add_label_to_sizer (grid, this, _("Play length"), true);
106         _play_length = new Timecode<DCPTime> (this);
107         grid->Add (_play_length);
108
109         {
110                 add_label_to_sizer (grid, this, _("Video frame rate"), true);
111                 wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
112                 _video_frame_rate = new wxTextCtrl (this, wxID_ANY);
113                 s->Add (_video_frame_rate, 1, wxEXPAND);
114                 _set_video_frame_rate = new wxButton (this, wxID_ANY, _("Set"));
115                 _set_video_frame_rate->Enable (false);
116                 s->Add (_set_video_frame_rate, 0, wxLEFT | wxRIGHT, 8);
117                 grid->Add (s, 1, wxEXPAND);
118         }
119
120         grid->AddSpacer (0);
121
122         /* We can't use Wrap() here as it doesn't work with markup:
123          * http://trac.wxwidgets.org/ticket/13389
124          */
125
126         wxString in = _("<i>Only change this if it the content's frame rate has been read incorrectly.</i>");
127         wxString out;
128         int const width = 20;
129         int current = 0;
130         for (size_t i = 0; i < in.Length(); ++i) {
131                 if (in[i] == ' ' && current >= width) {
132                         out += '\n';
133                         current = 0;
134                 } else {
135                         out += in[i];
136                         ++current;
137                 }
138         }
139
140         t = new wxStaticText (this, wxID_ANY, wxT (""));
141         t->SetLabelMarkup (out);
142         grid->Add (t, 0, wxALIGN_CENTER_VERTICAL | wxLEFT | wxRIGHT, 6);
143
144         _position->Changed.connect    (boost::bind (&TimingPanel::position_changed, this));
145         _full_length->Changed.connect (boost::bind (&TimingPanel::full_length_changed, this));
146         _trim_start->Changed.connect  (boost::bind (&TimingPanel::trim_start_changed, this));
147         _trim_start_to_playhead->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&TimingPanel::trim_start_to_playhead_clicked, this));
148         _trim_end->Changed.connect    (boost::bind (&TimingPanel::trim_end_changed, this));
149         _trim_end_to_playhead->Bind   (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&TimingPanel::trim_end_to_playhead_clicked, this));
150         _play_length->Changed.connect (boost::bind (&TimingPanel::play_length_changed, this));
151         _video_frame_rate->Bind       (wxEVT_COMMAND_TEXT_UPDATED, boost::bind (&TimingPanel::video_frame_rate_changed, this));
152         _set_video_frame_rate->Bind   (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&TimingPanel::set_video_frame_rate, this));
153
154         _viewer->ImageChanged.connect (boost::bind (&TimingPanel::setup_sensitivity, this));
155
156         setup_sensitivity ();
157 }
158
159 void
160 TimingPanel::update_full_length ()
161 {
162         set<DCPTime> check;
163         BOOST_FOREACH (shared_ptr<const Content> i, _parent->selected ()) {
164                 check.insert (i->full_length ());
165         }
166
167         if (check.size() == 1) {
168                 _full_length->set (_parent->selected().front()->full_length (), _parent->film()->video_frame_rate ());
169         } else {
170                 _full_length->clear ();
171         }
172 }
173
174 void
175 TimingPanel::update_play_length ()
176 {
177         set<DCPTime> check;
178         BOOST_FOREACH (shared_ptr<const Content> i, _parent->selected ()) {
179                 check.insert (i->length_after_trim ());
180         }
181
182         if (check.size() == 1) {
183                 _play_length->set (_parent->selected().front()->length_after_trim (), _parent->film()->video_frame_rate ());
184         } else {
185                 _play_length->clear ();
186         }
187 }
188
189 void
190 TimingPanel::film_content_changed (int property)
191 {
192         int const film_video_frame_rate = _parent->film()->video_frame_rate ();
193
194         /* Here we check to see if we have exactly one different value of various
195            properties, and fill the controls with that value if so.
196         */
197
198         if (property == ContentProperty::POSITION) {
199
200                 set<DCPTime> check;
201                 BOOST_FOREACH (shared_ptr<const Content> i, _parent->selected ()) {
202                         check.insert (i->position ());
203                 }
204
205                 if (check.size() == 1) {
206                         _position->set (_parent->selected().front()->position(), film_video_frame_rate);
207                 } else {
208                         _position->clear ();
209                 }
210
211         } else if (
212                 property == ContentProperty::LENGTH ||
213                 property == VideoContentProperty::VIDEO_FRAME_RATE ||
214                 property == VideoContentProperty::VIDEO_FRAME_TYPE ||
215                 property == AudioContentProperty::AUDIO_VIDEO_FRAME_RATE ||
216                 property == SubtitleContentProperty::SUBTITLE_VIDEO_FRAME_RATE
217                 ) {
218
219                 update_full_length ();
220
221         } else if (property == ContentProperty::TRIM_START) {
222
223                 set<ContentTime> check;
224                 BOOST_FOREACH (shared_ptr<const Content> i, _parent->selected ()) {
225                         check.insert (i->trim_start ());
226                 }
227
228                 if (check.size() == 1) {
229                         _trim_start->set (_parent->selected().front()->trim_start (), film_video_frame_rate);
230                 } else {
231                         _trim_start->clear ();
232                 }
233
234         } else if (property == ContentProperty::TRIM_END) {
235
236                 set<ContentTime> check;
237                 BOOST_FOREACH (shared_ptr<const Content> i, _parent->selected ()) {
238                         check.insert (i->trim_end ());
239                 }
240
241                 if (check.size() == 1) {
242                         _trim_end->set (_parent->selected().front()->trim_end (), film_video_frame_rate);
243                 } else {
244                         _trim_end->clear ();
245                 }
246         }
247
248         if (
249                 property == ContentProperty::LENGTH ||
250                 property == ContentProperty::TRIM_START ||
251                 property == ContentProperty::TRIM_END ||
252                 property == VideoContentProperty::VIDEO_FRAME_RATE ||
253                 property == VideoContentProperty::VIDEO_FRAME_TYPE ||
254                 property == AudioContentProperty::AUDIO_VIDEO_FRAME_RATE ||
255                 property == SubtitleContentProperty::SUBTITLE_VIDEO_FRAME_RATE
256                 ) {
257
258                 update_play_length ();
259         }
260
261         if (property == VideoContentProperty::VIDEO_FRAME_RATE || property == SubtitleContentProperty::SUBTITLE_VIDEO_FRAME_RATE) {
262                 set<double> check_vc;
263                 shared_ptr<const Content> vc;
264                 int count_ac = 0;
265                 shared_ptr<const Content> ac;
266                 int count_sc = 0;
267                 shared_ptr<const Content> sc;
268                 BOOST_FOREACH (shared_ptr<const Content> i, _parent->selected ()) {
269                         if (i->video) {
270                                 check_vc.insert (i->video->video_frame_rate ());
271                                 vc = i;
272                         }
273                         shared_ptr<const AudioContent> at = dynamic_pointer_cast<const AudioContent> (i);
274                         if (i->audio) {
275                                 ++count_ac;
276                                 ac = at;
277                         }
278                         if (i->subtitle) {
279                                 ++count_sc;
280                                 sc = i;
281                         }
282
283                 }
284
285                 bool const single_frame_image_content = vc && dynamic_pointer_cast<const ImageContent> (vc) && vc->number_of_paths() == 1;
286
287                 if ((check_vc.size() == 1 || count_ac == 1 || count_sc == 1) && !single_frame_image_content) {
288                         if (vc) {
289                                 checked_set (_video_frame_rate, raw_convert<string> (vc->video->video_frame_rate (), 5));
290                         } else if (ac) {
291                                 checked_set (_video_frame_rate, raw_convert<string> (ac->audio->audio_video_frame_rate (), 5));
292                         } else if (sc) {
293                                 checked_set (_video_frame_rate, raw_convert<string> (sc->subtitle_video_frame_rate (), 5));
294                         }
295                         _video_frame_rate->Enable (true);
296                 } else {
297                         checked_set (_video_frame_rate, wxT (""));
298                         _video_frame_rate->Enable (false);
299                 }
300         }
301
302         bool have_still = false;
303         BOOST_FOREACH (shared_ptr<const Content> i, _parent->selected ()) {
304                 shared_ptr<const ImageContent> ic = dynamic_pointer_cast<const ImageContent> (i);
305                 if (ic && ic->still ()) {
306                         have_still = true;
307                 }
308         }
309
310         _full_length->set_editable (have_still);
311         _play_length->set_editable (!have_still);
312         _set_video_frame_rate->Enable (false);
313         setup_sensitivity ();
314 }
315
316 void
317 TimingPanel::position_changed ()
318 {
319         BOOST_FOREACH (shared_ptr<Content> i, _parent->selected ()) {
320                 i->set_position (_position->get (_parent->film()->video_frame_rate ()));
321         }
322 }
323
324 void
325 TimingPanel::full_length_changed ()
326 {
327         BOOST_FOREACH (shared_ptr<Content> i, _parent->selected ()) {
328                 shared_ptr<ImageContent> ic = dynamic_pointer_cast<ImageContent> (i);
329                 if (ic && ic->still ()) {
330                         int const vfr = _parent->film()->video_frame_rate ();
331                         ic->video->set_video_length (_full_length->get (vfr).frames_round (vfr));
332                 }
333         }
334 }
335
336 void
337 TimingPanel::trim_start_changed ()
338 {
339         DCPTime const ph = _viewer->position ();
340
341         _viewer->set_coalesce_player_changes (true);
342
343         shared_ptr<Content> ref;
344         optional<FrameRateChange> ref_frc;
345         optional<DCPTime> ref_ph;
346         BOOST_FOREACH (shared_ptr<Content> i, _parent->selected ()) {
347                 if (i->position() <= ph && ph < i->end()) {
348                         /* The playhead is in i.  Use it as a reference to work out
349                            where to put the playhead post-trim; we're trying to keep the playhead
350                            at the same frame of content that we're looking at pre-trim.
351                         */
352                         ref = i;
353                         ref_frc = _parent->film()->active_frame_rate_change (i->position ());
354                         ref_ph = ph - i->position() + DCPTime (i->trim_start(), ref_frc.get());
355                 }
356
357                 i->set_trim_start (_trim_start->get (_parent->film()->video_frame_rate ()));
358         }
359
360         if (ref) {
361                 _viewer->set_position (max (DCPTime(), ref_ph.get() + ref->position() - DCPTime (ref->trim_start(), ref_frc.get())));
362         }
363
364         _viewer->set_coalesce_player_changes (false);
365 }
366
367 void
368 TimingPanel::trim_end_changed ()
369 {
370         _viewer->set_coalesce_player_changes (true);
371
372         BOOST_FOREACH (shared_ptr<Content> i, _parent->selected ()) {
373                 i->set_trim_end (_trim_end->get (_parent->film()->video_frame_rate ()));
374         }
375
376         /* XXX: maybe playhead-off-the-end-of-the-film should be handled elsewhere */
377         if (_viewer->position() >= _parent->film()->length()) {
378                 _viewer->set_position (_parent->film()->length() - DCPTime::from_frames (1, _parent->film()->video_frame_rate()));
379         }
380
381         _viewer->set_coalesce_player_changes (true);
382 }
383
384 void
385 TimingPanel::play_length_changed ()
386 {
387         BOOST_FOREACH (shared_ptr<Content> i, _parent->selected ()) {
388                 FrameRateChange const frc = _parent->film()->active_frame_rate_change (i->position ());
389                 i->set_trim_end (
390                         ContentTime (i->full_length() - _play_length->get (_parent->film()->video_frame_rate()), frc)
391                         - i->trim_start ()
392                         );
393         }
394 }
395
396 void
397 TimingPanel::video_frame_rate_changed ()
398 {
399         _set_video_frame_rate->Enable (true);
400 }
401
402 void
403 TimingPanel::set_video_frame_rate ()
404 {
405         BOOST_FOREACH (shared_ptr<Content> i, _parent->selected ()) {
406                 shared_ptr<VideoContent> vc = dynamic_pointer_cast<VideoContent> (i);
407                 shared_ptr<AudioContent> ac = dynamic_pointer_cast<AudioContent> (i);
408                 shared_ptr<DCPSubtitleContent> dsc = dynamic_pointer_cast<DCPSubtitleContent> (i);
409                 shared_ptr<TextSubtitleContent> tsc = dynamic_pointer_cast<TextSubtitleContent> (i);
410                 double const fr = raw_convert<double> (wx_to_std (_video_frame_rate->GetValue ()));
411                 if (vc) {
412                         vc->set_video_frame_rate (fr);
413                 } else if (ac) {
414                         /* Audio but not video, i.e. SndfileContent */
415                         ac->set_audio_video_frame_rate (fr);
416                 } else if (dsc) {
417                         dsc->set_subtitle_video_frame_rate (fr);
418                 } else if (tsc) {
419                         tsc->set_subtitle_video_frame_rate (fr);
420                 }
421                 _set_video_frame_rate->Enable (false);
422         }
423 }
424
425 void
426 TimingPanel::content_selection_changed ()
427 {
428         setup_sensitivity ();
429
430         film_content_changed (ContentProperty::POSITION);
431         film_content_changed (ContentProperty::LENGTH);
432         film_content_changed (ContentProperty::TRIM_START);
433         film_content_changed (ContentProperty::TRIM_END);
434         film_content_changed (VideoContentProperty::VIDEO_FRAME_RATE);
435         film_content_changed (SubtitleContentProperty::SUBTITLE_VIDEO_FRAME_RATE);
436         film_content_changed (AudioContentProperty::AUDIO_VIDEO_FRAME_RATE);
437 }
438
439 void
440 TimingPanel::film_changed (Film::Property p)
441 {
442         if (p == Film::VIDEO_FRAME_RATE) {
443                 update_full_length ();
444                 update_play_length ();
445         }
446 }
447
448 void
449 TimingPanel::trim_start_to_playhead_clicked ()
450 {
451         DCPTime const ph = _viewer->position ();
452         optional<DCPTime> new_ph;
453
454         _viewer->set_coalesce_player_changes (true);
455
456         BOOST_FOREACH (shared_ptr<Content> i, _parent->selected ()) {
457                 if (i->position() < ph && ph < i->end ()) {
458                         FrameRateChange const frc = _parent->film()->active_frame_rate_change (i->position ());
459                         i->set_trim_start (i->trim_start() + ContentTime (ph - i->position (), frc));
460                         new_ph = i->position ();
461                 }
462         }
463
464         if (new_ph) {
465                 _viewer->set_position (new_ph.get());
466         }
467
468         _viewer->set_coalesce_player_changes (false);
469 }
470
471 void
472 TimingPanel::trim_end_to_playhead_clicked ()
473 {
474         DCPTime const ph = _viewer->position ();
475         BOOST_FOREACH (shared_ptr<Content> i, _parent->selected ()) {
476                 if (i->position() < ph && ph < i->end ()) {
477                         FrameRateChange const frc = _parent->film()->active_frame_rate_change (i->position ());
478                         i->set_trim_end (ContentTime (i->position() + i->full_length() - ph - DCPTime::from_frames (1, frc.dcp), frc) - i->trim_start());
479                 }
480         }
481 }
482
483 void
484 TimingPanel::setup_sensitivity ()
485 {
486         bool const e = !_parent->selected().empty ();
487
488         _position->Enable (e);
489         _full_length->Enable (e);
490         _trim_start->Enable (e);
491         _trim_end->Enable (e);
492         _play_length->Enable (e);
493         _video_frame_rate->Enable (e);
494
495         DCPTime const ph = _viewer->position ();
496         bool any_over_ph = false;
497         BOOST_FOREACH (shared_ptr<const Content> i, _parent->selected ()) {
498                 if (i->position() <= ph && ph < i->end()) {
499                         any_over_ph = true;
500                 }
501         }
502
503         _trim_start_to_playhead->Enable (any_over_ph);
504         _trim_end_to_playhead->Enable (any_over_ph);
505 }