d0c99f6068484866a26046e71cf5b02c621b5a96
[dcpomatic.git] / src / wx / video_panel.cc
1 /*
2     Copyright (C) 2012-2013 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 <wx/spinctrl.h>
21 #include "lib/ratio.h"
22 #include "lib/filter.h"
23 #include "filter_dialog.h"
24 #include "video_panel.h"
25 #include "wx_util.h"
26 #include "film_editor.h"
27
28 using std::vector;
29 using std::string;
30 using std::pair;
31 using std::cout;
32 using boost::shared_ptr;
33 using boost::dynamic_pointer_cast;
34 using boost::bind;
35
36 VideoPanel::VideoPanel (FilmEditor* e)
37         : FilmEditorPanel (e, _("Video"))
38 {
39         wxGridBagSizer* grid = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
40         _sizer->Add (grid, 0, wxALL, 8);
41
42         int r = 0;
43
44         add_label_to_grid_bag_sizer (grid, this, _("Type"), true, wxGBPosition (r, 0));
45         _frame_type = new wxChoice (this, wxID_ANY);
46         grid->Add (_frame_type, wxGBPosition (r, 1));
47         ++r;
48         
49         add_label_to_grid_bag_sizer (grid, this, _("Left crop"), true, wxGBPosition (r, 0));
50         _left_crop = new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1));
51         grid->Add (_left_crop, wxGBPosition (r, 1));
52         ++r;
53
54         add_label_to_grid_bag_sizer (grid, this, _("Right crop"), true, wxGBPosition (r, 0));
55         _right_crop = new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1));
56         grid->Add (_right_crop, wxGBPosition (r, 1));
57         ++r;
58         
59         add_label_to_grid_bag_sizer (grid, this, _("Top crop"), true, wxGBPosition (r, 0));
60         _top_crop = new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1));
61         grid->Add (_top_crop, wxGBPosition (r, 1));
62         ++r;
63         
64         add_label_to_grid_bag_sizer (grid, this, _("Bottom crop"), true, wxGBPosition (r, 0));
65         _bottom_crop = new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1));
66         grid->Add (_bottom_crop, wxGBPosition (r, 1));
67         ++r;
68
69         add_label_to_grid_bag_sizer (grid, this, _("Scale to"), true, wxGBPosition (r, 0));
70         _ratio = new wxChoice (this, wxID_ANY);
71         grid->Add (_ratio, wxGBPosition (r, 1));
72         ++r;
73
74         _scaling_description = new wxStaticText (this, wxID_ANY, wxT ("\n \n \n \n"), wxDefaultPosition, wxDefaultSize);
75         grid->Add (_scaling_description, wxGBPosition (r, 0), wxGBSpan (1, 2), wxEXPAND | wxALIGN_CENTER_VERTICAL | wxALL, 6);
76         wxFont font = _scaling_description->GetFont();
77         font.SetStyle(wxFONTSTYLE_ITALIC);
78         font.SetPointSize(font.GetPointSize() - 1);
79         _scaling_description->SetFont(font);
80         ++r;
81
82         {
83                 add_label_to_grid_bag_sizer (grid, this, _("Filters"), true, wxGBPosition (r, 0));
84                 wxSizer* s = new wxBoxSizer (wxHORIZONTAL);
85                 _filters = new wxStaticText (this, wxID_ANY, _("None"));
86                 s->Add (_filters, 1, wxEXPAND | wxALIGN_CENTER_VERTICAL | wxTOP | wxBOTTOM | wxRIGHT, 6);
87                 _filters_button = new wxButton (this, wxID_ANY, _("Edit..."));
88                 s->Add (_filters_button, 0, wxALIGN_CENTER_VERTICAL);
89                 grid->Add (s, wxGBPosition (r, 1), wxDefaultSpan, wxALIGN_CENTER_VERTICAL);
90         }
91         ++r;
92
93         _left_crop->SetRange (0, 1024);
94         _top_crop->SetRange (0, 1024);
95         _right_crop->SetRange (0, 1024);
96         _bottom_crop->SetRange (0, 1024);
97
98         vector<Ratio const *> ratios = Ratio::all ();
99         _ratio->Clear ();
100         for (vector<Ratio const *>::iterator i = ratios.begin(); i != ratios.end(); ++i) {
101                 _ratio->Append (std_to_wx ((*i)->nickname ()));
102         }
103
104         _frame_type->Append (_("2D"));
105         _frame_type->Append (_("3D left/right"));
106
107         _frame_type->Bind     (wxEVT_COMMAND_CHOICE_SELECTED,  boost::bind (&VideoPanel::frame_type_changed, this));
108         _left_crop->Bind      (wxEVT_COMMAND_SPINCTRL_UPDATED, boost::bind (&VideoPanel::left_crop_changed, this));
109         _right_crop->Bind     (wxEVT_COMMAND_SPINCTRL_UPDATED, boost::bind (&VideoPanel::right_crop_changed, this));
110         _top_crop->Bind       (wxEVT_COMMAND_SPINCTRL_UPDATED, boost::bind (&VideoPanel::top_crop_changed, this));
111         _bottom_crop->Bind    (wxEVT_COMMAND_SPINCTRL_UPDATED, boost::bind (&VideoPanel::bottom_crop_changed, this));
112         _ratio->Bind          (wxEVT_COMMAND_CHOICE_SELECTED,  boost::bind (&VideoPanel::ratio_changed, this));
113         _filters_button->Bind (wxEVT_COMMAND_BUTTON_CLICKED,   boost::bind (&VideoPanel::edit_filters_clicked, this));
114 }
115
116
117 /** Called when the left crop widget has been changed */
118 void
119 VideoPanel::left_crop_changed ()
120 {
121         shared_ptr<VideoContent> c = _editor->selected_video_content ();
122         if (!c) {
123                 return;
124         }
125
126         c->set_left_crop (_left_crop->GetValue ());
127 }
128
129 /** Called when the right crop widget has been changed */
130 void
131 VideoPanel::right_crop_changed ()
132 {
133         shared_ptr<VideoContent> c = _editor->selected_video_content ();
134         if (!c) {
135                 return;
136         }
137
138         c->set_right_crop (_right_crop->GetValue ());
139 }
140
141 /** Called when the top crop widget has been changed */
142 void
143 VideoPanel::top_crop_changed ()
144 {
145         shared_ptr<VideoContent> c = _editor->selected_video_content ();
146         if (!c) {
147                 return;
148         }
149
150         c->set_top_crop (_top_crop->GetValue ());
151 }
152
153 /** Called when the bottom crop value has been changed */
154 void
155 VideoPanel::bottom_crop_changed ()
156 {
157         shared_ptr<VideoContent> c = _editor->selected_video_content ();
158         if (!c) {
159                 return;
160         }
161
162         c->set_bottom_crop (_bottom_crop->GetValue ());
163 }
164
165 void
166 VideoPanel::film_changed (Film::Property property)
167 {
168         switch (property) {
169         case Film::CONTAINER:
170                 setup_scaling_description ();
171                 break;
172         default:
173                 break;
174         }
175 }
176
177 void
178 VideoPanel::film_content_changed (shared_ptr<Content> c, int property)
179 {
180         shared_ptr<VideoContent> vc = dynamic_pointer_cast<VideoContent> (c);
181         shared_ptr<FFmpegContent> fc = dynamic_pointer_cast<FFmpegContent> (c);
182
183         if (property == VideoContentProperty::VIDEO_FRAME_TYPE) {
184                 checked_set (_frame_type, vc ? vc->video_frame_type () : VIDEO_FRAME_TYPE_2D);
185         } else if (property == VideoContentProperty::VIDEO_CROP) {
186                 checked_set (_left_crop,   vc ? vc->crop().left : 0);
187                 checked_set (_right_crop,  vc ? vc->crop().right        : 0);
188                 checked_set (_top_crop,    vc ? vc->crop().top  : 0);
189                 checked_set (_bottom_crop, vc ? vc->crop().bottom : 0);
190                 setup_scaling_description ();
191         } else if (property == VideoContentProperty::VIDEO_RATIO) {
192                 if (vc) {
193                         int n = 0;
194                         vector<Ratio const *> ratios = Ratio::all ();
195                         vector<Ratio const *>::iterator i = ratios.begin ();
196                         while (i != ratios.end() && *i != vc->ratio()) {
197                                 ++i;
198                                 ++n;
199                         }
200
201                         if (i == ratios.end()) {
202                                 checked_set (_ratio, -1);
203                         } else {
204                                 checked_set (_ratio, n);
205                         }
206                 } else {
207                         checked_set (_ratio, -1);
208                 }
209                 setup_scaling_description ();
210         } else if (property == FFmpegContentProperty::FILTERS) {
211                 if (fc) {
212                         pair<string, string> p = Filter::ffmpeg_strings (fc->filters ());
213                         if (p.first.empty () && p.second.empty ()) {
214                                 _filters->SetLabel (_("None"));
215                         } else {
216                                 string const b = p.first + " " + p.second;
217                                 _filters->SetLabel (std_to_wx (b));
218                         }
219                 }
220         }
221 }
222
223 /** Called when the `Edit filters' button has been clicked */
224 void
225 VideoPanel::edit_filters_clicked ()
226 {
227         shared_ptr<Content> c = _editor->selected_content ();
228         if (!c) {
229                 return;
230         }
231
232         shared_ptr<FFmpegContent> fc = dynamic_pointer_cast<FFmpegContent> (c);
233         if (!fc) {
234                 return;
235         }
236         
237         FilterDialog* d = new FilterDialog (this, fc->filters());
238         d->ActiveChanged.connect (bind (&FFmpegContent::set_filters, fc, _1));
239         d->ShowModal ();
240         d->Destroy ();
241 }
242
243 void
244 VideoPanel::setup_scaling_description ()
245 {
246         shared_ptr<VideoContent> vc = _editor->selected_video_content ();
247         if (!vc) {
248                 _scaling_description->SetLabel ("");
249                 return;
250         }
251
252         wxString d;
253
254         int lines = 0;
255
256         if (vc->video_size().width && vc->video_size().height) {
257                 d << wxString::Format (
258                         _("Original video is %dx%d (%.2f:1)\n"),
259                         vc->video_size().width, vc->video_size().height,
260                         float (vc->video_size().width) / vc->video_size().height
261                         );
262                 ++lines;
263         }
264
265         Crop const crop = vc->crop ();
266         if ((crop.left || crop.right || crop.top || crop.bottom) && vc->video_size() != libdcp::Size (0, 0)) {
267                 libdcp::Size cropped = vc->video_size ();
268                 cropped.width -= crop.left + crop.right;
269                 cropped.height -= crop.top + crop.bottom;
270                 d << wxString::Format (
271                         _("Cropped to %dx%d (%.2f:1)\n"),
272                         cropped.width, cropped.height,
273                         float (cropped.width) / cropped.height
274                         );
275                 ++lines;
276         }
277
278         Ratio const * ratio = vc->ratio ();
279         if (ratio) {
280                 libdcp::Size container_size = _editor->film()->container()->size (_editor->film()->full_frame ());
281                 
282                 libdcp::Size const scaled = ratio->size (container_size);
283                 d << wxString::Format (
284                         _("Scaled to %dx%d (%.2f:1)\n"),
285                         scaled.width, scaled.height,
286                         float (scaled.width) / scaled.height
287                         );
288                 ++lines;
289
290                 if (scaled != container_size) {
291                         d << wxString::Format (
292                                 _("Padded with black to %dx%d (%.2f:1)\n"),
293                                 container_size.width, container_size.height,
294                                 float (container_size.width) / container_size.height
295                                 );
296                         ++lines;
297                 }
298         }
299
300         for (int i = lines; i < 4; ++i) {
301                 d << wxT ("\n ");
302         }
303
304         _scaling_description->SetLabel (d);
305         _sizer->Layout ();
306 }
307
308
309 void
310 VideoPanel::ratio_changed ()
311 {
312         if (!_editor->film ()) {
313                 return;
314         }
315
316         shared_ptr<VideoContent> vc = _editor->selected_video_content ();
317         
318         int const n = _ratio->GetSelection ();
319         if (n >= 0) {
320                 vector<Ratio const *> ratios = Ratio::all ();
321                 assert (n < int (ratios.size()));
322                 vc->set_ratio (ratios[n]);
323         }
324 }
325
326 void
327 VideoPanel::frame_type_changed ()
328 {
329         shared_ptr<VideoContent> vc = _editor->selected_video_content ();
330         if (vc) {
331                 vc->set_video_frame_type (static_cast<VideoFrameType> (_frame_type->GetSelection ()));
332         }
333 }