Add option to export Interop subs with or without the font file / reference.
[dcpomatic.git] / src / wx / export_subtitles_dialog.h
index d4405cb29957ec5683822a88dce8857c5c70d0cf..ee55729f731eb9ab4787eee975c4292f8c8f249a 100644 (file)
@@ -27,15 +27,17 @@ class FilePickerCtrl;
 class ExportSubtitlesDialog : public TableDialog
 {
 public:
-       ExportSubtitlesDialog (wxWindow* parent, std::string name);
+       ExportSubtitlesDialog (wxWindow* parent, std::string name, bool interop);
 
        boost::filesystem::path path () const;
        bool split_reels () const;
+       bool include_font () const;
 
 private:
        void file_changed ();
 
        std::string _initial_name;
        wxCheckBox* _split_reels;
+       wxCheckBox* _include_font;
        FilePickerCtrl* _file;
 };