X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Ffilm_editor.cc;h=6d60772be0f2dc805ff88ca565a3114f3f90f602;hb=a4a5a3720816f0cf43f09496dadd010bb71b560b;hp=8ae63bd4bfad1c6d6878b9366694bd661fc4f26a;hpb=e1b818fe3eb59d854c1b8b7951a8af58c3095ba2;p=dcpomatic.git diff --git a/src/wx/film_editor.cc b/src/wx/film_editor.cc index 8ae63bd4b..6d60772be 100644 --- a/src/wx/film_editor.cc +++ b/src/wx/film_editor.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2013 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,578 +17,47 @@ */ -/** @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/still_image_content.h" -#include "lib/sndfile_content.h" -#include "lib/dcp_content_type.h" -#include "lib/sound_processor.h" -#include "lib/scaler.h" -#include "timecode.h" -#include "filter_dialog.h" +#include "lib/content.h" +#include "lib/dcp_content.h" #include "wx_util.h" #include "film_editor.h" -#include "gain_calculator_dialog.h" -#include "dci_metadata_dialog.h" -#include "audio_dialog.h" -#include "timeline_dialog.h" -#include "audio_mapping_view.h" +#include "dcp_panel.h" +#include "content_panel.h" +#include +#include +#include -using std::string; using std::cout; -using std::stringstream; -using std::pair; -using std::fixed; -using std::setprecision; -using std::list; -using std::vector; -using std::max; +using std::string; using boost::shared_ptr; -using boost::weak_ptr; -using boost::dynamic_pointer_cast; -using boost::lexical_cast; +using boost::optional; /** @param f Film to edit */ -FilmEditor::FilmEditor (shared_ptr f, wxWindow* parent) +FilmEditor::FilmEditor (wxWindow* parent, FilmViewer* viewer) : wxPanel (parent) - , _menu (f, this) - , _generally_sensitive (true) - , _audio_dialog (0) - , _timeline_dialog (0) { wxBoxSizer* s = new wxBoxSizer (wxVERTICAL); _main_notebook = new wxNotebook (this, wxID_ANY); s->Add (_main_notebook, 1); - make_content_panel (); - _main_notebook->AddPage (_content_panel, _("Content"), true); - make_dcp_panel (); - _main_notebook->AddPage (_dcp_panel, _("DCP"), false); - - setup_ratios (); - - set_film (f); - connect_to_widgets (); + _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); JobManager::instance()->ActiveJobsChanged.connect ( - bind (&FilmEditor::active_jobs_changed, this, _1) - ); - - SetSizerAndFit (s); -} - -void -FilmEditor::make_dcp_panel () -{ - _dcp_panel = new wxPanel (_main_notebook); - _dcp_sizer = new wxBoxSizer (wxVERTICAL); - _dcp_panel->SetSizer (_dcp_sizer); - - wxGridBagSizer* grid = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP); - _dcp_sizer->Add (grid, 0, wxEXPAND | wxALL, 8); - - int r = 0; - - add_label_to_grid_bag_sizer (grid, _dcp_panel, _("Name"), true, wxGBPosition (r, 0)); - _name = new wxTextCtrl (_dcp_panel, wxID_ANY); - grid->Add (_name, wxGBPosition(r, 1), wxDefaultSpan, wxEXPAND | wxLEFT | wxRIGHT); - ++r; - - add_label_to_grid_bag_sizer (grid, _dcp_panel, _("DCP Name"), true, wxGBPosition (r, 0)); - _dcp_name = new wxStaticText (_dcp_panel, wxID_ANY, wxT ("")); - grid->Add (_dcp_name, wxGBPosition(r, 1), wxDefaultSpan, wxALIGN_CENTER_VERTICAL); - ++r; - - int flags = wxALIGN_CENTER_VERTICAL; -#ifdef __WXOSX__ - flags |= wxALIGN_RIGHT; -#endif - - _use_dci_name = new wxCheckBox (_dcp_panel, wxID_ANY, _("Use DCI name")); - grid->Add (_use_dci_name, wxGBPosition (r, 0), wxDefaultSpan, flags); - _edit_dci_button = new wxButton (_dcp_panel, wxID_ANY, _("Details...")); - grid->Add (_edit_dci_button, wxGBPosition (r, 1), wxDefaultSpan); - ++r; - - add_label_to_grid_bag_sizer (grid, _dcp_panel, _("Container"), true, wxGBPosition (r, 0)); - _container = new wxChoice (_dcp_panel, wxID_ANY); - grid->Add (_container, wxGBPosition (r, 1), wxDefaultSpan, wxEXPAND); - ++r; - - add_label_to_grid_bag_sizer (grid, _dcp_panel, _("Content Type"), true, wxGBPosition (r, 0)); - _dcp_content_type = new wxChoice (_dcp_panel, wxID_ANY); - grid->Add (_dcp_content_type, wxGBPosition (r, 1)); - ++r; - - { - add_label_to_grid_bag_sizer (grid, _dcp_panel, _("Frame Rate"), true, wxGBPosition (r, 0)); - wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL); - _dcp_frame_rate = new wxChoice (_dcp_panel, wxID_ANY); - s->Add (_dcp_frame_rate, 1, wxALIGN_CENTER_VERTICAL); - _best_dcp_frame_rate = new wxButton (_dcp_panel, wxID_ANY, _("Use best")); - s->Add (_best_dcp_frame_rate, 1, wxALIGN_CENTER_VERTICAL | wxEXPAND); - grid->Add (s, wxGBPosition (r, 1)); - } - ++r; - - add_label_to_grid_bag_sizer (grid, _dcp_panel, _("Audio channels"), true, wxGBPosition (r, 0)); - _dcp_audio_channels = new wxSpinCtrl (_dcp_panel, wxID_ANY); - grid->Add (_dcp_audio_channels, wxGBPosition (r, 1)); - ++r; - - add_label_to_grid_bag_sizer (grid, _dcp_panel, _("Resolution"), true, wxGBPosition (r, 0)); - _dcp_resolution = new wxChoice (_dcp_panel, wxID_ANY); - grid->Add (_dcp_resolution, wxGBPosition (r, 1)); - ++r; - - { - add_label_to_grid_bag_sizer (grid, _dcp_panel, _("JPEG2000 bandwidth"), true, wxGBPosition (r, 0)); - wxSizer* s = new wxBoxSizer (wxHORIZONTAL); - _j2k_bandwidth = new wxSpinCtrl (_dcp_panel, wxID_ANY); - s->Add (_j2k_bandwidth, 1); - add_label_to_sizer (s, _dcp_panel, _("MBps"), false); - grid->Add (s, wxGBPosition (r, 1)); - } - ++r; - - add_label_to_grid_bag_sizer (grid, _dcp_panel, _("Scaler"), true, wxGBPosition (r, 0)); - _scaler = new wxChoice (_dcp_panel, wxID_ANY); - grid->Add (_scaler, wxGBPosition (r, 1), wxDefaultSpan, wxALIGN_CENTER_VERTICAL); - ++r; - - vector const sc = Scaler::all (); - for (vector::const_iterator i = sc.begin(); i != sc.end(); ++i) { - _scaler->Append (std_to_wx ((*i)->name())); - } - - vector const ratio = Ratio::all (); - for (vector::const_iterator i = ratio.begin(); i != ratio.end(); ++i) { - _container->Append (std_to_wx ((*i)->nickname ())); - } - - vector const ct = DCPContentType::all (); - for (vector::const_iterator i = ct.begin(); i != ct.end(); ++i) { - _dcp_content_type->Append (std_to_wx ((*i)->pretty_name ())); - } - - list const dfr = Config::instance()->allowed_dcp_frame_rates (); - for (list::const_iterator i = dfr.begin(); i != dfr.end(); ++i) { - _dcp_frame_rate->Append (std_to_wx (boost::lexical_cast (*i))); - } - - _dcp_audio_channels->SetRange (0, MAX_AUDIO_CHANNELS); - _j2k_bandwidth->SetRange (50, 250); - - _dcp_resolution->Append (_("2K")); - _dcp_resolution->Append (_("4K")); -} - -void -FilmEditor::connect_to_widgets () -{ - _name->Connect (wxID_ANY, wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler (FilmEditor::name_changed), 0, this); - _use_dci_name->Connect (wxID_ANY, wxEVT_COMMAND_CHECKBOX_CLICKED, wxCommandEventHandler (FilmEditor::use_dci_name_toggled), 0, this); - _edit_dci_button->Connect (wxID_ANY, wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler (FilmEditor::edit_dci_button_clicked), 0, this); - _container->Connect (wxID_ANY, wxEVT_COMMAND_CHOICE_SELECTED, wxCommandEventHandler (FilmEditor::container_changed), 0, this); - _ratio->Connect (wxID_ANY, wxEVT_COMMAND_CHOICE_SELECTED, wxCommandEventHandler (FilmEditor::ratio_changed), 0, this); - _content->Connect (wxID_ANY, wxEVT_COMMAND_LIST_ITEM_SELECTED, wxListEventHandler (FilmEditor::content_selection_changed), 0, this); - _content->Connect (wxID_ANY, wxEVT_COMMAND_LIST_ITEM_DESELECTED, wxListEventHandler (FilmEditor::content_selection_changed), 0, this); - _content->Connect (wxID_ANY, wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK,wxListEventHandler (FilmEditor::content_right_click), 0, this); - _content_add->Connect (wxID_ANY, wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler (FilmEditor::content_add_clicked), 0, this); - _content_remove->Connect (wxID_ANY, wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler (FilmEditor::content_remove_clicked), 0, this); - _content_timeline->Connect (wxID_ANY, wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler (FilmEditor::content_timeline_clicked), 0, this); - _left_crop->Connect (wxID_ANY, wxEVT_COMMAND_SPINCTRL_UPDATED, wxCommandEventHandler (FilmEditor::left_crop_changed), 0, this); - _right_crop->Connect (wxID_ANY, wxEVT_COMMAND_SPINCTRL_UPDATED, wxCommandEventHandler (FilmEditor::right_crop_changed), 0, this); - _top_crop->Connect (wxID_ANY, wxEVT_COMMAND_SPINCTRL_UPDATED, wxCommandEventHandler (FilmEditor::top_crop_changed), 0, this); - _bottom_crop->Connect (wxID_ANY, wxEVT_COMMAND_SPINCTRL_UPDATED, wxCommandEventHandler (FilmEditor::bottom_crop_changed), 0, this); - _filters_button->Connect (wxID_ANY, wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler (FilmEditor::edit_filters_clicked), 0, this); - _scaler->Connect (wxID_ANY, wxEVT_COMMAND_CHOICE_SELECTED, wxCommandEventHandler (FilmEditor::scaler_changed), 0, this); - _dcp_content_type->Connect (wxID_ANY, wxEVT_COMMAND_CHOICE_SELECTED, wxCommandEventHandler (FilmEditor::dcp_content_type_changed), 0, this); - _dcp_frame_rate->Connect (wxID_ANY, wxEVT_COMMAND_CHOICE_SELECTED, wxCommandEventHandler (FilmEditor::dcp_frame_rate_changed), 0, this); - _best_dcp_frame_rate->Connect (wxID_ANY, wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler (FilmEditor::best_dcp_frame_rate_clicked), 0, this); - _dcp_audio_channels->Connect (wxID_ANY, wxEVT_COMMAND_SPINCTRL_UPDATED, wxCommandEventHandler (FilmEditor::dcp_audio_channels_changed), 0, this); - _with_subtitles->Connect (wxID_ANY, wxEVT_COMMAND_CHECKBOX_CLICKED, wxCommandEventHandler (FilmEditor::with_subtitles_toggled), 0, this); - _subtitle_offset->Connect (wxID_ANY, wxEVT_COMMAND_SPINCTRL_UPDATED, wxCommandEventHandler (FilmEditor::subtitle_offset_changed), 0, this); - _subtitle_scale->Connect (wxID_ANY, wxEVT_COMMAND_SPINCTRL_UPDATED, wxCommandEventHandler (FilmEditor::subtitle_scale_changed), 0, this); - _j2k_bandwidth->Connect (wxID_ANY, wxEVT_COMMAND_SPINCTRL_UPDATED, wxCommandEventHandler (FilmEditor::j2k_bandwidth_changed), 0, this); - _audio_gain->Connect (wxID_ANY, wxEVT_COMMAND_SPINCTRL_UPDATED, wxCommandEventHandler (FilmEditor::audio_gain_changed), 0, this); - _audio_gain_calculate_button->Connect ( - wxID_ANY, wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler (FilmEditor::audio_gain_calculate_button_clicked), 0, this - ); - _show_audio->Connect (wxID_ANY, wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler (FilmEditor::show_audio_clicked), 0, this); - _audio_delay->Connect (wxID_ANY, wxEVT_COMMAND_SPINCTRL_UPDATED, wxCommandEventHandler (FilmEditor::audio_delay_changed), 0, this); - _audio_stream->Connect (wxID_ANY, wxEVT_COMMAND_CHOICE_SELECTED, wxCommandEventHandler (FilmEditor::audio_stream_changed), 0, this); - _subtitle_stream->Connect (wxID_ANY, wxEVT_COMMAND_CHOICE_SELECTED, wxCommandEventHandler (FilmEditor::subtitle_stream_changed), 0, this); - _dcp_resolution->Connect (wxID_ANY, wxEVT_COMMAND_CHOICE_SELECTED, wxCommandEventHandler (FilmEditor::dcp_resolution_changed), 0, this); - _sequence_video->Connect (wxID_ANY, wxEVT_COMMAND_CHECKBOX_CLICKED, wxCommandEventHandler (FilmEditor::sequence_video_changed), 0, this); - - _audio_mapping->Changed.connect (boost::bind (&FilmEditor::audio_mapping_changed, this, _1)); - _start->Changed.connect (boost::bind (&FilmEditor::start_changed, this)); - _length->Changed.connect (boost::bind (&FilmEditor::length_changed, this)); -} - -void -FilmEditor::make_video_panel () -{ - _video_panel = new wxPanel (_content_notebook); - wxBoxSizer* video_sizer = new wxBoxSizer (wxVERTICAL); - _video_panel->SetSizer (video_sizer); - - wxGridBagSizer* grid = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP); - video_sizer->Add (grid, 0, wxALL, 8); - - int r = 0; - add_label_to_grid_bag_sizer (grid, _video_panel, _("Left crop"), true, wxGBPosition (r, 0)); - _left_crop = new wxSpinCtrl (_video_panel, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)); - grid->Add (_left_crop, wxGBPosition (r, 1)); - ++r; - - add_label_to_grid_bag_sizer (grid, _video_panel, _("Right crop"), true, wxGBPosition (r, 0)); - _right_crop = new wxSpinCtrl (_video_panel, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)); - grid->Add (_right_crop, wxGBPosition (r, 1)); - ++r; - - add_label_to_grid_bag_sizer (grid, _video_panel, _("Top crop"), true, wxGBPosition (r, 0)); - _top_crop = new wxSpinCtrl (_video_panel, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)); - grid->Add (_top_crop, wxGBPosition (r, 1)); - ++r; - - add_label_to_grid_bag_sizer (grid, _video_panel, _("Bottom crop"), true, wxGBPosition (r, 0)); - _bottom_crop = new wxSpinCtrl (_video_panel, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)); - grid->Add (_bottom_crop, wxGBPosition (r, 1)); - ++r; - - add_label_to_grid_bag_sizer (grid, _video_panel, _("Scale to"), true, wxGBPosition (r, 0)); - _ratio = new wxChoice (_video_panel, wxID_ANY); - grid->Add (_ratio, wxGBPosition (r, 1)); - ++r; - - _scaling_description = new wxStaticText (_video_panel, wxID_ANY, wxT ("\n \n \n \n"), wxDefaultPosition, wxDefaultSize); - grid->Add (_scaling_description, wxGBPosition (r, 0), wxGBSpan (1, 2), wxEXPAND | wxALIGN_CENTER_VERTICAL | wxALL, 6); - wxFont font = _scaling_description->GetFont(); - font.SetStyle(wxFONTSTYLE_ITALIC); - font.SetPointSize(font.GetPointSize() - 1); - _scaling_description->SetFont(font); - ++r; - - /* VIDEO-only stuff */ - { - add_label_to_grid_bag_sizer (grid, _video_panel, _("Filters"), true, wxGBPosition (r, 0)); - wxSizer* s = new wxBoxSizer (wxHORIZONTAL); - _filters = new wxStaticText (_video_panel, wxID_ANY, _("None")); - s->Add (_filters, 1, wxEXPAND | wxALIGN_CENTER_VERTICAL | wxTOP | wxBOTTOM | wxRIGHT, 6); - _filters_button = new wxButton (_video_panel, wxID_ANY, _("Edit...")); - s->Add (_filters_button, 0, wxALIGN_CENTER_VERTICAL); - grid->Add (s, wxGBPosition (r, 1), wxDefaultSpan, wxALIGN_CENTER_VERTICAL); - } - ++r; - - _left_crop->SetRange (0, 1024); - _top_crop->SetRange (0, 1024); - _right_crop->SetRange (0, 1024); - _bottom_crop->SetRange (0, 1024); -} - -void -FilmEditor::make_content_panel () -{ - _content_panel = new wxPanel (_main_notebook); - _content_sizer = new wxBoxSizer (wxVERTICAL); - _content_panel->SetSizer (_content_sizer); - - { - wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL); - - _content = new wxListCtrl (_content_panel, wxID_ANY, wxDefaultPosition, wxSize (320, 160), wxLC_REPORT | wxLC_NO_HEADER | wxLC_SINGLE_SEL); - s->Add (_content, 1, wxEXPAND | wxTOP | wxBOTTOM, 6); - - _content->InsertColumn (0, wxT("")); - _content->SetColumnWidth (0, 512); - - wxBoxSizer* b = new wxBoxSizer (wxVERTICAL); - _content_add = new wxButton (_content_panel, wxID_ANY, _("Add...")); - b->Add (_content_add, 1, wxEXPAND | wxLEFT | wxRIGHT); - _content_remove = new wxButton (_content_panel, wxID_ANY, _("Remove")); - b->Add (_content_remove, 1, wxEXPAND | wxLEFT | wxRIGHT); - _content_timeline = new wxButton (_content_panel, wxID_ANY, _("Timeline...")); - b->Add (_content_timeline, 1, wxEXPAND | wxLEFT | wxRIGHT); - - s->Add (b, 0, wxALL, 4); - - _content_sizer->Add (s, 0.75, wxEXPAND | wxALL, 6); - } - - _sequence_video = new wxCheckBox (_content_panel, wxID_ANY, _("Keep video in sequence")); - _content_sizer->Add (_sequence_video); - - _content_notebook = new wxNotebook (_content_panel, wxID_ANY); - _content_sizer->Add (_content_notebook, 1, wxEXPAND | wxTOP, 6); - - make_video_panel (); - _content_notebook->AddPage (_video_panel, _("Video"), false); - make_audio_panel (); - _content_notebook->AddPage (_audio_panel, _("Audio"), false); - make_subtitle_panel (); - _content_notebook->AddPage (_subtitle_panel, _("Subtitles"), false); - make_timing_panel (); - _content_notebook->AddPage (_timing_panel, _("Timing"), false); -} - -void -FilmEditor::make_audio_panel () -{ - _audio_panel = new wxPanel (_content_notebook); - wxBoxSizer* audio_sizer = new wxBoxSizer (wxVERTICAL); - _audio_panel->SetSizer (audio_sizer); - - wxFlexGridSizer* grid = new wxFlexGridSizer (3, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP); - audio_sizer->Add (grid, 0, wxALL, 8); - - _show_audio = new wxButton (_audio_panel, wxID_ANY, _("Show Audio...")); - grid->Add (_show_audio, 1); - grid->AddSpacer (0); - grid->AddSpacer (0); - - add_label_to_sizer (grid, _audio_panel, _("Audio Gain"), true); - { - wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL); - _audio_gain = new wxSpinCtrl (_audio_panel); - s->Add (_audio_gain, 1); - add_label_to_sizer (s, _audio_panel, _("dB"), false); - grid->Add (s, 1); - } - - _audio_gain_calculate_button = new wxButton (_audio_panel, wxID_ANY, _("Calculate...")); - grid->Add (_audio_gain_calculate_button); - - add_label_to_sizer (grid, _audio_panel, _("Audio Delay"), false); - { - wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL); - _audio_delay = new wxSpinCtrl (_audio_panel); - s->Add (_audio_delay, 1); - /// TRANSLATORS: this is an abbreviation for milliseconds, the unit of time - add_label_to_sizer (s, _audio_panel, _("ms"), false); - grid->Add (s); - } - - grid->AddSpacer (0); - - add_label_to_sizer (grid, _audio_panel, _("Audio Stream"), true); - _audio_stream = new wxChoice (_audio_panel, wxID_ANY); - grid->Add (_audio_stream, 1, wxEXPAND); - _audio_description = new wxStaticText (_audio_panel, wxID_ANY, wxT ("")); - grid->AddSpacer (0); - - grid->Add (_audio_description, 1, wxALIGN_CENTER_VERTICAL | wxLEFT, 8); - grid->AddSpacer (0); - grid->AddSpacer (0); - - _audio_mapping = new AudioMappingView (_audio_panel); - audio_sizer->Add (_audio_mapping, 1, wxEXPAND | wxALL, 6); - - _audio_gain->SetRange (-60, 60); - _audio_delay->SetRange (-1000, 1000); -} - -void -FilmEditor::make_subtitle_panel () -{ - _subtitle_panel = new wxPanel (_content_notebook); - wxBoxSizer* subtitle_sizer = new wxBoxSizer (wxVERTICAL); - _subtitle_panel->SetSizer (subtitle_sizer); - wxFlexGridSizer* grid = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP); - subtitle_sizer->Add (grid, 0, wxALL, 8); - - _with_subtitles = new wxCheckBox (_subtitle_panel, wxID_ANY, _("With Subtitles")); - grid->Add (_with_subtitles, 1); - grid->AddSpacer (0); - - { - add_label_to_sizer (grid, _subtitle_panel, _("Subtitle Offset"), true); - wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL); - _subtitle_offset = new wxSpinCtrl (_subtitle_panel); - s->Add (_subtitle_offset); - add_label_to_sizer (s, _subtitle_panel, _("%"), false); - grid->Add (s); - } - - { - add_label_to_sizer (grid, _subtitle_panel, _("Subtitle Scale"), true); - wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL); - _subtitle_scale = new wxSpinCtrl (_subtitle_panel); - s->Add (_subtitle_scale); - add_label_to_sizer (s, _subtitle_panel, _("%"), false); - grid->Add (s); - } - - add_label_to_sizer (grid, _subtitle_panel, _("Subtitle Stream"), true); - _subtitle_stream = new wxChoice (_subtitle_panel, wxID_ANY); - grid->Add (_subtitle_stream, 1, wxEXPAND); - - _subtitle_offset->SetRange (-100, 100); - _subtitle_scale->SetRange (1, 1000); - _subtitle_scale->SetValue (100); -} - -void -FilmEditor::make_timing_panel () -{ - _timing_panel = new wxPanel (_content_notebook); - wxBoxSizer* timing_sizer = new wxBoxSizer (wxVERTICAL); - _timing_panel->SetSizer (timing_sizer); - wxFlexGridSizer* grid = new wxFlexGridSizer (2, 4, 4); - timing_sizer->Add (grid, 0, wxALL, 8); - - add_label_to_sizer (grid, _timing_panel, _("Start time"), true); - _start = new Timecode (_timing_panel); - grid->Add (_start); - add_label_to_sizer (grid, _timing_panel, _("Length"), true); - _length = new Timecode (_timing_panel); - grid->Add (_length); -} - - -/** Called when the left crop widget has been changed */ -void -FilmEditor::left_crop_changed (wxCommandEvent &) -{ - shared_ptr c = selected_video_content (); - if (!c) { - return; - } - - c->set_left_crop (_left_crop->GetValue ()); -} - -/** Called when the right crop widget has been changed */ -void -FilmEditor::right_crop_changed (wxCommandEvent &) -{ - shared_ptr c = selected_video_content (); - if (!c) { - return; - } - - c->set_right_crop (_right_crop->GetValue ()); -} - -/** Called when the top crop widget has been changed */ -void -FilmEditor::top_crop_changed (wxCommandEvent &) -{ - shared_ptr c = selected_video_content (); - if (!c) { - return; - } - - c->set_top_crop (_top_crop->GetValue ()); -} - -/** Called when the bottom crop value has been changed */ -void -FilmEditor::bottom_crop_changed (wxCommandEvent &) -{ - shared_ptr c = selected_video_content (); - if (!c) { - return; - } - - c->set_bottom_crop (_bottom_crop->GetValue ()); -} - -/** Called when the name widget has been changed */ -void -FilmEditor::name_changed (wxCommandEvent &) -{ - if (!_film) { - return; - } - - _film->set_name (string (_name->GetValue().mb_str())); -} - -void -FilmEditor::subtitle_offset_changed (wxCommandEvent &) -{ - shared_ptr c = selected_subtitle_content (); - if (!c) { - return; - } - - c->set_subtitle_offset (_subtitle_offset->GetValue() / 100.0); -} - -void -FilmEditor::subtitle_scale_changed (wxCommandEvent &) -{ - shared_ptr c = selected_subtitle_content (); - if (!c) { - return; - } - - c->set_subtitle_scale (_subtitle_scale->GetValue() / 100.0); -} - -void -FilmEditor::j2k_bandwidth_changed (wxCommandEvent &) -{ - if (!_film) { - return; - } - - _film->set_j2k_bandwidth (_j2k_bandwidth->GetValue() * 1e6); -} - -void -FilmEditor::dcp_frame_rate_changed (wxCommandEvent &) -{ - if (!_film) { - return; - } - - _film->set_dcp_video_frame_rate ( - boost::lexical_cast ( - wx_to_std (_dcp_frame_rate->GetString (_dcp_frame_rate->GetSelection ())) - ) + bind (&FilmEditor::active_jobs_changed, this, _2) ); -} - -void -FilmEditor::dcp_audio_channels_changed (wxCommandEvent &) -{ - if (!_film) { - return; - } - - _film->set_dcp_audio_channels (_dcp_audio_channels->GetValue ()); -} - -void -FilmEditor::dcp_resolution_changed (wxCommandEvent &) -{ - if (!_film) { - return; - } - _film->set_resolution (_dcp_resolution->GetSelection() == 0 ? RESOLUTION_2K : RESOLUTION_4K); + set_film (shared_ptr ()); + SetSizerAndFit (s); } @@ -600,88 +69,25 @@ void FilmEditor::film_changed (Film::Property p) { ensure_ui_thread (); - + if (!_film) { return; } - stringstream s; - - switch (p) { - case Film::NONE: - break; - case Film::CONTENT: - setup_content (); - setup_subtitle_control_sensitivity (); - setup_show_audio_sensitivity (); - break; - case Film::CONTAINER: - setup_container (); - break; - case Film::NAME: - checked_set (_name, _film->name()); - setup_dcp_name (); - break; - case Film::DCP_CONTENT_TYPE: - checked_set (_dcp_content_type, DCPContentType::as_index (_film->dcp_content_type ())); - setup_dcp_name (); - break; - case Film::SCALER: - checked_set (_scaler, Scaler::as_index (_film->scaler ())); - break; - case Film::WITH_SUBTITLES: - checked_set (_with_subtitles, _film->with_subtitles ()); - setup_subtitle_control_sensitivity (); - setup_dcp_name (); - break; - case Film::RESOLUTION: - checked_set (_dcp_resolution, _film->resolution() == RESOLUTION_2K ? 0 : 1); - setup_dcp_name (); - break; - case Film::J2K_BANDWIDTH: - checked_set (_j2k_bandwidth, double (_film->j2k_bandwidth()) / 1e6); - break; - case Film::USE_DCI_NAME: - checked_set (_use_dci_name, _film->use_dci_name ()); - setup_dcp_name (); - break; - case Film::DCI_METADATA: - setup_dcp_name (); - break; - case Film::DCP_VIDEO_FRAME_RATE: - { - bool done = false; - for (unsigned int i = 0; i < _dcp_frame_rate->GetCount(); ++i) { - if (wx_to_std (_dcp_frame_rate->GetString(i)) == boost::lexical_cast (_film->dcp_video_frame_rate())) { - checked_set (_dcp_frame_rate, i); - done = true; - break; - } - } - - if (!done) { - checked_set (_dcp_frame_rate, -1); - } + _content_panel->film_changed (p); + _dcp_panel->film_changed (p); - _best_dcp_frame_rate->Enable (_film->best_dcp_video_frame_rate () != _film->dcp_video_frame_rate ()); - break; - } - case Film::DCP_AUDIO_CHANNELS: - _dcp_audio_channels->SetValue (_film->dcp_audio_channels ()); - _audio_mapping->set_channels (_film->dcp_audio_channels ()); - setup_dcp_name (); - break; - case Film::SEQUENCE_VIDEO: - checked_set (_sequence_video, _film->sequence_video ()); - break; + if (p == Film::CONTENT && !_film->content().empty ()) { + /* Select newly-added content */ + _content_panel->set_selection (_film->content().back ()); } } void -FilmEditor::film_content_changed (weak_ptr weak_content, int property) +FilmEditor::film_content_changed (int property) { ensure_ui_thread (); - + if (!_film) { /* We call this method ourselves (as well as using it as a signal handler) so _film can be 0. @@ -689,182 +95,28 @@ FilmEditor::film_content_changed (weak_ptr weak_content, int property) return; } - shared_ptr content = weak_content.lock (); - if (content != selected_content ()) { - return; - } - - shared_ptr video_content; - shared_ptr audio_content; - shared_ptr subtitle_content; - shared_ptr ffmpeg_content; - if (content) { - video_content = dynamic_pointer_cast (content); - audio_content = dynamic_pointer_cast (content); - subtitle_content = dynamic_pointer_cast (content); - ffmpeg_content = dynamic_pointer_cast (content); - } - - /* We can't use case {} here */ - - if (property == ContentProperty::START) { - if (content) { - _start->set (content->start (), _film->dcp_video_frame_rate ()); - } else { - _start->set (0, 24); - } - } else if (property == ContentProperty::LENGTH) { - if (content) { - _length->set (content->length (), _film->dcp_video_frame_rate ()); - } else { - _length->set (0, 24); - } - } else if (property == VideoContentProperty::VIDEO_CROP) { - checked_set (_left_crop, video_content ? video_content->crop().left : 0); - checked_set (_right_crop, video_content ? video_content->crop().right : 0); - checked_set (_top_crop, video_content ? video_content->crop().top : 0); - checked_set (_bottom_crop, video_content ? video_content->crop().bottom : 0); - setup_scaling_description (); - } else if (property == VideoContentProperty::VIDEO_RATIO) { - if (video_content) { - int n = 0; - vector ratios = Ratio::all (); - vector::iterator i = ratios.begin (); - while (i != ratios.end() && *i != video_content->ratio()) { - ++i; - ++n; - } - - if (i == ratios.end()) { - checked_set (_ratio, -1); - } else { - checked_set (_ratio, n); - } - } else { - checked_set (_ratio, -1); - } - setup_scaling_description (); - } else if (property == AudioContentProperty::AUDIO_GAIN) { - checked_set (_audio_gain, audio_content ? audio_content->audio_gain() : 0); - } else if (property == AudioContentProperty::AUDIO_DELAY) { - checked_set (_audio_delay, audio_content ? audio_content->audio_delay() : 0); - } else if (property == AudioContentProperty::AUDIO_MAPPING) { - _audio_mapping->set (audio_content ? audio_content->audio_mapping () : AudioMapping ()); - } else if (property == FFmpegContentProperty::SUBTITLE_STREAMS) { - _subtitle_stream->Clear (); - if (ffmpeg_content) { - vector > s = ffmpeg_content->subtitle_streams (); - for (vector >::iterator i = s.begin(); i != s.end(); ++i) { - _subtitle_stream->Append (std_to_wx ((*i)->name), new wxStringClientData (std_to_wx (lexical_cast ((*i)->id)))); - } - - if (ffmpeg_content->subtitle_stream()) { - checked_set (_subtitle_stream, lexical_cast (ffmpeg_content->subtitle_stream()->id)); - } else { - _subtitle_stream->SetSelection (wxNOT_FOUND); - } - } - setup_subtitle_control_sensitivity (); - } else if (property == FFmpegContentProperty::AUDIO_STREAMS) { - _audio_stream->Clear (); - if (ffmpeg_content) { - vector > a = ffmpeg_content->audio_streams (); - for (vector >::iterator i = a.begin(); i != a.end(); ++i) { - _audio_stream->Append (std_to_wx ((*i)->name), new wxStringClientData (std_to_wx (lexical_cast ((*i)->id)))); - } - - if (ffmpeg_content->audio_stream()) { - checked_set (_audio_stream, lexical_cast (ffmpeg_content->audio_stream()->id)); - } - } - setup_show_audio_sensitivity (); - } else if (property == FFmpegContentProperty::AUDIO_STREAM) { - setup_dcp_name (); - setup_show_audio_sensitivity (); - } else if (property == FFmpegContentProperty::FILTERS) { - if (ffmpeg_content) { - pair p = Filter::ffmpeg_strings (ffmpeg_content->filters ()); - if (p.first.empty () && p.second.empty ()) { - _filters->SetLabel (_("None")); - } else { - string const b = p.first + " " + p.second; - _filters->SetLabel (std_to_wx (b)); - } - _dcp_sizer->Layout (); - } - } else if (property == SubtitleContentProperty::SUBTITLE_OFFSET) { - checked_set (_subtitle_offset, subtitle_content ? (subtitle_content->subtitle_offset() * 100) : 0); - } else if (property == SubtitleContentProperty::SUBTITLE_SCALE) { - checked_set (_subtitle_scale, subtitle_content ? (subtitle_content->subtitle_scale() * 100) : 100); - } + _content_panel->film_content_changed (property); + _dcp_panel->film_content_changed (property); } +/** Sets the Film that we are editing */ void -FilmEditor::setup_container () -{ - int n = 0; - vector ratios = Ratio::all (); - vector::iterator i = ratios.begin (); - while (i != ratios.end() && *i != _film->container ()) { - ++i; - ++n; - } - - if (i == ratios.end()) { - checked_set (_container, -1); - } else { - checked_set (_container, n); - } - - setup_dcp_name (); - setup_scaling_description (); -} - -/** Called when the container widget has been changed */ -void -FilmEditor::container_changed (wxCommandEvent &) +FilmEditor::set_film (shared_ptr film) { - if (!_film) { - return; - } - - int const n = _container->GetSelection (); - if (n >= 0) { - vector ratios = Ratio::all (); - assert (n < int (ratios.size())); - _film->set_container (ratios[n]); - } -} + set_general_sensitivity (film != 0); -/** Called when the DCP content type widget has been changed */ -void -FilmEditor::dcp_content_type_changed (wxCommandEvent &) -{ - if (!_film) { + if (_film == film) { return; } - int const n = _dcp_content_type->GetSelection (); - if (n != wxNOT_FOUND) { - _film->set_dcp_content_type (DCPContentType::from_index (n)); - } -} + _film = film; -/** Sets the Film that we are editing */ -void -FilmEditor::set_film (shared_ptr f) -{ - set_things_sensitive (f != 0); - - if (_film == f) { - return; - } - - _film = f; + _content_panel->set_film (_film); + _dcp_panel->set_film (_film); if (_film) { _film->Changed.connect (bind (&FilmEditor::film_changed, this, _1)); - _film->ContentChanged.connect (bind (&FilmEditor::film_content_changed, this, _1, _2)); + _film->ContentChanged.connect (bind (&FilmEditor::film_content_changed, this, _2)); } if (_film) { @@ -873,659 +125,20 @@ FilmEditor::set_film (shared_ptr f) FileChanged (""); } - film_changed (Film::NAME); - film_changed (Film::USE_DCI_NAME); - film_changed (Film::CONTENT); - film_changed (Film::DCP_CONTENT_TYPE); - film_changed (Film::CONTAINER); - film_changed (Film::RESOLUTION); - film_changed (Film::SCALER); - film_changed (Film::WITH_SUBTITLES); - film_changed (Film::J2K_BANDWIDTH); - film_changed (Film::DCI_METADATA); - film_changed (Film::DCP_VIDEO_FRAME_RATE); - film_changed (Film::DCP_AUDIO_CHANNELS); - film_changed (Film::SEQUENCE_VIDEO); - if (!_film->content().empty ()) { - set_selection (_film->content().front ()); - } - - wxListEvent ev; - content_selection_changed (ev); -} - -/** Updates the sensitivity of lots of widgets to a given value. - * @param s true to make sensitive, false to make insensitive. - */ -void -FilmEditor::set_things_sensitive (bool s) -{ - _generally_sensitive = s; - - _name->Enable (s); - _use_dci_name->Enable (s); - _edit_dci_button->Enable (s); - _ratio->Enable (s); - _content->Enable (s); - _left_crop->Enable (s); - _right_crop->Enable (s); - _top_crop->Enable (s); - _bottom_crop->Enable (s); - _filters_button->Enable (s); - _scaler->Enable (s); - _dcp_content_type->Enable (s); - _dcp_frame_rate->Enable (s); - _dcp_audio_channels->Enable (s); - _j2k_bandwidth->Enable (s); - _audio_gain->Enable (s); - _audio_gain_calculate_button->Enable (s); - _show_audio->Enable (s); - _audio_delay->Enable (s); - _container->Enable (s); - - setup_subtitle_control_sensitivity (); - setup_show_audio_sensitivity (); - setup_content_sensitivity (); - _best_dcp_frame_rate->Enable (s && _film && _film->best_dcp_video_frame_rate () != _film->dcp_video_frame_rate ()); -} - -/** Called when the `Edit filters' button has been clicked */ -void -FilmEditor::edit_filters_clicked (wxCommandEvent &) -{ - shared_ptr c = selected_content (); - if (!c) { - return; - } - - shared_ptr fc = dynamic_pointer_cast (c); - if (!fc) { - return; - } - - FilterDialog* d = new FilterDialog (this, fc->filters()); - d->ActiveChanged.connect (bind (&FFmpegContent::set_filters, fc, _1)); - d->ShowModal (); - d->Destroy (); -} - -/** Called when the scaler widget has been changed */ -void -FilmEditor::scaler_changed (wxCommandEvent &) -{ - if (!_film) { - return; - } - - int const n = _scaler->GetSelection (); - if (n >= 0) { - _film->set_scaler (Scaler::from_index (n)); - } -} - -void -FilmEditor::audio_gain_changed (wxCommandEvent &) -{ - shared_ptr ac = selected_audio_content (); - if (!ac) { - return; - } - - ac->set_audio_gain (_audio_gain->GetValue ()); -} - -void -FilmEditor::audio_delay_changed (wxCommandEvent &) -{ - shared_ptr ac = selected_audio_content (); - if (!ac) { - return; - } - - ac->set_audio_delay (_audio_delay->GetValue ()); -} - -void -FilmEditor::audio_gain_calculate_button_clicked (wxCommandEvent &) -{ - GainCalculatorDialog* d = new GainCalculatorDialog (this); - d->ShowModal (); - - if (d->wanted_fader() == 0 || d->actual_fader() == 0) { - d->Destroy (); - return; - } - - _audio_gain->SetValue ( - Config::instance()->sound_processor()->db_for_fader_change ( - d->wanted_fader (), - d->actual_fader () - ) - ); - - /* This appears to be necessary, as the change is not signalled, - I think. - */ - wxCommandEvent dummy; - audio_gain_changed (dummy); - - d->Destroy (); -} - -void -FilmEditor::setup_ratios () -{ - _ratios = Ratio::all (); - - _ratio->Clear (); - for (vector::iterator i = _ratios.begin(); i != _ratios.end(); ++i) { - _ratio->Append (std_to_wx ((*i)->nickname ())); - } - - _dcp_sizer->Layout (); -} - -void -FilmEditor::with_subtitles_toggled (wxCommandEvent &) -{ - if (!_film) { - return; - } - - _film->set_with_subtitles (_with_subtitles->GetValue ()); -} - -void -FilmEditor::setup_subtitle_control_sensitivity () -{ - bool h = false; - if (_generally_sensitive && _film) { - h = _film->has_subtitles (); - } - - _with_subtitles->Enable (h); - - bool j = false; - if (_film) { - j = _film->with_subtitles (); - } - - _subtitle_offset->Enable (j); - _subtitle_scale->Enable (j); - _subtitle_stream->Enable (j); -} - -void -FilmEditor::use_dci_name_toggled (wxCommandEvent &) -{ - if (!_film) { - return; - } - - _film->set_use_dci_name (_use_dci_name->GetValue ()); -} - -void -FilmEditor::edit_dci_button_clicked (wxCommandEvent &) -{ - if (!_film) { - return; - } - - DCIMetadataDialog* d = new DCIMetadataDialog (this, _film->dci_metadata ()); - d->ShowModal (); - _film->set_dci_metadata (d->dci_metadata ()); - d->Destroy (); -} - -void -FilmEditor::active_jobs_changed (bool a) -{ - set_things_sensitive (!a); -} - -void -FilmEditor::setup_dcp_name () -{ - string s = _film->dcp_name (true); - if (s.length() > 28) { - _dcp_name->SetLabel (std_to_wx (s.substr (0, 28)) + N_("...")); - _dcp_name->SetToolTip (std_to_wx (s)); - } else { - _dcp_name->SetLabel (std_to_wx (s)); - } -} - -void -FilmEditor::show_audio_clicked (wxCommandEvent &) -{ - if (_audio_dialog) { - _audio_dialog->Destroy (); - _audio_dialog = 0; - } - - shared_ptr c = selected_content (); - if (!c) { - return; - } - - shared_ptr ac = dynamic_pointer_cast (c); - if (!ac) { - return; - } - - _audio_dialog = new AudioDialog (this); - _audio_dialog->Show (); - _audio_dialog->set_content (ac); -} - -void -FilmEditor::best_dcp_frame_rate_clicked (wxCommandEvent &) -{ - if (!_film) { - return; - } - - _film->set_dcp_video_frame_rate (_film->best_dcp_video_frame_rate ()); -} - -void -FilmEditor::setup_show_audio_sensitivity () -{ - _show_audio->Enable (_film); -} - -void -FilmEditor::setup_content () -{ - string selected_summary; - int const s = _content->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED); - if (s != -1) { - selected_summary = wx_to_std (_content->GetItemText (s)); - } - - _content->DeleteAllItems (); - - ContentList content = _film->content (); - for (ContentList::iterator i = content.begin(); i != content.end(); ++i) { - int const t = _content->GetItemCount (); - _content->InsertItem (t, std_to_wx ((*i)->summary ())); - if ((*i)->summary() == selected_summary) { - _content->SetItemState (t, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED); - } - } - - if (selected_summary.empty () && !content.empty ()) { - /* Select the item of content if none was selected before */ - _content->SetItemState (0, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED); - } -} - -void -FilmEditor::content_add_clicked (wxCommandEvent &) -{ - wxFileDialog* d = new wxFileDialog (this, _("Choose a file or files"), wxT (""), wxT (""), wxT ("*.*"), wxFD_MULTIPLE); - int const r = d->ShowModal (); - d->Destroy (); - - if (r != wxID_OK) { - return; - } - - wxArrayString paths; - d->GetPaths (paths); - - for (unsigned int i = 0; i < paths.GetCount(); ++i) { - boost::filesystem::path p (wx_to_std (paths[i])); - - shared_ptr c; - - if (StillImageContent::valid_file (p)) { - c.reset (new StillImageContent (_film, p)); - } else if (SndfileContent::valid_file (p)) { - c.reset (new SndfileContent (_film, p)); - } else { - c.reset (new FFmpegContent (_film, p)); - } - - _film->examine_and_add_content (c); - } -} - -void -FilmEditor::content_remove_clicked (wxCommandEvent &) -{ - shared_ptr c = selected_content (); - if (c) { - _film->remove_content (c); - } - - wxListEvent ev; - content_selection_changed (ev); -} - -void -FilmEditor::content_selection_changed (wxListEvent &) -{ - setup_content_sensitivity (); - shared_ptr s = selected_content (); - - if (_audio_dialog && s && dynamic_pointer_cast (s)) { - _audio_dialog->set_content (dynamic_pointer_cast (s)); - } - - film_content_changed (s, ContentProperty::START); - film_content_changed (s, ContentProperty::LENGTH); - film_content_changed (s, VideoContentProperty::VIDEO_CROP); - film_content_changed (s, VideoContentProperty::VIDEO_RATIO); - film_content_changed (s, AudioContentProperty::AUDIO_GAIN); - film_content_changed (s, AudioContentProperty::AUDIO_DELAY); - film_content_changed (s, AudioContentProperty::AUDIO_MAPPING); - film_content_changed (s, FFmpegContentProperty::AUDIO_STREAM); - film_content_changed (s, FFmpegContentProperty::AUDIO_STREAMS); - film_content_changed (s, FFmpegContentProperty::SUBTITLE_STREAM); - film_content_changed (s, FFmpegContentProperty::SUBTITLE_STREAMS); - film_content_changed (s, FFmpegContentProperty::FILTERS); - film_content_changed (s, SubtitleContentProperty::SUBTITLE_OFFSET); - film_content_changed (s, SubtitleContentProperty::SUBTITLE_SCALE); -} - -void -FilmEditor::setup_content_sensitivity () -{ - _content_add->Enable (_generally_sensitive); - - shared_ptr selection = selected_content (); - - _content_remove->Enable (selection && _generally_sensitive); - _content_timeline->Enable (_generally_sensitive); - - _video_panel->Enable (selection && dynamic_pointer_cast (selection) && _generally_sensitive); - _audio_panel->Enable (selection && dynamic_pointer_cast (selection) && _generally_sensitive); - _subtitle_panel->Enable (selection && dynamic_pointer_cast (selection) && _generally_sensitive); - _timing_panel->Enable (selection && _generally_sensitive); -} - -shared_ptr -FilmEditor::selected_content () -{ - int const s = _content->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED); - if (s == -1) { - return shared_ptr (); - } - - ContentList c = _film->content (); - if (s < 0 || size_t (s) >= c.size ()) { - return shared_ptr (); - } - - return c[s]; -} - -shared_ptr -FilmEditor::selected_video_content () -{ - shared_ptr c = selected_content (); - if (!c) { - return shared_ptr (); - } - - return dynamic_pointer_cast (c); -} - -shared_ptr -FilmEditor::selected_audio_content () -{ - shared_ptr c = selected_content (); - if (!c) { - return shared_ptr (); - } - - return dynamic_pointer_cast (c); -} - -shared_ptr -FilmEditor::selected_subtitle_content () -{ - shared_ptr c = selected_content (); - if (!c) { - return shared_ptr (); - } - - return dynamic_pointer_cast (c); -} - -void -FilmEditor::setup_scaling_description () -{ - shared_ptr vc = selected_video_content (); - if (!vc) { - _scaling_description->SetLabel (""); - return; - } - - wxString d; - - int lines = 0; - - if (vc->video_size().width && vc->video_size().height) { - d << wxString::Format ( - _("Original video is %dx%d (%.2f:1)\n"), - vc->video_size().width, vc->video_size().height, - float (vc->video_size().width) / vc->video_size().height - ); - ++lines; - } - - Crop const crop = vc->crop (); - if ((crop.left || crop.right || crop.top || crop.bottom) && vc->video_size() != libdcp::Size (0, 0)) { - libdcp::Size cropped = vc->video_size (); - cropped.width -= crop.left + crop.right; - cropped.height -= crop.top + crop.bottom; - d << wxString::Format ( - _("Cropped to %dx%d (%.2f:1)\n"), - cropped.width, cropped.height, - float (cropped.width) / cropped.height - ); - ++lines; - } - - Ratio const * ratio = vc->ratio (); - if (ratio) { - libdcp::Size container_size = _film->container()->size (_film->full_frame ()); - - libdcp::Size const scaled = ratio->size (container_size); - d << wxString::Format ( - _("Scaled to %dx%d (%.2f:1)\n"), - scaled.width, scaled.height, - float (scaled.width) / scaled.height - ); - ++lines; - - if (scaled != container_size) { - d << wxString::Format ( - _("Padded with black to %dx%d (%.2f:1)\n"), - container_size.width, container_size.height, - float (container_size.width) / container_size.height - ); - ++lines; - } - } - - for (int i = lines; i < 4; ++i) { - d << wxT ("\n "); - } - - _scaling_description->SetLabel (d); -} - -void -FilmEditor::content_timeline_clicked (wxCommandEvent &) -{ - if (_timeline_dialog) { - _timeline_dialog->Destroy (); - _timeline_dialog = 0; - } - - _timeline_dialog = new TimelineDialog (this, _film); - _timeline_dialog->Show (); -} - -void -FilmEditor::audio_stream_changed (wxCommandEvent &) -{ - shared_ptr c = selected_content (); - if (!c) { - return; - } - - shared_ptr fc = dynamic_pointer_cast (c); - if (!fc) { - return; - } - - vector > a = fc->audio_streams (); - vector >::iterator i = a.begin (); - string const s = string_client_data (_audio_stream->GetClientObject (_audio_stream->GetSelection ())); - while (i != a.end() && lexical_cast ((*i)->id) != s) { - ++i; - } - - if (i != a.end ()) { - fc->set_audio_stream (*i); - } - - if (!fc->audio_stream ()) { - _audio_description->SetLabel (wxT ("")); - } else { - wxString s; - if (fc->audio_channels() == 1) { - s << _("1 channel"); - } else { - s << fc->audio_channels() << wxT (" ") << _("channels"); - } - s << wxT (", ") << fc->content_audio_frame_rate() << _("Hz"); - _audio_description->SetLabel (s); - } -} - - - -void -FilmEditor::subtitle_stream_changed (wxCommandEvent &) -{ - shared_ptr c = selected_content (); - if (!c) { - return; - } - - shared_ptr fc = dynamic_pointer_cast (c); - if (!fc) { - return; - } - - vector > a = fc->subtitle_streams (); - vector >::iterator i = a.begin (); - string const s = string_client_data (_subtitle_stream->GetClientObject (_subtitle_stream->GetSelection ())); - while (i != a.end() && lexical_cast ((*i)->id) != s) { - ++i; - } - - if (i != a.end ()) { - fc->set_subtitle_stream (*i); - } -} - -void -FilmEditor::audio_mapping_changed (AudioMapping m) -{ - shared_ptr c = selected_content (); - if (!c) { - return; - } - - shared_ptr ac = dynamic_pointer_cast (c); - if (!ac) { - return; - } - - ac->set_audio_mapping (m); -} - -void -FilmEditor::start_changed () -{ - shared_ptr c = selected_content (); - if (!c) { - return; - } - - c->set_start (_start->get (_film->dcp_video_frame_rate ())); -} - -void -FilmEditor::length_changed () -{ - shared_ptr c = selected_content (); - if (!c) { - return; - } - - shared_ptr ic = dynamic_pointer_cast (c); - if (ic) { - ic->set_video_length (_length->get(_film->dcp_video_frame_rate()) * ic->video_frame_rate() / TIME_HZ); - } -} - -void -FilmEditor::set_selection (weak_ptr wc) -{ - ContentList content = _film->content (); - for (size_t i = 0; i < content.size(); ++i) { - if (content[i] == wc.lock ()) { - _content->SetItemState (i, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED); - } else { - _content->SetItemState (i, 0, wxLIST_STATE_SELECTED | wxLIST_STATE_FOCUSED); - } - } -} - -void -FilmEditor::ratio_changed (wxCommandEvent &) -{ - if (!_film) { - return; - } - - shared_ptr c = selected_content (); - if (!c) { - return; - } - - shared_ptr vc = dynamic_pointer_cast (c); - if (!vc) { - return; - } - - int const n = _ratio->GetSelection (); - if (n >= 0) { - vector ratios = Ratio::all (); - assert (n < int (ratios.size())); - vc->set_ratio (ratios[n]); + _content_panel->set_selection (_film->content().front ()); } } void -FilmEditor::sequence_video_changed (wxCommandEvent &) +FilmEditor::set_general_sensitivity (bool s) { - _film->set_sequence_video (_sequence_video->GetValue ()); + _content_panel->set_general_sensitivity (s); + _dcp_panel->set_general_sensitivity (s); } void -FilmEditor::content_right_click (wxListEvent& ev) +FilmEditor::active_jobs_changed (optional j) { - ContentList cl; - cl.push_back (selected_content ()); - _menu.popup (cl, ev.GetPoint ()); + set_general_sensitivity (!j || *j == "analyse_audio"); }