Mostly-merge master.
[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 "film_editor.h"
26
27 using std::cout;
28 using std::string;
29 using boost::shared_ptr;
30 using boost::dynamic_pointer_cast;
31 using boost::lexical_cast;
32
33 TimingPanel::TimingPanel (FilmEditor* e)
34         : FilmEditorPanel (e, _("Timing"))
35 {
36         wxFlexGridSizer* grid = new wxFlexGridSizer (2, 4, 4);
37         _sizer->Add (grid, 0, wxALL, 8);
38
39         add_label_to_sizer (grid, this, _("Position"), true);
40         _position = new Timecode (this);
41         grid->Add (_position);
42         add_label_to_sizer (grid, this, _("Full length"), true);
43         _full_length = new Timecode (this);
44         grid->Add (_full_length);
45         add_label_to_sizer (grid, this, _("Trim from start"), true);
46         _trim_start = new Timecode (this);
47         grid->Add (_trim_start);
48         add_label_to_sizer (grid, this, _("Trim from end"), true);
49         _trim_end = new Timecode (this);
50         grid->Add (_trim_end);
51         add_label_to_sizer (grid, this, _("Play length"), true);
52         _play_length = new Timecode (this);
53         grid->Add (_play_length);
54
55         {
56                 add_label_to_sizer (grid, this, _("Video frame rate"), true);
57                 wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
58                 _video_frame_rate = new wxTextCtrl (this, wxID_ANY);
59                 s->Add (_video_frame_rate, 1, wxEXPAND);
60                 _set_video_frame_rate = new wxButton (this, wxID_ANY, _("Set"));
61                 _set_video_frame_rate->Enable (false);
62                 s->Add (_set_video_frame_rate, 0, wxLEFT | wxRIGHT, 8);
63                 grid->Add (s, 1, wxEXPAND);
64         }
65
66         _position->Changed.connect    (boost::bind (&TimingPanel::position_changed, this));
67         _full_length->Changed.connect (boost::bind (&TimingPanel::full_length_changed, this));
68         _trim_start->Changed.connect  (boost::bind (&TimingPanel::trim_start_changed, this));
69         _trim_end->Changed.connect    (boost::bind (&TimingPanel::trim_end_changed, this));
70         _play_length->Changed.connect (boost::bind (&TimingPanel::play_length_changed, this));
71         _video_frame_rate->Bind       (wxEVT_COMMAND_TEXT_UPDATED, boost::bind (&TimingPanel::video_frame_rate_changed, this));
72         _set_video_frame_rate->Bind   (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&TimingPanel::set_video_frame_rate, this));
73 }
74
75 void
76 TimingPanel::film_content_changed (int property)
77 {
78         ContentList cl = _editor->selected_content ();
79         shared_ptr<Content> content;
80         if (cl.size() == 1) {
81                 content = cl.front ();
82         }
83         
84         if (property == ContentProperty::POSITION) {
85                 if (content) {
86                         _position->set (content->position (), _editor->film()->video_frame_rate ());
87                 } else {
88                         _position->set (DCPTime () , 24);
89                 }
90         } else if (
91                 property == ContentProperty::LENGTH ||
92                 property == VideoContentProperty::VIDEO_FRAME_RATE ||
93                 property == VideoContentProperty::VIDEO_FRAME_TYPE
94                 ) {
95                 if (content) {
96                         _full_length->set (content->full_length (), _editor->film()->video_frame_rate ());
97                         _play_length->set (content->length_after_trim (), _editor->film()->video_frame_rate ());
98                 } else {
99                         _full_length->set (DCPTime (), 24);
100                         _play_length->set (DCPTime (), 24);
101                 }
102         } else if (property == ContentProperty::TRIM_START) {
103                 if (content) {
104                         _trim_start->set (content->trim_start (), _editor->film()->video_frame_rate ());
105                         _play_length->set (content->length_after_trim (), _editor->film()->video_frame_rate ());
106                 } else {
107                         _trim_start->set (DCPTime (), 24);
108                         _play_length->set (DCPTime (), 24);
109                 }
110         } else if (property == ContentProperty::TRIM_END) {
111                 if (content) {
112                         _trim_end->set (content->trim_end (), _editor->film()->video_frame_rate ());
113                         _play_length->set (content->length_after_trim (), _editor->film()->video_frame_rate ());
114                 } else {
115                         _trim_end->set (DCPTime (), 24);
116                         _play_length->set (DCPTime (), 24);
117                 }
118         }
119
120         if (property == VideoContentProperty::VIDEO_FRAME_RATE) {
121                 if (content) {
122                         shared_ptr<VideoContent> vc = dynamic_pointer_cast<VideoContent> (content);
123                         if (vc) {
124                                 _video_frame_rate->SetValue (std_to_wx (lexical_cast<string> (vc->video_frame_rate ())));
125                         } else {
126                                 _video_frame_rate->SetValue ("24");
127                         }
128                 } else {
129                         _video_frame_rate->SetValue ("24");
130                 }
131         }
132
133         shared_ptr<ImageContent> ic = dynamic_pointer_cast<ImageContent> (content);
134         _full_length->set_editable (ic && ic->still ());
135         _play_length->set_editable (!ic || !ic->still ());
136         _video_frame_rate->Enable (ic && !ic->still ());
137         _set_video_frame_rate->Enable (false);
138 }
139
140 void
141 TimingPanel::position_changed ()
142 {
143         ContentList c = _editor->selected_content ();
144         if (c.size() == 1) {
145                 c.front()->set_position (_position->get (_editor->film()->video_frame_rate ()));
146         }
147 }
148
149 void
150 TimingPanel::full_length_changed ()
151 {
152         ContentList c = _editor->selected_content ();
153         if (c.size() == 1) {
154                 shared_ptr<ImageContent> ic = dynamic_pointer_cast<ImageContent> (c.front ());
155                 if (ic && ic->still ()) {
156                         /* XXX: No effective FRC here... is this right? */
157                         ic->set_video_length (ContentTime (_full_length->get (_editor->film()->video_frame_rate()), FrameRateChange (1, 1)));
158                 }
159         }
160 }
161
162 void
163 TimingPanel::trim_start_changed ()
164 {
165         ContentList c = _editor->selected_content ();
166         if (c.size() == 1) {
167                 c.front()->set_trim_start (_trim_start->get (_editor->film()->video_frame_rate ()));
168         }
169 }
170
171
172 void
173 TimingPanel::trim_end_changed ()
174 {
175         ContentList c = _editor->selected_content ();
176         if (c.size() == 1) {
177                 c.front()->set_trim_end (_trim_end->get (_editor->film()->video_frame_rate ()));
178         }
179 }
180
181 void
182 TimingPanel::play_length_changed ()
183 {
184         ContentList c = _editor->selected_content ();
185         if (c.size() == 1) {
186                 c.front()->set_trim_end (c.front()->full_length() - _play_length->get (_editor->film()->video_frame_rate()) - c.front()->trim_start());
187         }
188 }
189
190 void
191 TimingPanel::video_frame_rate_changed ()
192 {
193         _set_video_frame_rate->Enable (true);
194 }
195
196 void
197 TimingPanel::set_video_frame_rate ()
198 {
199         ContentList c = _editor->selected_content ();
200         if (c.size() == 1) {
201                 shared_ptr<ImageContent> ic = dynamic_pointer_cast<ImageContent> (c.front ());
202                 if (ic) {
203                         ic->set_video_frame_rate (lexical_cast<float> (wx_to_std (_video_frame_rate->GetValue ())));
204                         _set_video_frame_rate->Enable (false);
205                 }
206         }
207 }
208
209 void
210 TimingPanel::content_selection_changed ()
211 {
212         ContentList sel = _editor->selected_content ();
213         bool const single = sel.size() == 1;
214
215         /* Things that are only allowed with single selections */
216         _position->Enable (single);
217         _full_length->Enable (single);
218         _trim_start->Enable (single);
219         _trim_end->Enable (single);
220         _play_length->Enable (single);
221         _video_frame_rate->Enable (single);
222         
223         film_content_changed (ContentProperty::POSITION);
224         film_content_changed (ContentProperty::LENGTH);
225         film_content_changed (ContentProperty::TRIM_START);
226         film_content_changed (ContentProperty::TRIM_END);
227         film_content_changed (VideoContentProperty::VIDEO_FRAME_RATE);
228 }