Use ISDCF name as a default export filename (#1584).
[dcpomatic.git] / src / wx / export_dialog.cc
index 4814085781abd2df857a5d4071b4a1bf300a2a6c..804200596c9535911c1b361b6313429980da7e4d 100644 (file)
 #include "export_dialog.h"
 #include "file_picker_ctrl.h"
 #include "wx_util.h"
+#include "check_box.h"
 #include <wx/filepicker.h>
 #include <boost/bind.hpp>
 
+using std::string;
 using boost::bind;
 
 #define FORMATS 2
@@ -43,20 +45,23 @@ wxString format_extensions[] = {
        "mp4"
 };
 
-FFmpegEncoder::Format formats[] = {
-       FFmpegEncoder::FORMAT_PRORES,
-       FFmpegEncoder::FORMAT_H264,
+ExportFormat formats[] = {
+       EXPORT_FORMAT_PRORES,
+       EXPORT_FORMAT_H264_AAC
 };
 
-ExportDialog::ExportDialog (wxWindow* parent)
+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 wxCheckBox (this, wxID_ANY, _("Mix audio down to stereo"));
+       _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);
@@ -69,6 +74,7 @@ ExportDialog::ExportDialog (wxWindow* parent)
 
        add (_("Output file"), true);
        _file = new FilePickerCtrl (this, _("Select output file"), format_filters[0], false);
+       _file->SetPath (name);
        add (_file);
 
        for (int i = 0; i < FORMATS; ++i) {
@@ -110,7 +116,7 @@ ExportDialog::path () const
        return wx_to_std (fn.GetFullPath());
 }
 
-FFmpegEncoder::Format
+ExportFormat
 ExportDialog::format () const
 {
        DCPOMATIC_ASSERT (_format->GetSelection() >= 0 && _format->GetSelection() < FORMATS);
@@ -123,6 +129,12 @@ ExportDialog::mixdown_to_stereo () const
        return _mixdown->GetValue ();
 }
 
+bool
+ExportDialog::split_reels () const
+{
+       return _split_reels->GetValue ();
+}
+
 int
 ExportDialog::x264_crf () const
 {
@@ -133,5 +145,5 @@ void
 ExportDialog::file_changed ()
 {
        wxButton* ok = dynamic_cast<wxButton *> (FindWindowById (wxID_OK, this));
-       ok->Enable (true);
+       ok->Enable (_file->GetPath().Length() > 0);
 }