diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-10-15 22:18:00 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-10-15 22:18:00 +0100 |
| commit | 6b35b4764ac5446c845a1dde9a01e0401862d835 (patch) | |
| tree | f8053ff11fcd290b07ffee4a41cf9ca3668514ca /src | |
| parent | f3c8a0a8d45df52ec449aa1d3e02d308a2c36b42 (diff) | |
Restore up/down buttons for simple content movements.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/film.cc | 13 | ||||
| -rw-r--r-- | src/lib/film.h | 2 | ||||
| -rw-r--r-- | src/lib/playlist.cc | 66 | ||||
| -rw-r--r-- | src/lib/playlist.h | 3 | ||||
| -rw-r--r-- | src/wx/film_editor.cc | 25 | ||||
| -rw-r--r-- | src/wx/film_editor.h | 2 |
6 files changed, 108 insertions, 3 deletions
diff --git a/src/lib/film.cc b/src/lib/film.cc index bceaef96e..085675d07 100644 --- a/src/lib/film.cc +++ b/src/lib/film.cc @@ -806,6 +806,18 @@ Film::remove_content (shared_ptr<Content> c) _playlist->remove (c); } +void +Film::move_content_earlier (shared_ptr<Content> c) +{ + _playlist->move_earlier (c); +} + +void +Film::move_content_later (shared_ptr<Content> c) +{ + _playlist->move_later (c); +} + Time Film::length () const { @@ -951,4 +963,3 @@ Film::make_kdms ( return kdms; } - diff --git a/src/lib/film.h b/src/lib/film.h index 01fccf7d1..71bbd3844 100644 --- a/src/lib/film.h +++ b/src/lib/film.h @@ -235,6 +235,8 @@ public: void examine_and_add_content (boost::shared_ptr<Content>); void add_content (boost::shared_ptr<Content>); void remove_content (boost::shared_ptr<Content>); + void move_content_earlier (boost::shared_ptr<Content>); + void move_content_later (boost::shared_ptr<Content>); void set_dcp_content_type (DCPContentType const *); void set_container (Ratio const *); void set_resolution (Resolution); diff --git a/src/lib/playlist.cc b/src/lib/playlist.cc index de48ff5f5..1712dc8ff 100644 --- a/src/lib/playlist.cc +++ b/src/lib/playlist.cc @@ -82,9 +82,8 @@ Playlist::maybe_sequence_video () _sequencing_video = true; ContentList cl = _content; - sort (cl.begin(), cl.end(), ContentSorter ()); Time last = 0; - for (ContentList::iterator i = cl.begin(); i != cl.end(); ++i) { + for (ContentList::iterator i = _content.begin(); i != _content.end(); ++i) { if (!dynamic_pointer_cast<VideoContent> (*i)) { continue; } @@ -92,6 +91,8 @@ Playlist::maybe_sequence_video () (*i)->set_position (last); last = (*i)->end (); } + + /* This won't change order, so it does not need a sort */ _sequencing_video = false; } @@ -120,6 +121,8 @@ Playlist::set_from_xml (shared_ptr<const Film> film, shared_ptr<const cxml::Node _content.push_back (content_factory (film, *i)); } + sort (_content.begin(), _content.end(), ContentSorter ()); + reconnect (); } @@ -136,6 +139,7 @@ void Playlist::add (shared_ptr<Content> c) { _content.push_back (c); + sort (_content.begin(), _content.end(), ContentSorter ()); reconnect (); Changed (); } @@ -152,6 +156,8 @@ Playlist::remove (shared_ptr<Content> c) _content.erase (i); Changed (); } + + /* This won't change order, so it does not need a sort */ } void @@ -168,6 +174,8 @@ Playlist::remove (ContentList c) } } + /* This won't change order, so it does not need a sort */ + Changed (); } @@ -325,6 +333,60 @@ Playlist::repeat (ContentList c, int n) pos += range.second - range.first; } + sort (_content.begin(), _content.end(), ContentSorter ()); + reconnect (); Changed (); } + +void +Playlist::move_earlier (shared_ptr<Content> c) +{ + sort (_content.begin(), _content.end(), ContentSorter ()); + + ContentList::iterator previous = _content.end (); + ContentList::iterator i = _content.begin(); + while (i != _content.end() && *i != c) { + previous = i; + ++i; + } + + assert (i != _content.end ()); + if (previous == _content.end ()) { + return; + } + + Time const p = (*previous)->position (); + (*previous)->set_position (p + c->length_after_trim ()); + c->set_position (p); + sort (_content.begin(), _content.end(), ContentSorter ()); + + Changed (); +} + +void +Playlist::move_later (shared_ptr<Content> c) +{ + sort (_content.begin(), _content.end(), ContentSorter ()); + + ContentList::iterator i = _content.begin(); + while (i != _content.end() && *i != c) { + ++i; + } + + assert (i != _content.end ()); + + ContentList::iterator next = i; + ++next; + + if (next == _content.end ()) { + return; + } + + Time const p = (*next)->position (); + (*next)->set_position (c->position ()); + c->set_position (p + c->length_after_trim ()); + sort (_content.begin(), _content.end(), ContentSorter ()); + + Changed (); +} diff --git a/src/lib/playlist.h b/src/lib/playlist.h index 7dbf41604..05928ee57 100644 --- a/src/lib/playlist.h +++ b/src/lib/playlist.h @@ -61,6 +61,8 @@ public: void add (boost::shared_ptr<Content>); void remove (boost::shared_ptr<Content>); void remove (ContentList); + void move_earlier (boost::shared_ptr<Content>); + void move_later (boost::shared_ptr<Content>); bool has_subtitles () const; @@ -86,6 +88,7 @@ private: void content_changed (boost::weak_ptr<Content>, int, bool); void reconnect (); + /** List of content. Kept sorted in position order. */ ContentList _content; bool _sequence_video; bool _sequencing_video; diff --git a/src/wx/film_editor.cc b/src/wx/film_editor.cc index a85052645..d50216258 100644 --- a/src/wx/film_editor.cc +++ b/src/wx/film_editor.cc @@ -43,6 +43,7 @@ #include "lib/dcp_content_type.h" #include "lib/sound_processor.h" #include "lib/scaler.h" +#include "lib/playlist.h" #include "timecode.h" #include "wx_util.h" #include "film_editor.h" @@ -229,6 +230,8 @@ FilmEditor::connect_to_widgets () _content_add_file->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&FilmEditor::content_add_file_clicked, this)); _content_add_folder->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&FilmEditor::content_add_folder_clicked, this)); _content_remove->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&FilmEditor::content_remove_clicked, this)); + _content_earlier->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&FilmEditor::content_earlier_clicked, this)); + _content_later->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&FilmEditor::content_later_clicked, this)); _content_timeline->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&FilmEditor::content_timeline_clicked, this)); _scaler->Bind (wxEVT_COMMAND_CHOICE_SELECTED, boost::bind (&FilmEditor::scaler_changed, this)); _dcp_content_type->Bind (wxEVT_COMMAND_CHOICE_SELECTED, boost::bind (&FilmEditor::dcp_content_type_changed, this)); @@ -266,6 +269,10 @@ FilmEditor::make_content_panel () b->Add (_content_add_folder, 1, wxEXPAND | wxLEFT | wxRIGHT); _content_remove = new wxButton (_content_panel, wxID_ANY, _("Remove")); b->Add (_content_remove, 1, wxEXPAND | wxLEFT | wxRIGHT); + _content_earlier = new wxButton (_content_panel, wxID_UP); + b->Add (_content_earlier, 1, wxEXPAND); + _content_later = new wxButton (_content_panel, wxID_DOWN); + b->Add (_content_later, 1, wxEXPAND); _content_timeline = new wxButton (_content_panel, wxID_ANY, _("Timeline...")); b->Add (_content_timeline, 1, wxEXPAND | wxLEFT | wxRIGHT); @@ -597,6 +604,8 @@ FilmEditor::set_general_sensitivity (bool s) _content_add_file->Enable (s); _content_add_folder->Enable (s); _content_remove->Enable (s); + _content_earlier->Enable (s); + _content_later->Enable (s); _content_timeline->Enable (s); _dcp_content_type->Enable (s); _encrypted->Enable (s); @@ -809,6 +818,8 @@ FilmEditor::setup_content_sensitivity () shared_ptr<Content> selection = selected_content (); _content_remove->Enable (selection && _generally_sensitive); + _content_earlier->Enable (selection && _generally_sensitive); + _content_later->Enable (selection && _generally_sensitive); _content_timeline->Enable (_generally_sensitive); _video_panel->Enable (selection && dynamic_pointer_cast<VideoContent> (selection) && _generally_sensitive); @@ -918,3 +929,17 @@ FilmEditor::three_d_changed () _film->set_three_d (_three_d->GetValue ()); } + +void +FilmEditor::content_earlier_clicked () +{ + _film->move_content_earlier (selected_content ()); + content_selection_changed (); +} + +void +FilmEditor::content_later_clicked () +{ + _film->move_content_later (selected_content ()); + content_selection_changed (); +} diff --git a/src/wx/film_editor.h b/src/wx/film_editor.h index bb217211c..06a65dd9f 100644 --- a/src/wx/film_editor.h +++ b/src/wx/film_editor.h @@ -80,6 +80,8 @@ private: void content_add_file_clicked (); void content_add_folder_clicked (); void content_remove_clicked (); + void content_earlier_clicked (); + void content_later_clicked (); void container_changed (); void dcp_content_type_changed (); void scaler_changed (); |
