Merge master; fix destruction of Server; some test cleanups.
[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         int const film_video_frame_rate = _editor->film()->video_frame_rate ();
85         
86         if (property == ContentProperty::POSITION) {
87                 if (content) {
88                         _position->set (content->position (), film_video_frame_rate);
89                 } else {
90                         _position->set (DCPTime () , 24);
91                 }
92         } else if (
93                 property == ContentProperty::LENGTH ||
94                 property == VideoContentProperty::VIDEO_FRAME_RATE ||
95                 property == VideoContentProperty::VIDEO_FRAME_TYPE
96                 ) {
97                 if (content) {
98                         _full_length->set (content->full_length (), film_video_frame_rate);
99                         _play_length->set (content->length_after_trim (), film_video_frame_rate);
100                 } else {
101                         _full_length->set (DCPTime (), 24);
102                         _play_length->set (DCPTime (), 24);
103                 }
104         } else if (property == ContentProperty::TRIM_START) {
105                 if (content) {
106                         _trim_start->set (content->trim_start (), film_video_frame_rate);
107                         _play_length->set (content->length_after_trim (), film_video_frame_rate);
108                 } else {
109                         _trim_start->set (DCPTime (), 24);
110                         _play_length->set (DCPTime (), 24);
111                 }
112         } else if (property == ContentProperty::TRIM_END) {
113                 if (content) {
114                         _trim_end->set (content->trim_end (), film_video_frame_rate);
115                         _play_length->set (content->length_after_trim (), film_video_frame_rate);
116                 } else {
117                         _trim_end->set (DCPTime (), 24);
118                         _play_length->set (DCPTime (), 24);
119                 }
120         }
121
122         if (property == VideoContentProperty::VIDEO_FRAME_RATE) {
123                 if (content) {
124                         shared_ptr<VideoContent> vc = dynamic_pointer_cast<VideoContent> (content);
125                         if (vc) {
126                                 _video_frame_rate->SetValue (std_to_wx (lexical_cast<string> (vc->video_frame_rate ())));
127                         } else {
128                                 _video_frame_rate->SetValue ("24");
129                         }
130                 } else {
131                         _video_frame_rate->SetValue ("24");
132                 }
133         }
134
135         shared_ptr<ImageContent> ic = dynamic_pointer_cast<ImageContent> (content);
136         _full_length->set_editable (ic && ic->still ());
137         _play_length->set_editable (!ic || !ic->still ());
138         _video_frame_rate->Enable (ic && !ic->still ());
139         _set_video_frame_rate->Enable (false);
140 }
141
142 void
143 TimingPanel::position_changed ()
144 {
145         ContentList c = _editor->selected_content ();
146         if (c.size() == 1) {
147                 c.front()->set_position (_position->get (_editor->film()->video_frame_rate ()));
148         }
149 }
150
151 void
152 TimingPanel::full_length_changed ()
153 {
154         ContentList c = _editor->selected_content ();
155         if (c.size() == 1) {
156                 shared_ptr<ImageContent> ic = dynamic_pointer_cast<ImageContent> (c.front ());
157                 if (ic && ic->still ()) {
158                         /* XXX: No effective FRC here... is this right? */
159                         ic->set_video_length (ContentTime (_full_length->get (_editor->film()->video_frame_rate()), FrameRateChange (1, 1)));
160                 }
161         }
162 }
163
164 void
165 TimingPanel::trim_start_changed ()
166 {
167         ContentList c = _editor->selected_content ();
168         if (c.size() == 1) {
169                 c.front()->set_trim_start (_trim_start->get (_editor->film()->video_frame_rate ()));
170         }
171 }
172
173
174 void
175 TimingPanel::trim_end_changed ()
176 {
177         ContentList c = _editor->selected_content ();
178         if (c.size() == 1) {
179                 c.front()->set_trim_end (_trim_end->get (_editor->film()->video_frame_rate ()));
180         }
181 }
182
183 void
184 TimingPanel::play_length_changed ()
185 {
186         ContentList c = _editor->selected_content ();
187         if (c.size() == 1) {
188                 c.front()->set_trim_end (c.front()->full_length() - _play_length->get (_editor->film()->video_frame_rate()) - c.front()->trim_start());
189         }
190 }
191
192 void
193 TimingPanel::video_frame_rate_changed ()
194 {
195         _set_video_frame_rate->Enable (true);
196 }
197
198 void
199 TimingPanel::set_video_frame_rate ()
200 {
201         ContentList c = _editor->selected_content ();
202         if (c.size() == 1) {
203                 shared_ptr<ImageContent> ic = dynamic_pointer_cast<ImageContent> (c.front ());
204                 if (ic) {
205                         ic->set_video_frame_rate (lexical_cast<float> (wx_to_std (_video_frame_rate->GetValue ())));
206                 }
207                 _set_video_frame_rate->Enable (false);
208         }
209 }
210
211 void
212 TimingPanel::content_selection_changed ()
213 {
214         ContentList sel = _editor->selected_content ();
215         bool const single = sel.size() == 1;
216
217         /* Things that are only allowed with single selections */
218         _position->Enable (single);
219         _full_length->Enable (single);
220         _trim_start->Enable (single);
221         _trim_end->Enable (single);
222         _play_length->Enable (single);
223         _video_frame_rate->Enable (single);
224         
225         film_content_changed (ContentProperty::POSITION);
226         film_content_changed (ContentProperty::LENGTH);
227         film_content_changed (ContentProperty::TRIM_START);
228         film_content_changed (ContentProperty::TRIM_END);
229         film_content_changed (VideoContentProperty::VIDEO_FRAME_RATE);
230 }