X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fexport_dialog.cc;h=b23583d44befba1bcd10a2d2d47c02fb5f72dd72;hb=15ee4641d8b89a16b15611443870d0932152066f;hp=e21a49e8af633971b0dd1116844d05d880c95450;hpb=6a11232620e0006f6a2b1e8d2b56e56d84229d5c;p=dcpomatic.git diff --git a/src/wx/export_dialog.cc b/src/wx/export_dialog.cc index e21a49e8a..b23583d44 100644 --- a/src/wx/export_dialog.cc +++ b/src/wx/export_dialog.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2017 Carl Hetherington + Copyright (C) 2017-2018 Carl Hetherington This file is part of DCP-o-matic. @@ -21,42 +21,134 @@ #include "export_dialog.h" #include "file_picker_ctrl.h" #include "wx_util.h" +#include "check_box.h" +#include #include +using std::string; using boost::bind; -ExportDialog::ExportDialog (wxWindow* parent) +#define FORMATS 3 + +wxString format_names[] = { + _("ProRes"), + _("MP4 / H.264"), + _("DCP subtitles") +}; + +wxString format_filters[] = { + _("MOV files (*.mov)|*.mov"), + _("MP4 files (*.mp4)|*.mp4"), + _("Subtitle files (*.xml)|*.xml"), +}; + +wxString format_extensions[] = { + "mov", + "mp4", + "xml", +}; + +ExportFormat formats[] = { + EXPORT_FORMAT_PRORES, + EXPORT_FORMAT_H264_AAC, + EXPORT_FORMAT_SUBTITLES_DCP +}; + +ExportDialog::ExportDialog (wxWindow* parent, string name) : TableDialog (parent, _("Export film"), 2, 1, true) { add (_("Format"), true); _format = new wxChoice (this, wxID_ANY); add (_format); + add_spacer (); + _mixdown = new CheckBox (this, _("Mix audio down to stereo")); + add (_mixdown, false); + add_spacer (); + _split_reels = new CheckBox (this, _("Write reels into separate files")); + add (_split_reels, false); + _x264_crf_label[0] = add (_("Quality"), true); + _x264_crf = new wxSlider (this, wxID_ANY, 23, 0, 51, wxDefaultPosition, wxDefaultSize, wxSL_HORIZONTAL | wxSL_LABELS); + add (_x264_crf, false); + add_spacer (); + _x264_crf_label[1] = add (_("0 is best, 51 is worst"), false); + wxFont font = _x264_crf_label[1]->GetFont(); + font.SetStyle(wxFONTSTYLE_ITALIC); + font.SetPointSize(font.GetPointSize() - 1); + _x264_crf_label[1]->SetFont(font); + add (_("Output file"), true); - _file = new FilePickerCtrl (this, _("Select output file"), _("MOV files (*.mov)|*.mov"), false); + _file = new FilePickerCtrl (this, _("Select output file"), format_filters[0], false); + _file->SetPath (name); add (_file); - _format->Append (_("ProRes 422")); + for (int i = 0; i < FORMATS; ++i) { + _format->Append (format_names[i]); + } _format->SetSelection (0); + _x264_crf->Enable (false); + for (int i = 0; i < 2; ++i) { + _x264_crf_label[i]->Enable (false); + } + _format->Bind (wxEVT_CHOICE, bind (&ExportDialog::format_changed, this)); + _file->Bind (wxEVT_FILEPICKER_CHANGED, bind (&ExportDialog::file_changed, this)); layout (); + + wxButton* ok = dynamic_cast (FindWindowById (wxID_OK, this)); + ok->Enable (false); } void ExportDialog::format_changed () { - switch (_format->GetSelection()) { - case 0: - _file->SetWildcard (_("MOV files (*.mov)")); - break; - } - + DCPOMATIC_ASSERT (_format->GetSelection() >= 0 && _format->GetSelection() < FORMATS); + _file->SetWildcard (format_filters[_format->GetSelection()]); _file->SetPath (""); + _x264_crf->Enable (_format->GetSelection() == 1); + for (int i = 0; i < 2; ++i) { + _x264_crf_label[i]->Enable (_format->GetSelection() == 1); + } + _mixdown->Enable (_format->GetSelection() != 2); } boost::filesystem::path ExportDialog::path () const { - return wx_to_std (_file->GetPath ()); + wxFileName fn (_file->GetPath()); + fn.SetExt (format_extensions[_format->GetSelection()]); + return wx_to_std (fn.GetFullPath()); +} + +ExportFormat +ExportDialog::format () const +{ + DCPOMATIC_ASSERT (_format->GetSelection() >= 0 && _format->GetSelection() < FORMATS); + return formats[_format->GetSelection()]; +} + +bool +ExportDialog::mixdown_to_stereo () const +{ + return _mixdown->GetValue (); +} + +bool +ExportDialog::split_reels () const +{ + return _split_reels->GetValue (); +} + +int +ExportDialog::x264_crf () const +{ + return _x264_crf->GetValue (); +} + +void +ExportDialog::file_changed () +{ + wxButton* ok = dynamic_cast (FindWindowById (wxID_OK, this)); + ok->Enable (_file->GetPath().Length() > 0); }