X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fexport_subtitles_dialog.h;h=c53df820ef1a6630178591643b87d40a5c73a2ae;hb=b9a1ad3df5f9d85fb7439efd93fede72b9b078af;hp=d4405cb29957ec5683822a88dce8857c5c70d0cf;hpb=451ab9374cc32483489cdde27a9382b546cdecf5;p=dcpomatic.git diff --git a/src/wx/export_subtitles_dialog.h b/src/wx/export_subtitles_dialog.h index d4405cb29..c53df820e 100644 --- a/src/wx/export_subtitles_dialog.h +++ b/src/wx/export_subtitles_dialog.h @@ -18,24 +18,36 @@ */ + +#include "dir_picker_ctrl.h" #include "table_dialog.h" +#include "lib/warnings.h" +DCPOMATIC_DISABLE_WARNINGS #include +DCPOMATIC_ENABLE_WARNINGS #include + class FilePickerCtrl; + class ExportSubtitlesDialog : public TableDialog { public: - ExportSubtitlesDialog (wxWindow* parent, std::string name); + ExportSubtitlesDialog (wxWindow* parent, int reels, bool interop); boost::filesystem::path path () const; bool split_reels () const; + bool include_font () const; private: - void file_changed (); + void setup_sensitivity (); - std::string _initial_name; + bool _interop; wxCheckBox* _split_reels; + wxCheckBox* _include_font; + wxStaticText* _file_label; FilePickerCtrl* _file; + DirPickerCtrl* _dir; + wxStaticText* _dir_label; };