diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-08-25 22:00:06 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-08-25 22:00:06 +0200 |
| commit | 9f294327cb59fce307c3a439f044d79b081376b0 (patch) | |
| tree | bce7bffabf5d9f7903e46245448fface6cbe8d58 /src/wx/export_subtitles_dialog.h | |
| parent | 8475d7b7d70d5b98e7737f326653d80a9fd8e9cf (diff) | |
Add option to export Interop subs with or without the font file / reference.
Diffstat (limited to 'src/wx/export_subtitles_dialog.h')
| -rw-r--r-- | src/wx/export_subtitles_dialog.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wx/export_subtitles_dialog.h b/src/wx/export_subtitles_dialog.h index d4405cb29..ee55729f7 100644 --- a/src/wx/export_subtitles_dialog.h +++ b/src/wx/export_subtitles_dialog.h @@ -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; }; |
