Hand-apply d7329603f8698f5302d11acfc233ca67695e654d from master; timecode labelling.
[dcpomatic.git] / src / wx / timing_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 "lib/content.h"
21 #include "lib/image_content.h"
22 #include "timing_panel.h"
23 #include "wx_util.h"
24 #include "timecode.h"
25 #include "content_panel.h"
26 #include <dcp/raw_convert.h>
27 #include <set>
28
29 using std::cout;
30 using std::string;
31 using std::set;
32 using boost::shared_ptr;
33 using boost::dynamic_pointer_cast;
34 using dcp::raw_convert;
35
36 TimingPanel::TimingPanel (ContentPanel* p)
37         /* horrid hack for apparent lack of context support with wxWidgets i18n code */
38         : ContentSubPanel (p, S_("Timing|Timing"))
39 {
40         wxFlexGridSizer* grid = new wxFlexGridSizer (2, 4, 4);
41         _sizer->Add (grid, 0, wxALL, 8);
42
43         wxSize size = TimecodeBase::size (this);
44                 
45         wxSizer* labels = new wxBoxSizer (wxHORIZONTAL);
46         //// TRANSLATORS: this is an abbreviation for "hours"
47         wxStaticText* t = new wxStaticText (this, wxID_ANY, _("h"), wxDefaultPosition, size, wxALIGN_CENTRE_HORIZONTAL);
48 #ifdef DCPOMATIC_LINUX
49         /* Hack to work around failure to centre text on GTK */
50         gtk_label_set_line_wrap (GTK_LABEL (t->GetHandle()), FALSE);
51 #endif          
52         labels->Add (t, 1, wxEXPAND);
53         add_label_to_sizer (labels, this, wxT (":"), false);
54         //// TRANSLATORS: this is an abbreviation for "minutes"
55         t = new wxStaticText (this, wxID_ANY, _("m"), wxDefaultPosition, size, wxALIGN_CENTRE_HORIZONTAL);
56 #ifdef DCPOMATIC_LINUX
57         gtk_label_set_line_wrap (GTK_LABEL (t->GetHandle()), FALSE);
58 #endif          
59         labels->Add (t, 1, wxEXPAND);
60         add_label_to_sizer (labels, this, wxT (":"), false);
61         //// TRANSLATORS: this is an abbreviation for "seconds"
62         t = new wxStaticText (this, wxID_ANY, _("s"), wxDefaultPosition, size, wxALIGN_CENTRE_HORIZONTAL);
63 #ifdef DCPOMATIC_LINUX
64         gtk_label_set_line_wrap (GTK_LABEL (t->GetHandle()), FALSE);
65 #endif          
66         labels->Add (t, 1, wxEXPAND);
67         add_label_to_sizer (labels, this, wxT (":"), false);
68         //// TRANSLATORS: this is an abbreviation for "frames"
69         t = new wxStaticText (this, wxID_ANY, _("f"), wxDefaultPosition, size, wxALIGN_CENTRE_HORIZONTAL);
70 #ifdef DCPOMATIC_LINUX
71         gtk_label_set_line_wrap (GTK_LABEL (t->GetHandle()), FALSE);
72 #endif          
73         labels->Add (t, 1, wxEXPAND);
74         grid->Add (new wxStaticText (this, wxID_ANY, wxT ("")));
75         grid->Add (labels);
76
77         add_label_to_sizer (grid, this, _("Position"), true);
78         _position = new Timecode<DCPTime> (this);
79         grid->Add (_position);
80         add_label_to_sizer (grid, this, _("Full length"), true);
81         _full_length = new Timecode<DCPTime> (this);
82         grid->Add (_full_length);
83         add_label_to_sizer (grid, this, _("Trim from start"), true);
84         _trim_start = new Timecode<DCPTime> (this);
85         grid->Add (_trim_start);
86         add_label_to_sizer (grid, this, _("Trim from end"), true);
87         _trim_end = new Timecode<DCPTime> (this);
88         grid->Add (_trim_end);
89         add_label_to_sizer (grid, this, _("Play length"), true);
90         _play_length = new Timecode<DCPTime> (this);
91         grid->Add (_play_length);
92
93         {
94                 add_label_to_sizer (grid, this, _("Video frame rate"), true);
95                 wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
96                 _video_frame_rate = new wxTextCtrl (this, wxID_ANY);
97                 s->Add (_video_frame_rate, 1, wxEXPAND);
98                 _set_video_frame_rate = new wxButton (this, wxID_ANY, _("Set"));
99                 _set_video_frame_rate->Enable (false);
100                 s->Add (_set_video_frame_rate, 0, wxLEFT | wxRIGHT, 8);
101                 grid->Add (s, 1, wxEXPAND);
102         }
103
104         _position->Changed.connect    (boost::bind (&TimingPanel::position_changed, this));
105         _full_length->Changed.connect (boost::bind (&TimingPanel::full_length_changed, this));
106         _trim_start->Changed.connect  (boost::bind (&TimingPanel::trim_start_changed, this));
107         _trim_end->Changed.connect    (boost::bind (&TimingPanel::trim_end_changed, this));
108         _play_length->Changed.connect (boost::bind (&TimingPanel::play_length_changed, this));
109         _video_frame_rate->Bind       (wxEVT_COMMAND_TEXT_UPDATED, boost::bind (&TimingPanel::video_frame_rate_changed, this));
110         _set_video_frame_rate->Bind   (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&TimingPanel::set_video_frame_rate, this));
111 }
112
113 void
114 TimingPanel::film_content_changed (int property)
115 {
116         ContentList cl = _parent->selected ();
117         int const film_video_frame_rate = _parent->film()->video_frame_rate ();
118
119         /* Here we check to see if we have exactly one different value of various
120            properties, and fill the controls with that value if so.
121         */
122         
123         if (property == ContentProperty::POSITION) {
124
125                 set<DCPTime> check;
126                 for (ContentList::const_iterator i = cl.begin (); i != cl.end(); ++i) {
127                         check.insert ((*i)->position ());
128                 }
129
130                 if (check.size() == 1) {
131                         _position->set (cl.front()->position(), film_video_frame_rate);
132                 } else {
133                         _position->clear ();
134                 }
135                 
136         } else if (
137                 property == ContentProperty::LENGTH ||
138                 property == VideoContentProperty::VIDEO_FRAME_RATE ||
139                 property == VideoContentProperty::VIDEO_FRAME_TYPE
140                 ) {
141
142                 set<DCPTime> check;
143                 for (ContentList::const_iterator i = cl.begin (); i != cl.end(); ++i) {
144                         check.insert ((*i)->full_length ());
145                 }
146                 
147                 if (check.size() == 1) {
148                         _full_length->set (cl.front()->full_length (), film_video_frame_rate);
149                 } else {
150                         _full_length->clear ();
151                 }
152
153         } else if (property == ContentProperty::TRIM_START) {
154
155                 set<DCPTime> check;
156                 for (ContentList::const_iterator i = cl.begin (); i != cl.end(); ++i) {
157                         check.insert ((*i)->trim_start ());
158                 }
159                 
160                 if (check.size() == 1) {
161                         _trim_start->set (cl.front()->trim_start (), film_video_frame_rate);
162                 } else {
163                         _trim_start->clear ();
164                 }
165                 
166         } else if (property == ContentProperty::TRIM_END) {
167
168                 set<DCPTime> check;
169                 for (ContentList::const_iterator i = cl.begin (); i != cl.end(); ++i) {
170                         check.insert ((*i)->trim_end ());
171                 }
172                 
173                 if (check.size() == 1) {
174                         _trim_end->set (cl.front()->trim_end (), film_video_frame_rate);
175                 } else {
176                         _trim_end->clear ();
177                 }
178         }
179
180         if (
181                 property == ContentProperty::LENGTH ||
182                 property == ContentProperty::TRIM_START ||
183                 property == ContentProperty::TRIM_END ||
184                 property == VideoContentProperty::VIDEO_FRAME_RATE ||
185                 property == VideoContentProperty::VIDEO_FRAME_TYPE
186                 ) {
187
188                 set<DCPTime> check;
189                 for (ContentList::const_iterator i = cl.begin (); i != cl.end(); ++i) {
190                         check.insert ((*i)->length_after_trim ());
191                 }
192                 
193                 if (check.size() == 1) {
194                         _play_length->set (cl.front()->length_after_trim (), film_video_frame_rate);
195                 } else {
196                         _play_length->clear ();
197                 }
198         }
199
200         if (property == VideoContentProperty::VIDEO_FRAME_RATE) {
201                 set<float> check;
202                 shared_ptr<VideoContent> vc;
203                 for (ContentList::const_iterator i = cl.begin (); i != cl.end(); ++i) {
204                         shared_ptr<VideoContent> t = dynamic_pointer_cast<VideoContent> (*i);
205                         if (t) {
206                                 check.insert (t->video_frame_rate ());
207                                 vc = t;
208                         }
209                 }
210                 if (check.size() == 1) {
211                         _video_frame_rate->SetValue (std_to_wx (raw_convert<string> (vc->video_frame_rate (), 5)));
212                         _video_frame_rate->Enable (true);
213                 } else {
214                         _video_frame_rate->SetValue ("");
215                         _video_frame_rate->Enable (false);
216                 }
217         }
218
219         bool have_still = false;
220         for (ContentList::const_iterator i = cl.begin (); i != cl.end(); ++i) {
221                 shared_ptr<ImageContent> ic = dynamic_pointer_cast<ImageContent> (*i);
222                 if (ic && ic->still ()) {
223                         have_still = true;
224                 }
225         }
226
227         _full_length->set_editable (have_still);
228         _play_length->set_editable (!have_still);
229         _set_video_frame_rate->Enable (false);
230 }
231
232 void
233 TimingPanel::position_changed ()
234 {
235         ContentList c = _parent->selected ();
236         for (ContentList::iterator i = c.begin(); i != c.end(); ++i) {
237                 (*i)->set_position (_position->get (_parent->film()->video_frame_rate ()));
238         }
239 }
240
241 void
242 TimingPanel::full_length_changed ()
243 {
244         ContentList c = _parent->selected ();
245         for (ContentList::iterator i = c.begin(); i != c.end(); ++i) {
246                 shared_ptr<ImageContent> ic = dynamic_pointer_cast<ImageContent> (*i);
247                 if (ic && ic->still ()) {
248                         /* XXX: No effective FRC here... is this right? */
249                         ic->set_video_length (ContentTime (_full_length->get (_parent->film()->video_frame_rate()), FrameRateChange (1, 1)));
250                 }
251         }
252 }
253
254 void
255 TimingPanel::trim_start_changed ()
256 {
257         ContentList c = _parent->selected ();
258         for (ContentList::iterator i = c.begin(); i != c.end(); ++i) {
259                 (*i)->set_trim_start (_trim_start->get (_parent->film()->video_frame_rate ()));
260         }
261 }
262
263
264 void
265 TimingPanel::trim_end_changed ()
266 {
267         ContentList c = _parent->selected ();
268         for (ContentList::iterator i = c.begin(); i != c.end(); ++i) {
269                 (*i)->set_trim_end (_trim_end->get (_parent->film()->video_frame_rate ()));
270         }
271 }
272
273 void
274 TimingPanel::play_length_changed ()
275 {
276         ContentList c = _parent->selected ();
277         for (ContentList::iterator i = c.begin(); i != c.end(); ++i) {
278                 (*i)->set_trim_end ((*i)->full_length() - _play_length->get (_parent->film()->video_frame_rate()) - (*i)->trim_start());
279         }
280 }
281
282 void
283 TimingPanel::video_frame_rate_changed ()
284 {
285         _set_video_frame_rate->Enable (true);
286 }
287
288 void
289 TimingPanel::set_video_frame_rate ()
290 {
291         ContentList c = _parent->selected ();
292         for (ContentList::iterator i = c.begin(); i != c.end(); ++i) {
293                 shared_ptr<VideoContent> vc = dynamic_pointer_cast<VideoContent> (*i);
294                 if (vc) {
295                         vc->set_video_frame_rate (raw_convert<float> (wx_to_std (_video_frame_rate->GetValue ())));
296                 }
297                 _set_video_frame_rate->Enable (false);
298         }
299 }
300
301 void
302 TimingPanel::content_selection_changed ()
303 {
304         bool const e = !_parent->selected().empty ();
305
306         _position->Enable (e);
307         _full_length->Enable (e);
308         _trim_start->Enable (e);
309         _trim_end->Enable (e);
310         _play_length->Enable (e);
311         _video_frame_rate->Enable (e);
312         
313         film_content_changed (ContentProperty::POSITION);
314         film_content_changed (ContentProperty::LENGTH);
315         film_content_changed (ContentProperty::TRIM_START);
316         film_content_changed (ContentProperty::TRIM_END);
317         film_content_changed (VideoContentProperty::VIDEO_FRAME_RATE);
318 }