X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Ffilm_editor.cc;h=ce3791faa79d27351f54b92e701992f328c37dde;hb=53eea12d3e0d7925d5949de92859bc358ee0adcc;hp=7f9461d940fb4ba6f4035707fc1f930c214c62f9;hpb=cb990adba9c57e5107ef2aa9716cf0a26c1df83d;p=dcpomatic.git diff --git a/src/wx/film_editor.cc b/src/wx/film_editor.cc index 7f9461d94..ce3791faa 100644 --- a/src/wx/film_editor.cc +++ b/src/wx/film_editor.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2014 Carl Hetherington + Copyright (C) 2012-2015 Carl Hetherington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -17,61 +17,27 @@ */ -/** @file src/film_editor.cc - * @brief A wx widget to edit a film's metadata, and perform various functions. +/** @file src/wx/film_editor.cc + * @brief FilmEditor class. */ -#include -#include -#include -#include -#include -#include -#include -#include #include "lib/film.h" -#include "lib/transcode_job.h" -#include "lib/exceptions.h" #include "lib/job_manager.h" -#include "lib/filter.h" -#include "lib/ratio.h" -#include "lib/config.h" -#include "lib/image_content.h" -#include "lib/ffmpeg_content.h" -#include "lib/sndfile_content.h" -#include "lib/dcp_content_type.h" -#include "lib/scaler.h" -#include "lib/playlist.h" #include "lib/content.h" -#include "lib/content_factory.h" #include "lib/dcp_content.h" -#include "lib/safe_stringstream.h" -#include "timecode.h" #include "wx_util.h" #include "film_editor.h" -#include "timeline_dialog.h" -#include "timing_panel.h" -#include "subtitle_panel.h" -#include "audio_panel.h" -#include "video_panel.h" -#include "content_panel.h" #include "dcp_panel.h" +#include "content_panel.h" +#include +#include +#include -using std::string; using std::cout; -using std::pair; -using std::fixed; -using std::setprecision; -using std::list; -using std::vector; -using std::max; using boost::shared_ptr; -using boost::weak_ptr; -using boost::dynamic_pointer_cast; -using boost::lexical_cast; /** @param f Film to edit */ -FilmEditor::FilmEditor (wxWindow* parent) +FilmEditor::FilmEditor (wxWindow* parent, FilmViewer* viewer) : wxPanel (parent) { wxBoxSizer* s = new wxBoxSizer (wxVERTICAL); @@ -79,7 +45,7 @@ FilmEditor::FilmEditor (wxWindow* parent) _main_notebook = new wxNotebook (this, wxID_ANY); s->Add (_main_notebook, 1); - _content_panel = new ContentPanel (_main_notebook, _film); + _content_panel = new ContentPanel (_main_notebook, _film, viewer); _main_notebook->AddPage (_content_panel->panel (), _("Content"), true); _dcp_panel = new DCPPanel (_main_notebook, _film); _main_notebook->AddPage (_dcp_panel->panel (), _("DCP"), false); @@ -89,7 +55,6 @@ FilmEditor::FilmEditor (wxWindow* parent) ); set_film (shared_ptr ()); - SetSizerAndFit (s); } @@ -109,6 +74,11 @@ FilmEditor::film_changed (Film::Property p) _content_panel->film_changed (p); _dcp_panel->film_changed (p); + + if (p == Film::CONTENT && !_film->content().empty ()) { + /* Select newly-added content */ + _content_panel->set_selection (_film->content().back ()); + } } void @@ -129,15 +99,15 @@ FilmEditor::film_content_changed (int property) /** Sets the Film that we are editing */ void -FilmEditor::set_film (shared_ptr f) +FilmEditor::set_film (shared_ptr film) { - set_general_sensitivity (f != 0); + set_general_sensitivity (film != 0); - if (_film == f) { + if (_film == film) { return; } - _film = f; + _film = film; _content_panel->set_film (_film); _dcp_panel->set_film (_film);