Use ISDCF name as a default export filename (#1584).
[dcpomatic.git] / src / wx / export_dialog.h
index d6e3bdbb6ba810f3828788aaf5cb96d313c6b1d8..3314e22da16773fc828126f57a6a212385123d76 100644 (file)
@@ -28,11 +28,12 @@ class FilePickerCtrl;
 class ExportDialog : public TableDialog
 {
 public:
-       explicit ExportDialog (wxWindow* parent);
+       explicit ExportDialog (wxWindow* parent, std::string name);
 
        boost::filesystem::path path () const;
        ExportFormat format () const;
        bool mixdown_to_stereo () const;
+       bool split_reels () const;
        int x264_crf () const;
 
 private:
@@ -41,6 +42,7 @@ private:
 
        wxChoice* _format;
        wxCheckBox* _mixdown;
+       wxCheckBox* _split_reels;
        wxSlider* _x264_crf;
        wxStaticText* _x264_crf_label[2];
        FilePickerCtrl* _file;