summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-12-03 15:32:41 +0000
committerCarl Hetherington <cth@carlh.net>2013-12-03 15:32:41 +0000
commit70ee6cc5cef66a4aed252dbfa2390cc9f0c8c286 (patch)
treeaca652adfe70c9bd10e3d647b10e12998fbd4148
parentbc4ce63541a6617725be91405e279c1292e66721 (diff)
Add play-length control to timing panel (#261).
-rw-r--r--ChangeLog5
-rw-r--r--src/wx/timing_panel.cc49
-rw-r--r--src/wx/timing_panel.h6
3 files changed, 44 insertions, 16 deletions
diff --git a/ChangeLog b/ChangeLog
index 793d0c8f1..c02b6f2f7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-12-03 Carl Hetherington <cth@carlh.net>
+
+ * Add "play length" control to avoid having to do arithmetic to
+ get end-trims right in some cases (#261).
+
2013-12-02 Carl Hetherington <cth@carlh.net>
* Fix breakage to adding multiple files at the same time.
diff --git a/src/wx/timing_panel.cc b/src/wx/timing_panel.cc
index 0f9448b67..79099b168 100644
--- a/src/wx/timing_panel.cc
+++ b/src/wx/timing_panel.cc
@@ -37,20 +37,24 @@ TimingPanel::TimingPanel (FilmEditor* e)
add_label_to_sizer (grid, this, _("Position"), true);
_position = new Timecode (this);
grid->Add (_position);
- add_label_to_sizer (grid, this, _("Length"), true);
- _length = new Timecode (this);
- grid->Add (_length);
+ add_label_to_sizer (grid, this, _("Full length"), true);
+ _full_length = new Timecode (this);
+ grid->Add (_full_length);
add_label_to_sizer (grid, this, _("Trim from start"), true);
_trim_start = new Timecode (this);
grid->Add (_trim_start);
add_label_to_sizer (grid, this, _("Trim from end"), true);
_trim_end = new Timecode (this);
grid->Add (_trim_end);
-
- _position->Changed.connect (boost::bind (&TimingPanel::position_changed, this));
- _length->Changed.connect (boost::bind (&TimingPanel::length_changed, this));
- _trim_start->Changed.connect (boost::bind (&TimingPanel::trim_start_changed, this));
- _trim_end->Changed.connect (boost::bind (&TimingPanel::trim_end_changed, this));
+ add_label_to_sizer (grid, this, _("Play length"), true);
+ _play_length = new Timecode (this);
+ grid->Add (_play_length);
+
+ _position->Changed.connect (boost::bind (&TimingPanel::position_changed, this));
+ _full_length->Changed.connect (boost::bind (&TimingPanel::full_length_changed, this));
+ _trim_start->Changed.connect (boost::bind (&TimingPanel::trim_start_changed, this));
+ _trim_end->Changed.connect (boost::bind (&TimingPanel::trim_end_changed, this));
+ _play_length->Changed.connect (boost::bind (&TimingPanel::play_length_changed, this));
}
void
@@ -70,26 +74,33 @@ TimingPanel::film_content_changed (int property)
}
} else if (property == ContentProperty::LENGTH) {
if (content) {
- _length->set (content->full_length (), _editor->film()->video_frame_rate ());
+ _full_length->set (content->full_length (), _editor->film()->video_frame_rate ());
+ _play_length->set (content->length_after_trim (), _editor->film()->video_frame_rate ());
} else {
- _length->set (0, 24);
+ _full_length->set (0, 24);
+ _play_length->set (0, 24);
}
} else if (property == ContentProperty::TRIM_START) {
if (content) {
_trim_start->set (content->trim_start (), _editor->film()->video_frame_rate ());
+ _play_length->set (content->length_after_trim (), _editor->film()->video_frame_rate ());
} else {
_trim_start->set (0, 24);
+ _play_length->set (0, 24);
}
} else if (property == ContentProperty::TRIM_END) {
if (content) {
_trim_end->set (content->trim_end (), _editor->film()->video_frame_rate ());
+ _play_length->set (content->length_after_trim (), _editor->film()->video_frame_rate ());
} else {
_trim_end->set (0, 24);
+ _play_length->set (0, 24);
}
}
shared_ptr<ImageContent> ic = dynamic_pointer_cast<ImageContent> (content);
- _length->set_editable (ic && ic->still ());
+ _full_length->set_editable (ic && ic->still ());
+ _play_length->set_editable (!ic || !ic->still ());
}
void
@@ -102,13 +113,13 @@ TimingPanel::position_changed ()
}
void
-TimingPanel::length_changed ()
+TimingPanel::full_length_changed ()
{
ContentList c = _editor->selected_content ();
if (c.size() == 1) {
shared_ptr<ImageContent> ic = dynamic_pointer_cast<ImageContent> (c.front ());
if (ic && ic->still ()) {
- ic->set_video_length (rint (_length->get (_editor->film()->video_frame_rate()) * ic->video_frame_rate() / TIME_HZ));
+ ic->set_video_length (rint (_full_length->get (_editor->film()->video_frame_rate()) * ic->video_frame_rate() / TIME_HZ));
}
}
}
@@ -133,6 +144,15 @@ TimingPanel::trim_end_changed ()
}
void
+TimingPanel::play_length_changed ()
+{
+ ContentList c = _editor->selected_content ();
+ if (c.size() == 1) {
+ c.front()->set_trim_end (c.front()->full_length() - _play_length->get (_editor->film()->video_frame_rate()) - c.front()->trim_start());
+ }
+}
+
+void
TimingPanel::content_selection_changed ()
{
ContentList sel = _editor->selected_content ();
@@ -140,9 +160,10 @@ TimingPanel::content_selection_changed ()
/* Things that are only allowed with single selections */
_position->Enable (single);
- _length->Enable (single);
+ _full_length->Enable (single);
_trim_start->Enable (single);
_trim_end->Enable (single);
+ _play_length->Enable (single);
film_content_changed (ContentProperty::POSITION);
film_content_changed (ContentProperty::LENGTH);
diff --git a/src/wx/timing_panel.h b/src/wx/timing_panel.h
index 8c519bcbe..ab859a1be 100644
--- a/src/wx/timing_panel.h
+++ b/src/wx/timing_panel.h
@@ -31,12 +31,14 @@ public:
private:
void position_changed ();
- void length_changed ();
+ void full_length_changed ();
void trim_start_changed ();
void trim_end_changed ();
+ void play_length_changed ();
Timecode* _position;
- Timecode* _length;
+ Timecode* _full_length;
Timecode* _trim_start;
Timecode* _trim_end;
+ Timecode* _play_length;
};