Accessor for ClosedCaptionsDialog.
[dcpomatic.git] / src / wx / export_dialog.h
index c6ccc875ed38346eb858ebaf4ed74b67708de8e1..f1e893b5329b887238cc89b028c30ca76f660195 100644 (file)
@@ -28,19 +28,22 @@ class FilePickerCtrl;
 class ExportDialog : public TableDialog
 {
 public:
-       explicit ExportDialog (wxWindow* parent);
+       explicit ExportDialog (wxWindow* parent, std::string name);
 
        boost::filesystem::path path () const;
-       FFmpegEncoder::Format format () const;
+       ExportFormat format () const;
        bool mixdown_to_stereo () const;
+       bool split_reels () const;
        int x264_crf () const;
 
 private:
        void format_changed ();
        void file_changed ();
 
+       std::string _initial_name;
        wxChoice* _format;
        wxCheckBox* _mixdown;
+       wxCheckBox* _split_reels;
        wxSlider* _x264_crf;
        wxStaticText* _x264_crf_label[2];
        FilePickerCtrl* _file;