Fix sensitivity of colour conversion edit button.
[dcpomatic.git] / src / wx / video_panel.cc
1 /*
2     Copyright (C) 2012-2015 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 "filter_dialog.h"
21 #include "video_panel.h"
22 #include "wx_util.h"
23 #include "content_colour_conversion_dialog.h"
24 #include "content_widget.h"
25 #include "content_panel.h"
26 #include "lib/filter.h"
27 #include "lib/ffmpeg_content.h"
28 #include "lib/colour_conversion.h"
29 #include "lib/config.h"
30 #include "lib/util.h"
31 #include "lib/ratio.h"
32 #include "lib/frame_rate_change.h"
33 #include "lib/dcp_content.h"
34 #include <wx/spinctrl.h>
35 #include <boost/foreach.hpp>
36 #include <set>
37 #include <iostream>
38
39 using std::vector;
40 using std::string;
41 using std::pair;
42 using std::cout;
43 using std::list;
44 using std::set;
45 using boost::shared_ptr;
46 using boost::dynamic_pointer_cast;
47 using boost::bind;
48 using boost::optional;
49
50 static VideoContentScale
51 index_to_scale (int n)
52 {
53         vector<VideoContentScale> scales = VideoContentScale::all ();
54         DCPOMATIC_ASSERT (n >= 0);
55         DCPOMATIC_ASSERT (n < int (scales.size ()));
56         return scales[n];
57 }
58
59 static int
60 scale_to_index (VideoContentScale scale)
61 {
62         vector<VideoContentScale> scales = VideoContentScale::all ();
63         for (size_t i = 0; i < scales.size(); ++i) {
64                 if (scales[i] == scale) {
65                         return i;
66                 }
67         }
68
69         DCPOMATIC_ASSERT (false);
70 }
71
72 VideoPanel::VideoPanel (ContentPanel* p)
73         : ContentSubPanel (p, _("Video"))
74 {
75         wxGridBagSizer* grid = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
76         _sizer->Add (grid, 0, wxALL, 8);
77
78         int r = 0;
79
80         _reference = new wxCheckBox (this, wxID_ANY, _("Refer to existing DCP"));
81         grid->Add (_reference, wxGBPosition (r, 0), wxGBSpan (1, 2));
82         ++r;
83
84         add_label_to_sizer (grid, this, _("Type"), true, wxGBPosition (r, 0));
85         _frame_type = new ContentChoice<VideoContent, VideoFrameType> (
86                 this,
87                 new wxChoice (this, wxID_ANY),
88                 VideoContentProperty::VIDEO_FRAME_TYPE,
89                 boost::mem_fn (&VideoContent::video_frame_type),
90                 boost::mem_fn (&VideoContent::set_video_frame_type),
91                 &caster<int, VideoFrameType>,
92                 &caster<VideoFrameType, int>
93                 );
94         _frame_type->add (grid, wxGBPosition (r, 1), wxGBSpan (1, 2));
95         ++r;
96
97         add_label_to_sizer (grid, this, _("Crop"), true, wxGBPosition (r, 0));
98
99         int cr = 0;
100         wxGridBagSizer* crop = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
101
102         add_label_to_sizer (crop, this, _("Left"), true, wxGBPosition (cr, 0));
103         _left_crop = new ContentSpinCtrl<VideoContent> (
104                 this,
105                 new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)),
106                 VideoContentProperty::VIDEO_CROP,
107                 boost::mem_fn (&VideoContent::left_crop),
108                 boost::mem_fn (&VideoContent::set_left_crop)
109                 );
110         _left_crop->add (crop, wxGBPosition (cr, 1));
111
112         add_label_to_sizer (crop, this, _("Right"), true, wxGBPosition (cr, 2));
113         _right_crop = new ContentSpinCtrl<VideoContent> (
114                 this,
115                 new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)),
116                 VideoContentProperty::VIDEO_CROP,
117                 boost::mem_fn (&VideoContent::right_crop),
118                 boost::mem_fn (&VideoContent::set_right_crop)
119                 );
120         _right_crop->add (crop, wxGBPosition (cr, 3));
121
122         ++cr;
123
124         add_label_to_sizer (crop, this, _("Top"), true, wxGBPosition (cr, 0));
125         _top_crop = new ContentSpinCtrl<VideoContent> (
126                 this,
127                 new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)),
128                 VideoContentProperty::VIDEO_CROP,
129                 boost::mem_fn (&VideoContent::top_crop),
130                 boost::mem_fn (&VideoContent::set_top_crop)
131                 );
132         _top_crop->add (crop, wxGBPosition (cr, 1));
133
134         add_label_to_sizer (crop, this, _("Bottom"), true, wxGBPosition (cr, 2));
135         _bottom_crop = new ContentSpinCtrl<VideoContent> (
136                 this,
137                 new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)),
138                 VideoContentProperty::VIDEO_CROP,
139                 boost::mem_fn (&VideoContent::bottom_crop),
140                 boost::mem_fn (&VideoContent::set_bottom_crop)
141                 );
142         _bottom_crop->add (crop, wxGBPosition (cr, 3));
143
144         grid->Add (crop, wxGBPosition (r, 1), wxGBSpan (2, 3));
145         r += 2;
146
147         add_label_to_sizer (grid, this, _("Fade in"), true, wxGBPosition (r, 0));
148         _fade_in = new Timecode<ContentTime> (this);
149         grid->Add (_fade_in, wxGBPosition (r, 1), wxGBSpan (1, 3));
150         ++r;
151
152         add_label_to_sizer (grid, this, _("Fade out"), true, wxGBPosition (r, 0));
153         _fade_out = new Timecode<ContentTime> (this);
154         grid->Add (_fade_out, wxGBPosition (r, 1), wxGBSpan (1, 3));
155         ++r;
156
157         add_label_to_sizer (grid, this, _("Scale to"), true, wxGBPosition (r, 0));
158         _scale = new ContentChoice<VideoContent, VideoContentScale> (
159                 this,
160                 new wxChoice (this, wxID_ANY),
161                 VideoContentProperty::VIDEO_SCALE,
162                 boost::mem_fn (&VideoContent::scale),
163                 boost::mem_fn (&VideoContent::set_scale),
164                 &index_to_scale,
165                 &scale_to_index
166                 );
167         _scale->add (grid, wxGBPosition (r, 1), wxGBSpan (1, 2));
168         ++r;
169
170         wxClientDC dc (this);
171         wxSize size = dc.GetTextExtent (wxT ("A quite long name"));
172         size.SetHeight (-1);
173
174         add_label_to_sizer (grid, this, _("Filters"), true, wxGBPosition (r, 0));
175         {
176                 wxSizer* s = new wxBoxSizer (wxHORIZONTAL);
177
178                 _filters = new wxStaticText (this, wxID_ANY, _("None"), wxDefaultPosition, size);
179                 s->Add (_filters, 1, wxEXPAND | wxALIGN_CENTER_VERTICAL | wxTOP | wxBOTTOM | wxRIGHT, 6);
180                 _filters_button = new wxButton (this, wxID_ANY, _("Edit..."));
181                 s->Add (_filters_button, 0, wxALIGN_CENTER_VERTICAL);
182
183                 grid->Add (s, wxGBPosition (r, 1), wxDefaultSpan, wxALIGN_CENTER_VERTICAL);
184         }
185         ++r;
186
187         add_label_to_sizer (grid, this, _("Colour conversion"), true, wxGBPosition (r, 0));
188         {
189                 wxSizer* s = new wxBoxSizer (wxHORIZONTAL);
190
191                 _colour_conversion = new wxChoice (this, wxID_ANY, wxDefaultPosition, size);
192                 _colour_conversion->Append (_("None"));
193                 BOOST_FOREACH (PresetColourConversion const & i, PresetColourConversion::all()) {
194                         _colour_conversion->Append (std_to_wx (i.name));
195                 }
196                 _colour_conversion->Append (_("Custom"));
197                 s->Add (_colour_conversion, 1, wxEXPAND | wxALIGN_CENTER_VERTICAL | wxTOP | wxBOTTOM | wxRIGHT, 6);
198
199                 _edit_colour_conversion_button = new wxButton (this, wxID_ANY, _("Edit..."));
200                 s->Add (_edit_colour_conversion_button, 0, wxALIGN_CENTER_VERTICAL);
201
202                 grid->Add (s, wxGBPosition (r, 1), wxDefaultSpan, wxALIGN_CENTER_VERTICAL);
203         }
204         ++r;
205
206         _description = new wxStaticText (this, wxID_ANY, wxT ("\n \n \n \n \n"), wxDefaultPosition, wxDefaultSize);
207         grid->Add (_description, wxGBPosition (r, 0), wxGBSpan (1, 4), wxEXPAND | wxALIGN_CENTER_VERTICAL | wxALL, 6);
208         wxFont font = _description->GetFont();
209         font.SetStyle(wxFONTSTYLE_ITALIC);
210         font.SetPointSize(font.GetPointSize() - 1);
211         _description->SetFont(font);
212         ++r;
213
214         _left_crop->wrapped()->SetRange (0, 1024);
215         _top_crop->wrapped()->SetRange (0, 1024);
216         _right_crop->wrapped()->SetRange (0, 1024);
217         _bottom_crop->wrapped()->SetRange (0, 1024);
218
219         _scale->wrapped()->Clear ();
220         BOOST_FOREACH (VideoContentScale const & i, VideoContentScale::all ()) {
221                 _scale->wrapped()->Append (std_to_wx (i.name ()));
222         }
223
224         _frame_type->wrapped()->Append (_("2D"));
225         _frame_type->wrapped()->Append (_("3D left/right"));
226         _frame_type->wrapped()->Append (_("3D top/bottom"));
227         _frame_type->wrapped()->Append (_("3D alternate"));
228         _frame_type->wrapped()->Append (_("3D left only"));
229         _frame_type->wrapped()->Append (_("3D right only"));
230
231         _fade_in->Changed.connect (boost::bind (&VideoPanel::fade_in_changed, this));
232         _fade_out->Changed.connect (boost::bind (&VideoPanel::fade_out_changed, this));
233
234         _reference->Bind                     (wxEVT_COMMAND_CHECKBOX_CLICKED, boost::bind (&VideoPanel::reference_clicked, this));
235         _filters_button->Bind                (wxEVT_COMMAND_BUTTON_CLICKED,   boost::bind (&VideoPanel::edit_filters_clicked, this));
236         _colour_conversion->Bind             (wxEVT_COMMAND_CHOICE_SELECTED,  boost::bind (&VideoPanel::colour_conversion_changed, this));
237         _edit_colour_conversion_button->Bind (wxEVT_COMMAND_BUTTON_CLICKED,   boost::bind (&VideoPanel::edit_colour_conversion_clicked, this));
238 }
239
240 void
241 VideoPanel::film_changed (Film::Property property)
242 {
243         switch (property) {
244         case Film::CONTAINER:
245         case Film::VIDEO_FRAME_RATE:
246         case Film::RESOLUTION:
247                 setup_description ();
248                 break;
249         case Film::REEL_TYPE:
250                 setup_sensitivity ();
251         default:
252                 break;
253         }
254 }
255
256 void
257 VideoPanel::film_content_changed (int property)
258 {
259         VideoContentList vc = _parent->selected_video ();
260         shared_ptr<VideoContent> vcs;
261         shared_ptr<FFmpegContent> fcs;
262         if (!vc.empty ()) {
263                 vcs = vc.front ();
264                 fcs = dynamic_pointer_cast<FFmpegContent> (vcs);
265         }
266
267         if (property == VideoContentProperty::VIDEO_FRAME_TYPE) {
268                 setup_description ();
269         } else if (property == VideoContentProperty::VIDEO_CROP) {
270                 setup_description ();
271         } else if (property == VideoContentProperty::VIDEO_SCALE) {
272                 setup_description ();
273         } else if (property == VideoContentProperty::VIDEO_FRAME_RATE) {
274                 setup_description ();
275         } else if (property == VideoContentProperty::COLOUR_CONVERSION) {
276                 if (vcs && vcs->colour_conversion ()) {
277                         optional<size_t> preset = vcs->colour_conversion().get().preset ();
278                         vector<PresetColourConversion> cc = PresetColourConversion::all ();
279                         if (preset) {
280                                 checked_set (_colour_conversion, preset.get() + 1);
281                         } else {
282                                 checked_set (_colour_conversion, cc.size() + 1);
283                         }
284                 } else {
285                         checked_set (_colour_conversion, 0);
286                 }
287
288                 setup_sensitivity ();
289
290         } else if (property == FFmpegContentProperty::FILTERS) {
291                 if (fcs) {
292                         string p = Filter::ffmpeg_string (fcs->filters ());
293                         if (p.empty ()) {
294                                 checked_set (_filters, _("None"));
295                         } else {
296                                 if (p.length() > 25) {
297                                         p = p.substr (0, 25) + "...";
298                                 }
299                                 checked_set (_filters, p);
300                         }
301                 }
302         } else if (property == VideoContentProperty::VIDEO_FADE_IN) {
303                 set<Frame> check;
304                 BOOST_FOREACH (shared_ptr<const VideoContent> i, vc) {
305                         check.insert (i->fade_in ());
306                 }
307
308                 if (check.size() == 1) {
309                         _fade_in->set (ContentTime::from_frames (vc.front()->fade_in (), vc.front()->video_frame_rate ()), vc.front()->video_frame_rate ());
310                 } else {
311                         _fade_in->clear ();
312                 }
313         } else if (property == VideoContentProperty::VIDEO_FADE_OUT) {
314                 set<Frame> check;
315                 BOOST_FOREACH (shared_ptr<const VideoContent> i, vc) {
316                         check.insert (i->fade_out ());
317                 }
318
319                 if (check.size() == 1) {
320                         _fade_out->set (ContentTime::from_frames (vc.front()->fade_out (), vc.front()->video_frame_rate ()), vc.front()->video_frame_rate ());
321                 } else {
322                         _fade_out->clear ();
323                 }
324         } else if (property == DCPContentProperty::REFERENCE_VIDEO) {
325                 if (vc.size() == 1) {
326                         shared_ptr<DCPContent> dcp = dynamic_pointer_cast<DCPContent> (vc.front ());
327                         checked_set (_reference, dcp ? dcp->reference_video () : false);
328                 } else {
329                         checked_set (_reference, false);
330                 }
331
332                 setup_sensitivity ();
333         }
334 }
335
336 /** Called when the `Edit filters' button has been clicked */
337 void
338 VideoPanel::edit_filters_clicked ()
339 {
340         FFmpegContentList c = _parent->selected_ffmpeg ();
341         if (c.size() != 1) {
342                 return;
343         }
344
345         FilterDialog* d = new FilterDialog (this, c.front()->filters());
346         d->ActiveChanged.connect (bind (&FFmpegContent::set_filters, c.front(), _1));
347         d->ShowModal ();
348         d->Destroy ();
349 }
350
351 void
352 VideoPanel::setup_description ()
353 {
354         VideoContentList vc = _parent->selected_video ();
355         if (vc.empty ()) {
356                 checked_set (_description, wxT (""));
357                 return;
358         } else if (vc.size() > 1) {
359                 checked_set (_description, _("Multiple content selected"));
360                 return;
361         }
362
363         string d = vc.front()->processing_description ();
364         size_t lines = count (d.begin(), d.end(), '\n');
365
366         for (int i = lines; i < 6; ++i) {
367                 d += "\n ";
368         }
369
370         checked_set (_description, d);
371         _sizer->Layout ();
372 }
373
374 void
375 VideoPanel::colour_conversion_changed ()
376 {
377         VideoContentList vc = _parent->selected_video ();
378         if (vc.size() != 1) {
379                 return;
380         }
381
382         int const s = _colour_conversion->GetSelection ();
383         vector<PresetColourConversion> all = PresetColourConversion::all ();
384
385         if (s == 0) {
386                 vc.front()->unset_colour_conversion ();
387         } else if (s == int (all.size() + 1)) {
388                 edit_colour_conversion_clicked ();
389         } else {
390                 vc.front()->set_colour_conversion (all[s - 1].conversion);
391         }
392 }
393
394 void
395 VideoPanel::edit_colour_conversion_clicked ()
396 {
397         VideoContentList vc = _parent->selected_video ();
398         if (vc.size() != 1) {
399                 return;
400         }
401
402         ContentColourConversionDialog* d = new ContentColourConversionDialog (this, vc.front()->yuv ());
403         d->set (vc.front()->colour_conversion().get_value_or (PresetColourConversion::all().front ().conversion));
404         d->ShowModal ();
405         vc.front()->set_colour_conversion (d->get ());
406         d->Destroy ();
407 }
408
409 void
410 VideoPanel::content_selection_changed ()
411 {
412         VideoContentList video_sel = _parent->selected_video ();
413
414         _frame_type->set_content (video_sel);
415         _left_crop->set_content (video_sel);
416         _right_crop->set_content (video_sel);
417         _top_crop->set_content (video_sel);
418         _bottom_crop->set_content (video_sel);
419         _scale->set_content (video_sel);
420
421         film_content_changed (VideoContentProperty::VIDEO_CROP);
422         film_content_changed (VideoContentProperty::VIDEO_FRAME_RATE);
423         film_content_changed (VideoContentProperty::COLOUR_CONVERSION);
424         film_content_changed (VideoContentProperty::VIDEO_FADE_IN);
425         film_content_changed (VideoContentProperty::VIDEO_FADE_OUT);
426         film_content_changed (FFmpegContentProperty::FILTERS);
427         film_content_changed (DCPContentProperty::REFERENCE_VIDEO);
428
429         setup_sensitivity ();
430 }
431
432 void
433 VideoPanel::setup_sensitivity ()
434 {
435         ContentList sel = _parent->selected ();
436
437         shared_ptr<DCPContent> dcp;
438         if (sel.size() == 1) {
439                 dcp = dynamic_pointer_cast<DCPContent> (sel.front ());
440         }
441
442         list<string> why_not;
443         bool const can_reference = dcp && dcp->can_reference_video(why_not);
444         _reference->Enable (can_reference);
445
446         wxString s;
447         if (!can_reference) {
448                 s = _("Cannot reference this DCP.  ");
449                 BOOST_FOREACH (string i, why_not) {
450                         s += std_to_wx(i) + wxT("  ");
451                 }
452         }
453         _reference->SetToolTip (s);
454
455         if (_reference->GetValue ()) {
456                 _frame_type->wrapped()->Enable (false);
457                 _left_crop->wrapped()->Enable (false);
458                 _right_crop->wrapped()->Enable (false);
459                 _top_crop->wrapped()->Enable (false);
460                 _bottom_crop->wrapped()->Enable (false);
461                 _fade_in->Enable (false);
462                 _fade_out->Enable (false);
463                 _scale->wrapped()->Enable (false);
464                 _description->Enable (false);
465                 _filters->Enable (false);
466                 _filters_button->Enable (false);
467                 _colour_conversion->Enable (false);
468         } else {
469                 VideoContentList video_sel = _parent->selected_video ();
470                 FFmpegContentList ffmpeg_sel = _parent->selected_ffmpeg ();
471                 bool const single = video_sel.size() == 1;
472
473                 _frame_type->wrapped()->Enable (true);
474                 _left_crop->wrapped()->Enable (true);
475                 _right_crop->wrapped()->Enable (true);
476                 _top_crop->wrapped()->Enable (true);
477                 _bottom_crop->wrapped()->Enable (true);
478                 _fade_in->Enable (!video_sel.empty ());
479                 _fade_out->Enable (!video_sel.empty ());
480                 _scale->wrapped()->Enable (true);
481                 _description->Enable (true);
482                 _filters->Enable (true);
483                 _filters_button->Enable (single && !ffmpeg_sel.empty ());
484                 _colour_conversion->Enable (single && !video_sel.empty ());
485         }
486
487         VideoContentList vc = _parent->selected_video ();
488         shared_ptr<VideoContent> vcs;
489         if (!vc.empty ()) {
490                 vcs = vc.front ();
491         }
492
493         if (vcs && vcs->colour_conversion ()) {
494                 _edit_colour_conversion_button->Enable (!vcs->colour_conversion().get().preset());
495         } else {
496                 _edit_colour_conversion_button->Enable (false);
497         }
498 }
499
500 void
501 VideoPanel::fade_in_changed ()
502 {
503         BOOST_FOREACH (shared_ptr<VideoContent> i, _parent->selected_video ()) {
504                 int const vfr = _parent->film()->video_frame_rate ();
505                 i->set_fade_in (_fade_in->get (vfr).frames_round (vfr));
506         }
507 }
508
509 void
510 VideoPanel::fade_out_changed ()
511 {
512         BOOST_FOREACH (shared_ptr<VideoContent> i, _parent->selected_video ()) {
513                 int const vfr = _parent->film()->video_frame_rate ();
514                 i->set_fade_out (_fade_out->get (vfr).frames_round (vfr));
515         }
516 }
517
518 void
519 VideoPanel::reference_clicked ()
520 {
521         ContentList c = _parent->selected ();
522         if (c.size() != 1) {
523                 return;
524         }
525
526         shared_ptr<DCPContent> d = dynamic_pointer_cast<DCPContent> (c.front ());
527         if (!d) {
528                 return;
529         }
530
531         d->set_reference_video (_reference->GetValue ());
532 }